From cbe6aff2254e6db3978807c3bc2421b857e6db81 Mon Sep 17 00:00:00 2001 From: laivlys Date: Fri, 25 Oct 2024 19:32:37 -0400 Subject: [PATCH 01/11] Add files via upload --- css/style.css | 70 ++++++++++ js/main.js | 323 +++++++++++++++++++++++++++++++++++++++++++++ js/map.js | 29 ++++ js/station_data.js | 4 + 4 files changed, 426 insertions(+) create mode 100644 css/style.css create mode 100644 js/main.js create mode 100644 js/map.js create mode 100644 js/station_data.js diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..c7843df --- /dev/null +++ b/css/style.css @@ -0,0 +1,70 @@ +body { + background-color: #121212; /* Dark background */ + color: #ffffff; + margin: 0; + padding: 0; + font-family: 'Arial', sans-serif; +} + +.container { + display: flex; +} + +.dashboard{ + margin: 20px; + font-size: 24px; +} + +#map { + height: 90vh; + width: 130vh; + padding: 0; + margin: 0; +} + +#tab { + display: flex; + justify-content: left; + width: 100%; + height: 5vh; + cursor: pointer; + gap: 10px; + padding: 10px 10px; + border-radius: 5px; +} + +#sidebar { + display: flex; + flex-direction: column; + align-items: end; +} + +#whaleImage { + width: 50vh; + height: 30vh; + border-radius: 5px; +} + +.whaleButton { + font-size: 16px; + font-family: "Ariel", sans-serif; + border-radius: 10px; + background-color: white; +} + +#indicator { + position: absolute; + top: 10px; + right: 10px; + padding: 10px; + background-color: rgba(255, 255, 255, 0.8); + border: 1px solid #ccc; + border-radius: 5px; +} + +#whaleDescription { + font-size: 16px; + display: flex; + border-color: red; + width: 50vh; +} \ No newline at end of file diff --git a/js/main.js b/js/main.js new file mode 100644 index 0000000..f5ba6bb --- /dev/null +++ b/js/main.js @@ -0,0 +1,323 @@ +mapboxgl.accessToken = 'pk.eyJ1Ijoic3lsdmlhdXBlbm4iLCJhIjoiY20weTdodGpiMGt4MDJsb2UzbzZnd2FmMyJ9.H6mn-LOHFUdv7swHpM7enA' + +const map = new mapboxgl.Map({ + container: 'map', // container ID + style: 'mapbox://styles/mapbox/outdoors-v12', // style URL + center: [140, -40], // starting position [lng, lat] + zoom: 3, // starting zoom +}); + +// Add geojson file + map.on('load', ()=> { + + // 1. humpbackWhale (point) + map.addLayer({ + id: "humpbackWhale-layer", + type: "circle", + source: { + type: 'geojson', + data: 'data/humpbackWhale.geojson' + }, + paint: { + 'circle-opacity': 1, + 'circle-color': '#4a0fd4' + } + + }); + + // 2. whaleShark (point) + map.addLayer({ + id: "whaleShark-layer", + type: "circle", + source: { + type: 'geojson', + data: 'data/whaleShark.geojson' + }, + paint: { + 'circle-opacity': 1, + 'circle-color': '#a164db' + } + + }); + + // 3. shortFinnedPilotWhale (point) + map.addLayer({ + id: "shortFinnedPilotWhale-layer", + type: "circle", + source: { + type: 'geojson', + data: 'data/shortFinnedPilotWhale.geojson' + }, + paint: { + 'circle-opacity': 1, + 'circle-color': '#b744d6' + } + + }); + + // 4. blueFinWhale (point) + map.addLayer({ + id: "blueFinWhale-layer", + type: "circle", + source: { + type: 'geojson', + data: 'data/blueFinWhale.geojson' + }, + paint: { + 'circle-opacity': 1, + 'circle-color': '#b744d6' + } + +}); + + // 5. blueWhale (point) + map.addLayer({ + id: "blueWhale-layer", + type: "circle", + source: { + type: 'geojson', + data: 'data/blueWhale.geojson' + }, + paint: { + 'circle-opacity': 1, + 'circle-color': '#b744d6' + } + +}); + + // 6. bowheadWhale (point) + map.addLayer({ + id: "bowheadWhale-layer", + type: "circle", + source: { + type: 'geojson', + data: 'data/bowheadWhale.geojson' + }, + paint: { + 'circle-opacity': 1, + 'circle-color': '#b744d6' + } + +}); + + // 7. falseKillerWhale (point) + map.addLayer({ + id: "falseKillerWhale-layer", + type: "circle", + source: { + type: 'geojson', + data: 'data/falseKillerWhale.geojson' + }, + paint: { + 'circle-opacity': 1, + 'circle-color': '#b744d6' + } + +}); + + // 8. finWhale (point) + map.addLayer({ + id: "finWhale-layer", + type: "circle", + source: { + type: 'geojson', + data: 'data/finWhale.geojson' + }, + paint: { + 'circle-opacity': 1, + 'circle-color': '#b744d6' + } + +}); + + // 9. spermWhale (point) + map.addLayer({ + id: "spermWhale-layer", + type: "circle", + source: { + type: 'geojson', + data: 'data/spermWhale.geojson' + }, + paint: { + 'circle-opacity': 1, + 'circle-color': '#b744d6' + } + +}); + + const whaleButtons = document.querySelectorAll('.whaleButton'); + whaleButtons.forEach(button => { + button.addEventListener('click', (event) => { + + changeWhaleTab(event); + + const species = button.getAttribute('data-species'); + updateImage(species); + updateText(species); + + }); + }); + +}); + + const whaleSharkCoords = [-87, 25]; + const humpbackWhaleCoords = [160,-40]; + const pilotWhaleCoords = [-74, 35]; + const blueFinWhaleCoords = [-119, 33]; + const blueWhaleCoords = [170,-64]; + const bowheadWhaleCoords = [-85, 71]; + const falseKillerWhaleCoords = [-160, 23]; + const finWhaleCoords = [-111, 26]; + const spermWhaleCoords = [-112, 28]; + + // Creating function for the map to zoom + function changeWhaleTab(event) { + const species = event.target.dataset.species; + + // Hide all layers first + map.setLayoutProperty('humpbackWhale-layer', 'visibility', 'none'); + map.setLayoutProperty('whaleShark-layer', 'visibility', 'none'); + map.setLayoutProperty('shortFinnedPilotWhale-layer', 'visibility', 'none'); + map.setLayoutProperty('blueFinWhale-layer', 'visibility', 'none'); + map.setLayoutProperty('blueWhale-layer', 'visibility', 'none'); + map.setLayoutProperty('bowheadWhale-layer', 'visibility', 'none'); + map.setLayoutProperty('falseKillerWhale-layer', 'visibility', 'none'); + map.setLayoutProperty('finWhale-layer', 'visibility', 'none'); + map.setLayoutProperty('spermWhale-layer', 'visibility', 'none'); + + // Determine which layer to show based on the clicked tab + switch (species) { + case 'humpbackWhale': + map.setLayoutProperty('humpbackWhale-layer', 'visibility', 'visible'); + map.flyTo({center: humpbackWhaleCoords, zoom: 2}); + break; + case 'whaleShark': + map.setLayoutProperty('whaleShark-layer', 'visibility', 'visible'); + map.flyTo({center: whaleSharkCoords, zoom: 4}); + break; + case 'pilotWhale': + map.setLayoutProperty('shortFinnedPilotWhale-layer', 'visibility', 'visible'); + map.flyTo({center: pilotWhaleCoords, zoom: 4}); + break; + case 'blueFinWhale': + map.setLayoutProperty('blueFinWhaleCoords-layer', 'visibility', 'visible'); + map.flyTo({center: blueFinWhaleCoords, zoom: 5}); + break; + case 'blueWhale': + map.setLayoutProperty('blueWhale-layer', 'visibility', 'visible'); + map.flyTo({center: blueWhaleCoords, zoom: 3}); + break; + case 'bowheadWhale': + map.setLayoutProperty('bowheadWhale-layer', 'visibility', 'visible'); + map.flyTo({center: bowheadWhaleCoords, zoom: 2}); + break; + case 'falseKillerWhale': + map.setLayoutProperty('falseKillerWhale-layer', 'visibility', 'visible'); + map.flyTo({center: falseKillerWhaleCoords, zoom: 3}); + break; + case 'finWhale': + map.setLayoutProperty('finWhale-layer', 'visibility', 'visible'); + map.flyTo({center: finWhaleCoords, zoom: 5}); + break; + case 'spermWhale': + map.setLayoutProperty('spermWhale-layer', 'visibility', 'visible'); + map.flyTo({center: spermWhaleCoords, zoom: 5}); + break; + default: + break; + } + + } + + // Create function for changing image + function updateImage(species) { + const whaleImage = document.getElementById('whaleImage'); + let imageUrl; + + // Define the image based on species + switch (species) { + case 'humpbackWhale': + imageUrl = './data/humpbackWhale.jpg'; + break; + case 'whaleShark': + imageUrl = './data/whaleShark.jpg'; + break; + case 'pilotWhale': + imageUrl = './data/shortFinnedPilotWhale.jpg'; + break; + case 'blueFinWhale': + imageUrl = './data/blueFinWhale.jpg'; + break; + case 'blueWhale': + imageUrl = './data/blueWhale.jpg'; + break; + case 'bowheadWhale': + imageUrl = './data/bowheadWhale.jpg'; + break; + case 'falseKillerWhale': + imageUrl = './data/falseKillerWhale.jpg'; + break; + case 'finWhale': + imageUrl = './data/finWhale.jpg'; + break; + case 'spermWhale': + imageUrl = './data/spermWhale.jpg'; + break; + default: + imageUrl = ''; // Default case + } + + if (imageUrl) { + whaleImage.src = imageUrl; + whaleImage.style.display = 'block'; // Show the image + } else { + whaleImage.style.display = 'none'; // Hide if no valid species + } + } + + // Create function for updating text + function updateText(species) { + const whaleDescription = document.getElementById('whaleDescription'); + const descriptions = { + humpbackWhale: "Humpback whales are known for their long migrations and complex songs.", + whaleShark: "Whale sharks are the largest fish species in the world and are gentle giants.", + pilotWhale: "Short-finned pilot whales are known for their strong social bonds and intelligence.", + blueFinWhale: "Blue fin whales are one of the largest whale species, known for their immense size.", + blueWhale: "Blue whales are the largest animals ever known to have existed.", + bowheadWhale: "Bowhead whales are known for their bow-shaped skulls and are found in Arctic waters.", + falseKillerWhale: "False killer whales are known for their social behavior and close-knit pods.", + finWhale: "Fin whales are the second-largest species of whale, known for their speed and grace.", + spermWhale: "Sperm whales are known for their deep diving abilities and large heads." + }; + + whaleDescription.textContent = descriptions[species] || "No description available."; + document.getElementById('whaleInfo').style.display = 'block'; + } + + + +// Geolocation handling (this is an aspirational step) +// if (navigator.geolocation) { +// navigator.geolocation.watchPosition(position => { +// const { latitude, longitude, heading } = position.coords; + +// // Update map view and compass +// map.setView([latitude, longitude], 12); +// compassControl.update(heading); +// }, error => { +// console.error(error); +// }); +// } else { +// console.error('Geolocation is not supported by this browser.'); +// } + +// Writing a code to find the current location of user +// function handlePositionSuccess(pos) { +// console.log('Successfuly got position!', pos); +// const evt = new CustomEvent('positionfound') +// } +// function handlePositionError(err) { +// console.error('Failed to get position!', err); +// } +// navigator.geolocation.getCurrentPosition(handlePositionSuccess, handlePositionError, {enableHighAccuracy: true}); + diff --git a/js/map.js b/js/map.js new file mode 100644 index 0000000..5df8a77 --- /dev/null +++ b/js/map.js @@ -0,0 +1,29 @@ +// function initMap(Whale) { +// const map = L.map(Whale, {maxZoom: 18, zoomSnao: 0 }).setView([39.95, -75.16], 12); + +// const mapboxKey = 'pk.eyJ1Ijoic3lsdmlhdXBlbm4iLCJhIjoiY20weTdodGpiMGt4MDJsb2UzbzZnd2FmMyJ9.H6mn-LOHFUdv7swHpM7enA'; +// const mapboxStyle = 'mapbox/streets-v12'; + +// L.tileLayer('https://api.mapbox.com/styles', { +// tileSize: 512, +// zoomOffset: -1, +// detectRetina: true, +// maxZoom: 19, +// attribution: +// }).addTo(map); + + +// // Listen for the positionfound event, which is fired when the user's location is found + +// events.addEventListener('positionfound', (evt) => { +// const pos = evt.details; +// const marker = L.circleMarker([pos.coord.latitude, pos.coord.longitude], { +// radius: 5, +// }); +// marker.addTo(map); +// map.setView([pos.coord.latitude, pos.coord.longitude], 16); +// }); + +// } + +// export { initMap }; \ No newline at end of file diff --git a/js/station_data.js b/js/station_data.js new file mode 100644 index 0000000..c06d574 --- /dev/null +++ b/js/station_data.js @@ -0,0 +1,4 @@ +// Is there a equivalent gbsf to boat location data or the stations out at sea? +// async function downloadStationData() { + +// } \ No newline at end of file From e60560a0d4eee5e195b0dc404586002e460add0b Mon Sep 17 00:00:00 2001 From: laivlys Date: Fri, 25 Oct 2024 19:33:08 -0400 Subject: [PATCH 02/11] Create data folder --- data | 1 + 1 file changed, 1 insertion(+) create mode 100644 data diff --git a/data b/data new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/data @@ -0,0 +1 @@ + From e7ab94174acffbdfe488d49bf1a288c35cd70743 Mon Sep 17 00:00:00 2001 From: laivlys Date: Fri, 25 Oct 2024 19:53:29 -0400 Subject: [PATCH 03/11] Uploading data --- data | 1 - data/blueWhale.geojson | 16475 +++++ data/blueWhale.jpg | Bin 0 -> 47983 bytes data/bowheadWhale.geojson | 90228 +++++++++++++++++++++++++++ data/bowheadWhale.jpg | Bin 0 -> 178997 bytes data/falseKillerWhale.geojson | 4271 ++ data/falseKillerWhale.jpg | Bin 0 -> 65042 bytes data/finWhale.geojson | 520 + data/finWhale.jpg | Bin 0 -> 37023 bytes data/humpbackWhale.geojson | 29197 +++++++++ data/humpbackWhale.jpg | Bin 0 -> 58951 bytes data/shortFinnedPilotWhale.geojson | 22605 +++++++ data/shortFinnedPilotWhale.jpg | Bin 0 -> 1392537 bytes data/spermWhale.geojson | 13469 ++++ data/spermWhale.jpg | Bin 0 -> 73816 bytes data/whaleShark.geojson | 3369 + data/whaleShark.jg.webp | Bin 0 -> 38300 bytes data/whaleShark.jpg | Bin 0 -> 202811 bytes 18 files changed, 180134 insertions(+), 1 deletion(-) delete mode 100644 data create mode 100644 data/blueWhale.geojson create mode 100644 data/blueWhale.jpg create mode 100644 data/bowheadWhale.geojson create mode 100644 data/bowheadWhale.jpg create mode 100644 data/falseKillerWhale.geojson create mode 100644 data/falseKillerWhale.jpg create mode 100644 data/finWhale.geojson create mode 100644 data/finWhale.jpg create mode 100644 data/humpbackWhale.geojson create mode 100644 data/humpbackWhale.jpg create mode 100644 data/shortFinnedPilotWhale.geojson create mode 100644 data/shortFinnedPilotWhale.jpg create mode 100644 data/spermWhale.geojson create mode 100644 data/spermWhale.jpg create mode 100644 data/whaleShark.geojson create mode 100644 data/whaleShark.jg.webp create mode 100644 data/whaleShark.jpg diff --git a/data b/data deleted file mode 100644 index 8b13789..0000000 --- a/data +++ /dev/null @@ -1 +0,0 @@ - diff --git a/data/blueWhale.geojson b/data/blueWhale.geojson new file mode 100644 index 0000000..dbb758e --- /dev/null +++ b/data/blueWhale.geojson @@ -0,0 +1,16475 @@ +{ +"type": "FeatureCollection", +"name": "blueWhale", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.011, -64.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.074, -64.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.142, -64.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.116, -64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.103, -64.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.112, -64.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.112, -64.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.132, -64.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.142, -64.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.18, -64.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.176, -64.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.181, -64.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.689, -64.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.753, -64.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.86, -64.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.038, -64.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.122, -64.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.28, -64.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.312, -64.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.03, -64.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.017, -64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.007, -65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.04, -65.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.051, -65.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.076, -65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.045, -65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.123, -65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.171, -65.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.171, -65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.162, -65.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.536, -65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.232, -65.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.677, -65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.678, -65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.753, -65.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.705, -65.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.718, -65.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.7, -65.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.765, -65.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.779, -65.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.591, -65.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.785, -65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.22, -65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.672, -65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.313, -65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.487, -65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.825, -65.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.487, -66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.483, -66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.538, -66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.457, -66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.544, -66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.592, -66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.457, -66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.996, -66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.073, -66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.077, -66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.062, -66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.116, -66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.109, -66.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.366, -66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.458, -66.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.517, -66.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.112, -66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.016, -66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.88, -66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.159, -66.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.074, -66.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.279, -66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.378, -66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.412, -66.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.077, -66.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.102, -66.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.985, -66.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.981, -66.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.888, -66.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.847, -66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.856, -66.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.828, -66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.799, -66.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.709, -66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.866, -66.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.656, -66.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.337, -66.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.594, -66.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.694, -66.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.688, -66.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.732, -66.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.23, -66.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.138, -66.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.439, -67.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.435, -67.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.464, -67.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.093, -67.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.202, -66.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.275, -66.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.257, -67.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.308, -66.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.632, -67.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.686, -67.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.793, -67.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.711, -67.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.872, -67.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.878, -67.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.789, -67.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.953, -67.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.531, -67.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.403, -67.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.86, -67.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.528, -67.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.797, -67.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.919, -67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.955, -67.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.032, -67.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.998, -67.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.968, -67.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.062, -67.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.311, -67.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.5, -67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.597, -67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.596, -67.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.58, -67.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.762, -67.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.752, -67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.929, -67.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.922, -67.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.909, -67.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.065, -67.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.221, -67.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.279, -67.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.355, -67.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.47, -67.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.978, -67.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.131, -67.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.105, -67.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.281, -67.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.252, -67.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.285, -67.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.313, -67.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.122, -67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.121, -67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.081, -67.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.081, -67.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.023, -67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.027, -67.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.909, -68.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.92, -68.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.858, -68.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.946, -68.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.943, -68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.925, -68.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.811, -68.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.811, -68.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.813, -68.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.95, -68.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.726, -67.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.712, -67.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.416, -67.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.431, -67.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.429, -67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.069, -67.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.915, -67.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.981, -67.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.917, -67.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.429, -67.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.883, -67.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.135, -67.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.169, -67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.24, -67.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.422, -67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.517, -67.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.95, -67.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.174, -67.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.464, -67.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.787, -67.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.611, -67.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.646, -67.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.165, -67.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.241, -67.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.045, -67.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.362, -67.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.768, -67.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.7, -67.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.302, -67.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.525, -67.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.521, -67.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.579, -67.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.56, -67.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.989, -67.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.206, -67.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.528, -67.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.521, -67.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.959, -67.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.562, -67.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.609, -67.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.544, -67.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.547, -67.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.808, -67.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.599, -67.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.712, -67.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.678, -67.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.681, -67.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.64, -67.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.619, -67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.612, -67.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.661, -67.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.597, -67.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.579, -67.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.516, -67.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.409, -67.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.408, -67.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.407, -67.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.421, -67.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.429, -67.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.979, -67.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.188, -67.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.13, -67.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.147, -67.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.189, -67.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.259, -67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.163, -67.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.075, -67.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.239, -67.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.143, -67.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.336, -67.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.544, -67.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.546, -67.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.55, -67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.546, -67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.656, -67.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.53, -67.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.662, -67.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.681, -67.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.989, -67.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.994, -67.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.974, -67.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.941, -67.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.85, -67.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.77, -67.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.941, -67.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.857, -67.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.848, -68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.79, -68.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.717, -68.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.712, -68.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.705, -68.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.637, -68.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.862, -68.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.802, -68.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.785, -68.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.837, -68.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.833, -68.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.844, -68.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.834, -68.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.829, -68.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.854, -68.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.981, -68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.835, -68.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.69, -68.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.676, -68.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.606, -68.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.619, -68.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.492, -68.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.072, -68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.768, -68.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.007, -68.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.492, -68.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.324, -68.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.305, -68.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.809, -68.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.719, -68.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.734, -68.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.74, -68.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.291, -68.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.383, -68.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.267, -68.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.132, -68.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.081, -68.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.003, -68.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.663, -68.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.842, -68.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.659, -68.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.565, -68.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.747, -68.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.864, -68.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.811, -68.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.565, -68.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.884, -68.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.981, -68.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.833, -68.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.799, -68.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.865, -68.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.794, -68.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.738, -68.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.735, -68.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.536, -68.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.309, -68.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.347, -68.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.33, -68.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.255, -68.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.96, -68.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.933, -68.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.907, -68.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.455, -68.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.432, -68.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.248, -68.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -173.83, -67.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -174.001, -67.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -173.757, -67.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -175.482, -68.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -175.477, -68.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -175.551, -68.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -175.587, -68.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.227, -68.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.032, -62.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.037, -62.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.037, -62.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.036, -62.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.037, -62.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.036, -62.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.987, -62.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.017, -62.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.082, -62.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.031, -61.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.193, -61.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.023, -61.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.126, -62.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.122, -62.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.134, -62.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.132, -62.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.153, -62.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.103, -62.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.163, -62.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.293, -61.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.141, -61.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.188, -61.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.123, -61.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.245, -62.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.207, -61.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.135, -62.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.166, -61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.141, -61.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.148, -61.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.103, -61.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.081, -61.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.189, -61.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.105, -61.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.103, -61.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.086, -61.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.896, -61.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.874, -61.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.741, -61.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.62, -61.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.532, -61.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.393, -60.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.424, -60.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.329, -60.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.237, -60.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.098, -60.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.994, -60.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.139, -60.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.136, -60.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.2, -60.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.121, -60.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.137, -60.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.126, -60.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.093, -60.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.055, -60.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.064, -60.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.06, -60.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.066, -60.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.045, -59.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.097, -60.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.099, -60.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.237, -59.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.287, -59.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.285, -59.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.29, -59.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.278, -59.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.263, -59.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.248, -59.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.115, -59.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.114, -59.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.121, -59.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.039, -59.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.056, -59.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.066, -59.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.017, -59.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.012, -59.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.956, -59.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.984, -59.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.963, -59.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.98, -59.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.972, -59.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.955, -59.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.798, -59.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.76, -59.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.787, -59.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.768, -59.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.743, -59.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.746, -59.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.799, -59.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.78, -59.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.746, -58.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.743, -58.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.711, -58.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.685, -58.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.678, -58.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.658, -58.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.654, -58.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.61, -58.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.61, -58.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.598, -58.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.605, -58.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.641, -58.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.629, -58.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.578, -58.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.581, -58.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.595, -58.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.593, -58.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.602, -58.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.589, -58.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.589, -58.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.593, -58.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.599, -58.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.521, -58.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.515, -58.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.441, -58.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.542, -58.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.743, -58.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.806, -57.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.757, -57.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.777, -57.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.799, -57.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.837, -57.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.834, -57.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.802, -57.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.826, -57.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.798, -57.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.847, -57.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.858, -57.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.967, -57.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.099, -57.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.198, -57.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.196, -57.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.702, -57.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.709, -57.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.049, -57.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.06, -57.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.876, -57.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.856, -57.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.838, -57.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.805, -57.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.765, -57.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.762, -57.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.583, -57.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.572, -57.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.549, -57.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.519, -57.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.527, -57.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.414, -57.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.466, -57.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.423, -57.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.419, -57.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.435, -57.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.402, -57.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.311, -57.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.393, -57.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.307, -57.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.074, -57.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.075, -57.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.016, -57.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.08, -57.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.82, -57.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.807, -57.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.81, -57.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.762, -57.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.77, -57.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.744, -57.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.614, -57.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.75, -57.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.578, -57.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.708, -57.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.654, -57.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.682, -57.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.286, -57.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.296, -57.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.257, -57.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.186, -57.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.838, -57.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.839, -57.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.853, -57.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.872, -57.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.687, -57.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.676, -57.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.711, -57.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.717, -57.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.77, -57.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.666, -57.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.701, -57.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.666, -57.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.656, -57.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.637, -57.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.597, -57.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.549, -57.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.49, -57.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.478, -57.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.157, -57.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.797, -58.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.119, -57.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.456, -57.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.209, -57.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.823, -57.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.515, -57.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.603, -57.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.255, -57.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.316, -57.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.758, -57.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.531, -57.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.155, -57.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.2, -57.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.019, -57.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.272, -57.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.397, -57.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.507, -57.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.281, -57.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.487, -57.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.478, -57.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.538, -57.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.731, -57.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.637, -58.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.688, -55.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.725, -62.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.325, -62.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.301, -62.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.996, -62.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.912, -62.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.989, -62.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.791, -62.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.669, -62.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.272, -62.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.044, -62.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.254, -62.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.553, -62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.245, -62.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.241, -62.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.774, -62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.218, -62.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 107.385, -62.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.783, -62.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.17, -62.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.606, -62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.736, -62.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.741, -62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.668, -62.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.749, -62.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 105.853, -62.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.234, -62.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.262, -62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 105.52, -62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.325, -62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.235, -62.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 105.497, -62.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 105.338, -62.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 105.467, -62.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 105.308, -62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 105.313, -62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 105.331, -62.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.912, -62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.92, -62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.748, -62.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.651, -62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.66, -62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.767, -62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.864, -62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.671, -62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.248, -62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.978, -62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.827, -62.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.79, -62.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.46, -62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.984, -62.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.242, -61.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.037, -61.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.613, -61.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.339, -61.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.28, -61.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.098, -61.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.941, -61.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.95, -61.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.703, -61.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.431, -61.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.511, -61.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.4, -61.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.421, -61.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.407, -61.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.381, -61.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.426, -61.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.412, -61.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.166, -61.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 99.928, -61.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.175, -61.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 99.784, -61.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 100.12, -61.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 99.715, -61.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 99.409, -61.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 98.487, -61.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 98.483, -61.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 98.485, -61.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 98.342, -61.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 98.242, -61.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 98.24, -61.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 98.243, -61.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 98.161, -61.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 98.093, -61.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.6, -61.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.558, -61.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.555, -61.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.566, -61.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.563, -61.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.564, -61.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.55, -61.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.557, -61.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.563, -61.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.566, -61.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.578, -61.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.243, -61.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.287, -61.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.291, -61.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.447, -61.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 97.48, -61.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 96.787, -61.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 96.719, -61.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 95.607, -61.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.62, -61.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.528, -61.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.575, -61.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.582, -61.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.466, -61.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.52, -61.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.564, -61.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.648, -61.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.599, -61.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.661, -61.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.512, -61.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.497, -61.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.51, -61.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.445, -61.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.357, -61.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.332, -61.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.259, -61.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.258, -61.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.243, -61.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.108, -61.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 89.947, -61.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.05, -61.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 89.926, -61.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 90.011, -61.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 89.279, -61.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 89.082, -61.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 89.331, -61.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 89.327, -61.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 89.292, -61.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 89.278, -61.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 89.298, -61.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 89.268, -61.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 89.247, -61.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.687, -61.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.659, -61.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.595, -61.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.729, -61.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.708, -61.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.919, -61.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.155, -61.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.712, -61.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.064, -61.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.974, -61.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.057, -61.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.898, -61.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.896, -61.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.816, -61.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.853, -61.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.843, -61.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.827, -61.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.924, -61.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.855, -61.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.885, -61.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.888, -61.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.885, -61.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.956, -61.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.985, -61.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.95, -61.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.018, -61.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.953, -61.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.985, -61.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.014, -61.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.951, -61.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.007, -61.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.015, -61.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.029, -61.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.159, -61.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.103, -61.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.117, -61.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.117, -61.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.154, -61.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.101, -61.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.044, -61.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.122, -61.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.112, -61.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.063, -61.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.925, -61.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.741, -61.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.754, -61.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.78, -61.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.843, -61.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.118, -61.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.12, -61.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.132, -61.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.018, -61.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.213, -61.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.204, -61.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.29, -61.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.211, -61.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.16, -61.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 88.08, -61.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.944, -61.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.929, -61.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.862, -61.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.595, -62.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.044, -62.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 87.016, -62.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.95, -62.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.867, -62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.742, -62.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.856, -62.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.784, -62.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.709, -62.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.635, -62.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.708, -62.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.71, -62.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.67, -62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.558, -62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.291, -62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.427, -62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.544, -62.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 86.256, -62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 85.782, -62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 84.804, -62.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 84.673, -62.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 84.675, -62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 84.707, -62.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 84.566, -62.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 84.413, -62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 84.392, -62.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 84.381, -62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 83.872, -62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 83.997, -62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 83.872, -62.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 83.116, -62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 82.71, -62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 82.634, -62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 82.549, -62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 82.494, -62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 82.399, -62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 81.866, -62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 81.767, -62.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 81.709, -62.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 81.72, -62.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 80.819, -62.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 80.665, -62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 79.93, -62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 80.182, -62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 79.633, -62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 79.674, -62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 78.774, -62.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 78.804, -62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 77.529, -62.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 77.436, -62.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 77.833, -62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 77.836, -62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 77.757, -62.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 77.533, -62.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 77.541, -62.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 77.042, -62.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 77.062, -62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 77.133, -62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 76.28, -62.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 76.263, -62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 76.419, -62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 76.134, -62.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 75.354, -62.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 75.173, -62.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 74.183, -62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 74.13, -62.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 74.134, -62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 74.044, -62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 73.796, -62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 74.089, -62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 74.101, -62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 73.939, -62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 73.977, -62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 73.978, -62.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 73.914, -62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.407, 36.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.788, 37.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.827, 37.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.466, 38.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.41, 37.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.001, 36.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.377, 36.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.417, 36.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.316, 36.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.227, 33.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.765, 34.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.309, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.946, 34.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.987, 33.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.04, 34.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.223, 34.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.779, 37.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.434, 37.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.663, 37.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.319, 37.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.949, 36.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.056, 37.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.424, 36.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.288, 37.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.581, 37.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.611, 37.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.977, 37.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.162, 37.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.344, 37.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.948, 37.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.141, 37.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.301, 37.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.158, 38.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.378, 36.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.807, 37.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.121, 37.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.458, 34.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.582, 34.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.303, 34.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.969, 34.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.168, 34.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.614, 34.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.761, 34.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.671, 34.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.419, 34.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.024, 33.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.668, 34.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.801, 34.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.472, 33.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.392, 33.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.815, 33.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.646, 33.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.955, 33.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.574, 33.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.491, 33.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.751, 33.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.223, 33.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.482, 34.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.392, 33.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.343, 33.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.38, 33.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.802, 33.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.471, 33.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.291, 33.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.343, 33.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.059, 33.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.012, 33.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.578, 32.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.679, 32.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.443, 32.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.571, 32.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.571, 32.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.249, 32.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92, 32.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.491, 32.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.893, 32.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.271, 32.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.482, 32.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.01, 31.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.392, 31.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.377, 31.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.342, 31.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.482, 31.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.948, 30.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.78, 30.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.437, 30.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.488, 30.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.308, 30.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.4, 30.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.016, 29.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.706, 29.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.829, 29.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.659, 29.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.658, 29.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.65, 29.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.29, 28.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.831, 28.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.133, 28.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.068, 28.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.689, 28.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.948, 28.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.821, 27.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.86, 28.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.969, 28.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.137, 28.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.962, 28.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.818, 27.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.733, 28.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.875, 27.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.771, 27.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.843, 27.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.725, 28.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.665, 28.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.701, 28.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.755, 28.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.194, 28.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.3, 28.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.959, 28.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.168, 28.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.896, 28.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.03, 28.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.934, 28.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.492, 27.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.904, 27.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.821, 28.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.816, 28.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.246, 28.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.171, 34.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.038, 34.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.085, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.073, 34.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.945, 34.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.902, 34.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.193, 34.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.867, 34.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.055, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.025, 34.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.073, 34.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.043, 34.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.066, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.321, 34.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.233, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.328, 33.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.286, 34.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.348, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.508, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.451, 34.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.773, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.23, 34.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.25, 34.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.298, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.362, 34.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.459, 34.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.995, 34.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.098, 34.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.94, 34.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.16, 34.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.394, 34.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.934, 34.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.007, 34.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.51, 34.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.55, 33.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.354, 33.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.222, 33.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.365, 33.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.677, 34.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.767, 34.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.834, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.566, 34.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.574, 34.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.542, 34.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.831, 33.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.684, 34.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.653, 33.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.493, 33.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.995, 33.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.17, 32.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.436, 33.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.36, 33.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.304, 33.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.54, 32.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.222, 33.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.96, 33.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.033, 33.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.412, 32.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.59, 33.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.803, 33.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.44, 33.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.056, 33.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.111, 33.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.099, 33.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.287, 32.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.107, 32.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.237, 34.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.21, 34.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.449, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.307, 34.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.453, 34.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.719, 33.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.336, 34.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.396, 34.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.294, 34.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.295, 34.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.175, 34.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.187, 34.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.986, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.882, 34.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.922, 34.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.478, 34.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.305, 34.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.314, 34.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.396, 34.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.319, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.271, 34.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.271, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.296, 34.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.304, 34.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.915, 33.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.328, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.264, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.566, 34.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.554, 34.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.503, 34.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.533, 34.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.348, 34.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.914, 34.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.114, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.157, 34.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.297, 34.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.407, 34.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.773, 34.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.169, 34.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.925, 34.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.547, 33.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.94, 32.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.079, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.274, 34.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.665, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.272, 34.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.255, 33.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.285, 33.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.638, 32.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.882, 32.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.163, 32.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.39, 32.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.972, 33.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.096, 33.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.844, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.054, 34.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.504, 34.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.586, 33.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.818, 32.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.539, 33.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.017, 33.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.985, 33.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.588, 33.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.634, 33.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.218, 33.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.375, 33.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.521, 33.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7, 31.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.817, 33.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.478, 33.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.627, 33.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04, 33.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.211, 33.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.896, 33.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.521, 33.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.19, 33.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.262, 32.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.612, 29.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.159, 33.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6, 33.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.275, 34.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.538, 32.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.369, 32.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.122, 27.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.787, 32.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.072, 31.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.014, 31.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.313, 32.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.093, 33.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.199, 34.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.096, 34.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.063, 34.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.168, 34.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.746, 33.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.706, 33.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.985, 34.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.452, 34.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.44, 33.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.091, 35.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.943, 33.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.916, 32.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.231, 34.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.469, 34.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.318, 34.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.548, 34.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.106, 34.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.431, 34.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.199, 34.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.837, 34.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.049, 34.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.253, 35.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.671, 34.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.118, 34.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.423, 34.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.091, 34.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.617, 35.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.274, 33.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.685, 33.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.906, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.926, 32.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.267, 33.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.829, 33.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.268, 33.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.275, 33.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.383, 32.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.204, 32.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.045, 32.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.098, 32.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.452, 32.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.124, 31.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.064, 31.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.845, 31.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.628, 31.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.372, 31.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.396, 31.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.228, 28.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.625, 30.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.689, 30.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.796, 29.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.739, 29.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.001, 29.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.104, 29.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.038, 27.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.941, 26.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.137, 26.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.149, 26.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.374, 33.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.278, 33.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.387, 34.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.972, 33.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.195, 34.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.7, 32.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.373, 32.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.226, 33.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.699, 32.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.243, 32.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.148, 32.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.117, 32.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.928, 31.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.947, 31.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.903, 32.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.931, 32.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.004, 32.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.479, 32.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7, 32.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.889, 32.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.977, 32.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.686, 32.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.068, 32.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.344, 32.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.413, 32.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.261, 32.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.163, 32.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.511, 31.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.434, 30.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.348, 31.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.825, 29.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.207, 28.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.694, 28.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.474, 28.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.302, 28.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.294, 27.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.252, 27.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.623, 27.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.298, 26.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.059, 26.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.0, 26.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.03, 25.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.437, 24.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.087, 24.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.17, 24.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.157, 24.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.274, 24.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.141, 23.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.794, 22.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.83, 21.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.793, 20.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.601, 21.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.667, 19.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.417, 34.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.456, 33.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.514, 34.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.463, 33.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.364, 34.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.905, 34.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.06, 33.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.577, 34.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.715, 34.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.051, 33.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.759, 33.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.609, 34.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.067, 34.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.24, 35.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.661, 33.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.241, 33.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.564, 33.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.924, 33.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.055, 34.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.808, 33.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.882, 33.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.194, 34.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.393, 34.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.992, 34.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.685, 34.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.886, 34.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.661, 33.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.503, 33.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.507, 33.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.191, 33.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.258, 33.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.173, 33.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.798, 33.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.172, 34.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.644, 33.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.998, 28.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.888, 33.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.685, 33.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.705, 33.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.906, 33.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.713, 33.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.017, 33.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.71, 33.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.726, 31.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.403, 33.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.937, 33.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.623, 33.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.444, 33.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.912, 32.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.033, 32.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.888, 32.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.736, 32.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.215, 32.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.857, 32.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.604, 32.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.934, 32.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55, 32.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.491, 32.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.521, 32.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.741, 33.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.758, 33.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.035, 33.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.127, 33.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.473, 32.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.596, 33.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.933, 34.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.406, 33.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.173, 32.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.121, 33.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.521, 33.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.597, 31.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.113, 32.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.232, 32.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.737, 31.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.64, 31.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.888, 31.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.5, 30.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.103, 30.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.238, 30.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.963, 30.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.965, 30.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.669, 29.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.744, 29.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.473, 29.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.999, 28.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.578, 28.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.356, 27.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.056, 27.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.288, 27.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.512, 27.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.882, 26.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.491, 26.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.768, 26.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.247, 25.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.329, 24.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.268, 24.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.275, 24.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.015, 23.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.896, 23.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.835, 23.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.007, 23.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.662, 24.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.013, 23.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.48, 23.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.093, 23.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.799, 23.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.345, 23.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.781, 23.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.141, 23.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.696, 23.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.484, 23.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.741, 23.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.243, 23.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.549, 23.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.548, 23.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.762, 23.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.992, 23.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.372, 23.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.797, 23.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.132, 23.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.216, 23.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.263, 23.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.832, 22.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.472, 23.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.232, 23.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.171, 23.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.732, 23.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.601, 21.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.641, 21.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.767, 21.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.209, 20.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.069, 20.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.476, 20.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.388, 19.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.323, 19.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.237, 19.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.019, 19.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.879, 19.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.378, 18.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.544, 18.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.788, 16.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.224, 16.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.955, 17.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.65, 16.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.686, 16.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.182, 16.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.025, 15.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.006, 15.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.509, 15.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.2, 15.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.971, 14.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.708, 14.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.815, 13.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.245, 11.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.121, 11.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.62, 10.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.271, 9.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.242, 34.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.176, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.036, 34.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.145, 34.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.741, 34.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.133, 34.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.368, 34.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.314, 34.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.156, 34.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.151, 34.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.704, 34.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.204, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.263, 34.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.835, 33.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.926, 33.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.279, 34.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.821, 34.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.47, 34.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.471, 34.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.601, 34.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.454, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.682, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.613, 34.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.639, 34.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.07, 33.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.178, 33.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.904, 33.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.275, 33.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.26, 33.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.901, 33.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.983, 33.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.076, 33.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.918, 32.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.015, 32.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.93, 32.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.375, 32.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.707, 32.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.401, 31.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.982, 32.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.901, 32.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.946, 32.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.02, 32.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.957, 32.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.86, 32.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.957, 32.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.377, 32.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.825, 32.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.905, 32.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.314, 32.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.952, 32.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.197, 32.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.833, 32.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.916, 32.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.977, 32.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.702, 32.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.444, 32.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.482, 33.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.214, 37.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.655, 32.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.398, 32.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.425, 32.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.343, 32.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.909, 33.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.836, 33.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.263, 32.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.226, 33.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22, 33.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.897, 30.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.604, 33.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.634, 34.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.481, 31.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.425, 33.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.397, 33.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.553, 33.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.521, 33.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.606, 33.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.096, 33.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.78, 34.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.585, 35.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.588, 36.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.601, 39.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2, 39.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.932, 39.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.421, 39.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.957, 39.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.787, 39.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.671, 38.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.999, 34.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.429, 41.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.384, 41.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.391, 41.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.445, 41.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.391, 41.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.42, 41.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.635, 41.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.442, 41.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.428, 41.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.576, 41.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.446, 41.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.486, 41.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.469, 41.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.369, 41.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.427, 41.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.414, 41.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.401, 41.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.372, 41.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.329, 41.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.396, 41.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.938, 41.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.369, 42.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.463, 40.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.362, 40.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.345, 40.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.339, 39.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.225, 39.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.499, 38.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.651, 38.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.681, 37.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.933, 36.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.967, 36.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.973, 36.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.83, 36.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.04, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.24, 33.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.508, 30.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.585, 31.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.808, 29.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.266, 28.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.498, 26.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.547, 25.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.578, 25.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.471, 25.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.687, 25.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.531, 25.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.487, 25.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.086, 24.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.774, 23.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.575, 23.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.701, 23.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.009, 23.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.816, 23.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.873, 23.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.851, 23.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.873, 23.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.799, 23.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.825, 23.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.727, 23.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.768, 23.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.327, 23.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.352, 23.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.773, 23.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.327, 23.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.792, 23.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.077, 24.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.718, 23.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.678, 23.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.235, 23.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.713, 23.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.663, 23.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.764, 23.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.801, 23.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.784, 23.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.889, 24.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.808, 24.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.872, 24.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.417, 24.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.887, 24.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.824, 24.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.854, 24.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.778, 24.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.905, 24.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.415, 24.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.955, 24.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.078, 24.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.079, 24.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.12, 24.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.193, 24.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.204, 24.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.35, 24.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.231, 24.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.264, 24.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.302, 24.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.278, 24.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.359, 24.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.399, 24.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.666, 24.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.597, 24.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.523, 24.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.619, 24.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.56, 24.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.629, 24.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.234, 24.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.347, 24.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.96, 24.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.93, 24.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.495, 24.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.153, 24.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.238, 24.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.208, 24.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.719, 24.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.158, 24.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.253, 24.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.214, 24.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.283, 24.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.89, 24.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.151, 24.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.073, 24.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.963, 23.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.519, 23.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.835, 23.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.51, 23.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.796, 23.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.38, 23.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.003, 23.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.798, 23.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.774, 23.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.677, 23.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.517, 22.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.277, 25.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.582, 25.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.355, 26.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.797, 27.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.032, 27.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.256, 27.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.51, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.329, 29.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.871, 29.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.965, 29.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.129, 30.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.159, 31.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.223, 31.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.338, 31.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.482, 32.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.975, 32.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.42, 33.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.091, 33.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.635, 33.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.728, 33.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.697, 33.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.78, 32.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.45, 32.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.358, 31.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.621, 31.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.781, 32.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.99, 32.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.657, 33.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.643, 33.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.655, 33.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7, 33.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.554, 34.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.449, 35.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.76, 36.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.311, 35.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.475, 37.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.516, 37.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.456, 37.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.452, 37.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.569, 37.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.458, 37.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.795, 37.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.716, 37.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.206, 37.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.645, 37.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.231, 37.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.009, 37.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.647, 37.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.287, 37.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.869, 37.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.835, 37.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.58, 36.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.262, 36.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.698, 37.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.72, 37.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.69, 37.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.166, 36.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.631, 37.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.782, 37.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.819, 37.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.724, 37.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.722, 36.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.339, 36.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.644, 37.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.715, 36.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.121, 37.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.707, 37.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.831, 37.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.819, 37.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.245, 37.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.383, 37.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.215, 38.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.332, 38.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.959, 37.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.805, 37.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.383, 37.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.698, 37.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.522, 37.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.726, 36.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.752, 37.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.024, 37.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.558, 37.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.541, 36.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.47, 36.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.585, 36.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.265, 36.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.12, 36.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.136, 36.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.093, 36.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.055, 36.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.109, 36.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.172, 36.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.798, 35.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.542, 35.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.553, 35.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.382, 35.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.282, 35.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.021, 35.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.055, 35.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.953, 34.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.062, 35.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.049, 35.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.086, 34.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.953, 35.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.925, 35.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.215, 35.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.964, 35.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.066, 34.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.037, 34.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.039, 35.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.235, 35.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.141, 34.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.782, 34.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81, 34.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.858, 34.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.812, 34.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.726, 34.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.356, 34.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.713, 34.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.615, 34.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.859, 34.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.706, 34.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.928, 34.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.991, 34.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.921, 34.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.287, 35.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.361, 35.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.759, 35.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.775, 35.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.957, 35.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.021, 35.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.213, 35.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.294, 35.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.194, 35.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.339, 35.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.114, 35.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.974, 35.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.289, 35.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.627, 35.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.561, 36.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.059, 35.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.412, 36.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.188, 36.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.188, 36.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.375, 35.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.705, 35.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.559, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.193, 33.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.212, 33.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.173, 33.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.334, 33.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.009, 33.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.997, 34.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.545, 33.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.063, 33.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.24, 34.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.45, 33.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.408, 33.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.144, 33.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.988, 33.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.06, 32.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.751, 33.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.908, 32.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.917, 32.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.976, 32.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.962, 32.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.835, 33.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.082, 33.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.035, 33.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.328, 32.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.848, 33.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7, 32.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.72, 33.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.082, 33.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.464, 33.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.897, 32.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.306, 32.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.665, 33.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.246, 33.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.847, 33.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.407, 32.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.595, 31.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.464, 32.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.308, 32.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.822, 32.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.554, 32.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.728, 32.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.782, 32.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.524, 32.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.509, 31.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.761, 33.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.666, 32.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.978, 32.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.011, 32.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.519, 33.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.806, 32.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.917, 32.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.596, 32.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.751, 32.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.193, 32.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.986, 32.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.987, 33.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.057, 33.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99, 32.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.461, 29.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.427, 33.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.28, 33.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.717, 32.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.958, 33.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.674, 33.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.492, 33.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.103, 37.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.582, 37.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.145, 33.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.095, 33.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.888, 32.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.378, 33.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.684, 33.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.324, 32.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.432, 33.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.779, 29.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.558, 33.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.974, 32.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.654, 33.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.215, 33.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.419, 33.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.086, 32.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.149, 33.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.501, 33.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.551, 33.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.546, 33.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.328, 32.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.853, 32.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.924, 33.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.564, 33.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.462, 33.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.409, 32.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.191, 33.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.475, 32.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.392, 32.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.105, 33.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.166, 33.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.197, 33.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.759, 34.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.426, 33.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.137, 32.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.622, 32.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.658, 32.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.252, 32.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.048, 33.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.741, 33.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.552, 33.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.523, 31.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.405, 32.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.574, 33.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.696, 33.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.922, 33.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24, 33.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.653, 33.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.397, 33.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.091, 32.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.145, 33.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.284, 33.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.546, 33.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.73, 32.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.79, 32.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.198, 32.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.66, 33.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.661, 33.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.663, 33.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.151, 32.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.639, 33.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.834, 33.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79, 33.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.759, 33.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.658, 31.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.184, 33.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.152, 33.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.395, 33.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.403, 32.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.264, 33.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.764, 33.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.673, 33.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.702, 33.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.87, 31.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.784, 33.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.748, 31.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.049, 33.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.02, 32.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.596, 33.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.188, 32.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.839, 32.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.787, 32.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.672, 32.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.567, 32.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.744, 32.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.329, 31.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.994, 31.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.943, 31.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.593, 31.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.544, 30.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.531, 30.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.375, 30.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.735, 29.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.022, 29.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.663, 28.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.577, 28.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.943, 28.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.854, 27.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.995, 28.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.028, 28.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.395, 28.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.314, 28.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.877, 29.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.833, 29.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.721, 29.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.082, 29.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.289, 29.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.768, 29.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.516, 28.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.602, 28.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.639, 28.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.381, 27.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.436, 27.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.297, 27.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.271, 27.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.071, 26.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.078, 26.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.84, 25.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.292, 25.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.198, 24.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.018, 23.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.724, 23.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.138, 23.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.302, 23.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.254, 23.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.886, 23.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.997, 23.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.485, 22.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.435, 22.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.333, 22.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.285, 22.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.474, 23.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.662, 22.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.286, 22.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.222, 23.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.265, 22.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.333, 22.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.437, 23.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.781, 20.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.491, 22.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.381, 22.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.414, 23.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.677, 23.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.33, 23.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.934, 22.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.437, 23.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.669, 24.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.759, 24.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.272, 23.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.203, 23.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.214, 23.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.204, 23.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.487, 25.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.558, 21.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.674, 23.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.976, 23.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.002, 23.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.923, 23.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.889, 23.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.797, 23.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.329, 23.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.682, 23.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.785, 23.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.691, 21.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.709, 23.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.028, 23.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.721, 23.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.133, 24.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.497, 23.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.737, 23.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.444, 23.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.194, 23.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.886, 23.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.48, 23.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.564, 23.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.631, 23.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.943, 23.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.985, 22.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.535, 23.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.389, 23.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.246, 23.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.636, 25.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.371, 24.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.493, 23.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.19, 23.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.15, 23.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.608, 22.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.886, 21.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.047, 20.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.029, 20.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.354, 21.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.683, 20.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.607, 42.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.72, 41.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.462, 41.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.411, 41.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.595, 40.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.411, 41.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.335, 41.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.287, 40.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.579, 40.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.577, 40.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.432, 40.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.203, 40.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.219, 40.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.518, 40.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.45, 40.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.487, 40.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.62, 40.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.525, 40.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.385, 40.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.498, 40.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.636, 40.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.618, 40.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.565, 40.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.504, 40.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.386, 40.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.671, 40.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.476, 40.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.961, 40.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.679, 40.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.489, 40.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.471, 40.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.672, 39.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.13, 39.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.063, 39.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.906, 39.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.902, 39.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.131, 39.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.516, 38.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.266, 38.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.289, 38.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.104, 38.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.069, 38.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.259, 38.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.529, 38.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.431, 38.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.607, 38.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.734, 38.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.03, 39.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.994, 39.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.655, 40.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.525, 40.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.34, 41.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.369, 40.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.517, 41.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.55, 40.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.565, 40.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.709, 40.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.641, 40.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.637, 40.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.596, 40.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.412, 40.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.672, 40.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.77, 40.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.756, 40.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.275, 40.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.035, 40.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.09, 40.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.926, 40.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.02, 40.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.009, 40.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.133, 41.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.641, 40.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.505, 40.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.304, 39.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.583, 39.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.552, 39.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.521, 39.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.255, 39.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.951, 39.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.039, 38.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.113, 38.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.784, 39.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.768, 39.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.875, 39.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.957, 39.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.824, 39.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.114, 39.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.751, 39.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.632, 39.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.762, 38.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.904, 38.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.005, 38.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.257, 37.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.171, 37.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.394, 37.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.8, 36.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.563, 36.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.87, 35.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.909, 34.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.01, 34.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.18, 34.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.437, 33.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.282, 33.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.272, 33.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.895, 33.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.688, 33.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.419, 33.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.318, 33.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.006, 32.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.723, 32.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.568, 32.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.577, 32.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.57, 32.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.573, 31.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.847, 31.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.489, 31.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.989, 30.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.707, 30.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.544, 30.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.09, 30.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.682, 29.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.254, 29.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.974, 29.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.069, 28.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.016, 28.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.766, 27.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.281, 27.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.069, 26.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.983, 26.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.974, 25.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.517, 24.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.383, 24.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.404, 24.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.199, 23.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.133, 23.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.895, 23.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.924, 23.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.475, 22.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.583, 23.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.499, 23.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.414, 23.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.029, 23.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.867, 23.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.045, 23.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.301, 23.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.049, 23.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.177, 23.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.138, 23.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.216, 23.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.265, 23.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.134, 23.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.22, 23.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.905, 22.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.191, 23.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.964, 22.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.437, 22.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.884, 22.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.739, 22.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.677, 22.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.909, 22.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.856, 22.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.361, 22.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.562, 22.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.564, 22.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.398, 22.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.734, 22.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.452, 22.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.002, 22.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.108, 22.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.926, 22.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.102, 32.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.153, 32.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.337, 32.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25, 33.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.28, 33.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.372, 32.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.26, 32.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.836, 32.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.93, 32.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98, 32.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.005, 32.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.985, 33.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.937, 32.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.459, 32.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.698, 32.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.974, 32.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.836, 32.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.846, 33.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.148, 32.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.09, 32.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.084, 32.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.092, 33.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.124, 33.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.084, 32.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.098, 32.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.066, 32.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.102, 32.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.936, 33.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.052, 32.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.051, 32.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.057, 32.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.089, 33.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.08, 33.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.441, 33.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.259, 33.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.744, 34.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.816, 34.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.025, 34.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.908, 34.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.045, 34.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.844, 34.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.771, 34.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.055, 34.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.063, 34.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.265, 34.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.757, 34.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.025, 34.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.837, 35.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.736, 35.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.812, 35.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.948, 35.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.816, 34.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.965, 34.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.266, 34.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.769, 35.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.415, 35.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.126, 35.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.083, 35.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24, 35.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.345, 35.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.167, 35.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.605, 35.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.009, 36.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.819, 36.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.946, 36.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.994, 36.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.089, 36.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.159, 36.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.631, 36.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.294, 35.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.726, 34.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.844, 33.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.936, 33.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.963, 33.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.141, 33.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.36, 33.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.92, 33.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.334, 33.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.12, 33.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.263, 34.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.124, 33.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.199, 32.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.388, 33.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.522, 34.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.316, 33.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.433, 33.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.22, 33.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.923, 33.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2, 33.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.907, 33.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.819, 33.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.813, 33.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.069, 34.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.34, 33.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.647, 33.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.666, 33.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.79, 33.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.659, 33.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.251, 33.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.673, 33.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.864, 33.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.965, 32.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.373, 32.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.666, 32.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.899, 33.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.87, 33.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.086, 33.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.421, 33.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.632, 33.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.714, 33.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.987, 33.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.872, 33.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.948, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.774, 33.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5, 33.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.912, 34.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.203, 33.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.723, 33.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.194, 33.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.277, 33.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.079, 33.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.443, 34.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.876, 33.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.973, 33.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.744, 33.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.028, 33.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.467, 32.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.442, 32.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.585, 33.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.179, 33.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.713, 33.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.631, 33.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.366, 33.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.277, 33.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.327, 33.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.398, 33.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.388, 33.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.181, 33.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.381, 33.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.271, 33.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.357, 33.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.419, 33.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.498, 33.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.338, 33.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.374, 33.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.516, 34.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.477, 33.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.213, 34.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.254, 33.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.499, 33.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.385, 34.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.549, 34.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.324, 33.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.632, 34.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.535, 34.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.162, 34.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.089, 33.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.804, 33.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.225, 33.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.168, 33.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.369, 33.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.339, 33.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.727, 33.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.911, 33.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.207, 33.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.166, 32.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.319, 32.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.349, 30.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.795, 29.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.037, 28.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.707, 28.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.716, 28.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.418, 28.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.258, 28.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.624, 28.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.446, 28.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.662, 27.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.005, 27.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.794, 28.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.734, 28.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.322, 28.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.316, 28.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.505, 28.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.227, 28.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.761, 26.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.854, 25.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.614, 25.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.864, 24.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.58, 24.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.178, 24.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.759, 24.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.704, 24.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.165, 24.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.43, 23.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.327, 23.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.777, 20.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.247, 22.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.386, 22.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.487, 22.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.274, 20.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.348, 20.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.741, 20.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.295, 20.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.972, 20.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.533, 20.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.124, 20.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.213, 21.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.27, 21.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.423, 21.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.556, 21.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9, 24.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.98, 22.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.362, 23.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.257, 23.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.063, 23.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.728, 24.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6, 24.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.248, 24.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.869, 23.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.361, 23.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.17, 23.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.365, 23.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.857, 22.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.305, 21.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.522, 17.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.875, 17.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.088, 17.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.031, 15.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.091, 13.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.561, 13.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.978, 12.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.084, 13.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.762, 11.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.812, 10.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.624, 8.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.823, 8.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.407, 9.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.756, 11.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.305, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.675, 33.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.424, 33.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.652, 34.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.829, 34.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.807, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.939, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.835, 34.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.816, 34.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.72, 34.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.041, 34.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.725, 34.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.252, 34.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.945, 34.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.878, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.992, 33.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.921, 34.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.835, 34.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.081, 33.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.318, 31.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.753, 34.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.206, 34.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.912, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.042, 34.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.093, 34.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.074, 34.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.95, 34.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.788, 34.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.121, 34.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.655, 34.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.813, 34.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24, 34.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34, 33.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.407, 33.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.385, 33.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.434, 33.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.272, 33.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.582, 34.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.483, 34.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.021, 34.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.441, 34.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.96, 34.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.294, 33.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.738, 33.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.002, 33.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.346, 33.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.223, 33.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.007, 33.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.115, 33.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.135, 33.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.686, 33.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.383, 33.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.006, 33.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.898, 33.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.73, 33.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.624, 33.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.17, 34.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.006, 34.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.001, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.96, 34.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.986, 34.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.904, 34.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.684, 33.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.43, 33.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.46, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.414, 34.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.62, 34.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.345, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.636, 33.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.281, 34.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.014, 34.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.985, 34.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.063, 34.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.048, 34.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.16, 34.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.996, 34.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.892, 34.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.788, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.639, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.922, 34.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0, 34.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.118, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.978, 34.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.883, 34.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.088, 34.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.914, 34.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.76, 34.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.773, 34.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.77, 34.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.996, 34.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.991, 34.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.593, 34.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.139, 33.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.718, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.667, 34.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.777, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.497, 34.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.869, 34.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.097, 34.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.039, 34.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.275, 34.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.044, 34.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.477, 34.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.86, 34.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.764, 34.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.915, 35.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.968, 35.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.264, 35.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24, 35.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.127, 35.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.764, 35.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.971, 35.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.416, 35.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.007, 35.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.195, 37.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.239, 37.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.313, 37.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.217, 37.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.277, 37.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.061, 38.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.417, 38.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.679, 35.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.594, 34.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.604, 34.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.394, 33.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.936, 32.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.763, 31.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.49, 29.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.484, 27.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.796, 28.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.028, 27.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.415, 26.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.951, 25.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.956, 24.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.984, 24.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.179, 24.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.259, 23.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.237, 23.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.08, 23.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.179, 23.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.092, 23.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.788, 23.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.356, 23.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.529, 23.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.834, 23.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.71, 24.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.634, 24.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.542, 24.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.236, 24.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.936, 23.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.568, 24.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.758, 24.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.766, 24.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.31, 24.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.207, 24.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.086, 24.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.595, 24.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.045, 24.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.068, 24.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.127, 24.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.416, 24.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.515, 24.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.986, 24.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.626, 24.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.279, 24.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.419, 24.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.756, 24.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.653, 24.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.697, 24.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.834, 23.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.573, 23.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.089, 23.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.607, 23.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.637, 23.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.305, 23.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.211, 23.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.385, 23.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.168, 23.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.559, 24.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.371, 24.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.119, 24.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.978, 24.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.527, 24.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.248, 24.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.336, 24.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.545, 24.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.426, 24.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.547, 24.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.112, 34.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.009, 34.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.83, 34.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.997, 34.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.627, 34.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.221, 34.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.18, 34.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.42, 32.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.661, 32.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.354, 32.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.192, 31.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.171, 32.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.619, 32.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.303, 32.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.781, 33.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.98, 32.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.312, 33.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.249, 33.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.854, 32.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.676, 33.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.902, 33.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.97, 33.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.781, 33.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.935, 33.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.373, 33.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.049, 33.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.704, 35.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.778, 35.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.569, 36.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.375, 36.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.391, 38.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.502, 34.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.532, 34.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.751, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.507, 33.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.607, 34.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.728, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.826, 34.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.948, 34.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.855, 34.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.854, 34.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.994, 34.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.332, 34.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.891, 34.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.998, 34.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.967, 34.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.566, 35.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.913, 34.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.816, 34.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.624, 34.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.935, 34.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.806, 34.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.093, 34.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.419, 34.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.457, 34.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.728, 34.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.583, 34.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.114, 33.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.87, 33.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.761, 33.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.009, 33.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.966, 33.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.469, 32.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.313, 32.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.141, 31.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.939, 31.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.808, 29.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.147, 27.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.936, 26.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.654, 25.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.367, 25.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.921, 25.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.514, 25.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.583, 25.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.929, 24.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.785, 24.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.094, 23.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.035, 23.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.852, 23.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.512, 23.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.952, 22.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.991, 22.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.044, 22.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.953, 23.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.276, 23.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.128, 23.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.963, 23.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.11, 24.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.647, 25.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.473, 26.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.178, 25.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.293, 25.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.041, 25.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.768, 25.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.272, 25.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.879, 25.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.461, 25.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.576, 25.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.297, 24.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.224, 24.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.259, 25.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.592, 25.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.747, 25.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.452, 25.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.465, 25.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.753, 26.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.647, 26.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.72, 26.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.445, 26.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.695, 27.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.543, 27.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.14, 27.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.021, 27.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.141, 27.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.164, 27.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.406, 27.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.57, 27.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.569, 27.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.261, 27.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.767, 27.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.642, 27.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.669, 27.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.218, 27.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.624, 27.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.705, 27.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.774, 27.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.617, 27.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.567, 27.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.686, 27.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.832, 27.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.882, 27.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.907, 27.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.768, 27.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.578, 27.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.725, 27.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.785, 27.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.76, 27.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6, 27.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.559, 27.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.326, 27.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.304, 27.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.284, 27.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.267, 26.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.2, 26.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.129, 26.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.08, 27.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.021, 26.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.988, 27.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.189, 27.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.604, 27.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.425, 27.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.328, 27.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.355, 27.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.284, 27.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.308, 27.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.134, 26.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.223, 26.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.938, 26.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.773, 26.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.712, 26.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.769, 26.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.668, 26.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.734, 27.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.72, 26.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.599, 27.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.647, 26.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.654, 26.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.481, 26.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.557, 26.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.295, 27.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.139, 26.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.068, 27.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.753, 27.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.543, 27.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.412, 26.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.991, 27.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.98, 27.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.639, 27.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.861, 27.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.945, 27.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.67, 27.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.774, 27.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.774, 27.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.939, 27.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.127, 26.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.131, 27.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.98, 26.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.81, 26.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.825, 26.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.677, 26.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.361, 26.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.002, 26.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.271, 26.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.331, 26.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.011, 26.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.818, 26.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.852, 26.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.783, 26.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.332, 25.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.21, 25.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.905, 25.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.892, 25.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.955, 25.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.431, 25.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.85, 25.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.612, 25.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.676, 25.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.576, 24.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.266, 24.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.48, 24.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.369, 24.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.399, 24.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.286, 24.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.141, 24.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.489, 25.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.289, 24.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.507, 24.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.12, 24.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.143, 24.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.972, 24.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.643, 24.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.31, 24.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.353, 24.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.326, 24.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.157, 24.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.066, 24.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.973, 24.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.226, 24.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.946, 24.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.129, 24.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.232, 24.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.279, 23.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.594, 22.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.105, 24.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.323, 26.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.03, 27.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.965, 27.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.896, 26.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.722, 26.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.147, 26.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.766, 26.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.998, 26.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.597, 26.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.115, 26.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.197, 26.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.413, 26.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.093, 25.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.866, 25.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.75, 25.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.714, 25.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.79, 25.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.354, 26.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.095, 26.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.02, 26.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.446, 26.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.213, 25.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.917, 26.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.56, 25.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.476, 26.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.4, 26.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.456, 26.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.338, 25.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.293, 25.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.404, 25.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.377, 25.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.386, 25.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.323, 26.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.001, 26.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.167, 26.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.192, 25.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.852, 26.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.005, 25.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.357, 25.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.699, 25.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.693, 25.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.729, 25.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.755, 25.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.833, 24.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.612, 24.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.063, 24.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.092, 24.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.007, 24.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.719, 24.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.092, 23.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.927, 23.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.617, 23.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.799, 23.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.116, 24.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.33, 23.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.915, 23.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.608, 23.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.666, 23.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.559, 23.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.66, 23.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.71, 23.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.348, 22.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.862, 21.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.652, 21.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.677, 21.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.325, 21.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.959, 21.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.595, 22.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.768, 22.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.815, 23.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.603, 23.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.691, 33.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.788, 17.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.816, 26.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.414, 34.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.091, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.561, 33.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.03, 34.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.244, 33.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.655, 34.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.482, 34.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.412, 33.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.369, 34.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.631, 33.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.512, 34.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.802, 34.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.585, 33.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.542, 33.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.541, 33.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.564, 34.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.583, 33.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.804, 34.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.548, 34.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.633, 34.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.537, 33.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.677, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.781, 34.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.643, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.749, 34.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.73, 35.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.685, 34.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.718, 34.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.297, 35.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.652, 34.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.24, 33.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.75, 34.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.083, 33.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.673, 34.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.207, 33.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.619, 33.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.239, 34.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.016, 34.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.388, 34.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.496, 34.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.171, 34.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.37, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.325, 34.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.266, 34.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.882, 34.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.22, 34.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.237, 34.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.99, 34.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.303, 34.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.356, 34.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.382, 34.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.014, 33.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.363, 34.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.946, 34.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.208, 34.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.689, 34.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.294, 34.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.635, 34.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62, 34.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.642, 34.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.764, 34.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.779, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.946, 34.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.529, 34.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.887, 34.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.054, 34.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.321, 34.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.954, 34.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.623, 33.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.295, 33.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.645, 33.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.192, 32.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.305, 31.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.825, 31.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.419, 30.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.964, 30.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.55, 34.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.704, 33.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.617, 34.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.522, 33.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.11, 34.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.664, 34.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.696, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.315, 33.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.611, 33.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.659, 34.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.372, 34.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.859, 34.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2, 34.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.575, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.654, 34.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.743, 33.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.218, 33.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.883, 33.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.712, 34.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.662, 34.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.97, 34.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.835, 34.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.395, 34.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.688, 33.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.563, 33.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.638, 33.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.48, 34.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67, 34.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.817, 34.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6, 34.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.591, 34.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.645, 34.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.646, 34.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.069, 34.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.509, 34.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.182, 34.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33, 34.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.979, 34.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.664, 34.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.96, 34.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.732, 34.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.598, 34.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.422, 34.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.38, 33.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.754, 35.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.723, 34.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61, 34.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.071, 33.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.968, 33.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.865, 33.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.642, 33.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.649, 33.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.257, 33.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.129, 33.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.449, 33.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.908, 33.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.932, 33.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.388, 33.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.981, 33.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.749, 33.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.683, 33.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.589, 34.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.921, 33.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.979, 33.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.946, 33.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.59, 33.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.778, 33.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.691, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.05, 33.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.963, 32.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.876, 34.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.148, 33.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.215, 33.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.475, 33.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.104, 33.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.808, 33.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.481, 33.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.331, 33.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.302, 33.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.182, 33.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.523, 33.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.617, 33.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.361, 32.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.594, 32.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.428, 32.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.054, 30.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.439, 32.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.468, 32.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.316, 32.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.533, 33.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.284, 30.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.376, 30.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.039, 30.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.778, 29.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.279, 28.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.265, 28.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.032, 27.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.054, 27.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.351, 27.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.41, 27.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.325, 26.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.315, 26.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.178, 26.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.084, 26.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.946, 25.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.758, 25.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.617, 25.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.678, 24.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.247, 24.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.215, 24.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.136, 24.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.125, 23.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.496, 23.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.393, 23.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.482, 23.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.936, 22.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.05, 22.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.597, 22.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.943, 19.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.061, 20.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.298, 20.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.961, 20.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.6, 19.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.744, 19.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.323, 19.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.234, 18.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.422, 18.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.581, 18.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.772, 17.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.946, 18.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.855, 17.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.308, 17.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.873, 16.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.392, 16.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.657, 16.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.356, 16.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.331, 15.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.569, 15.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.994, 15.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.097, 15.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.912, 15.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.272, 13.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.363, 15.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.823, 14.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.38, 15.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.522, 14.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.471, 14.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.026, 14.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.961, 14.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.254, 13.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.976, 13.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.119, 13.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.099, 13.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.278, 13.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.747, 11.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.351, 12.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.564, 12.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.862, 10.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.364, 10.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.517, 10.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.241, 9.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.29, 9.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.961, 9.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.481, 8.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.648, 7.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.492, 9.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.235, 9.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.246, 9.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.893, 10.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.91, 10.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.309, 9.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.283, 9.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.963, 11.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.199, 8.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.367, 8.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.055, 8.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.885, 8.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.435, 8.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.755, 8.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.981, 7.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.974, 7.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.475, 9.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.935, 7.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.639, 7.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.608, 7.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.566, 33.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.58, 33.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.469, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.643, 33.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61, 34.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.424, 25.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.987, 23.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.096, 23.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.782, 23.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.728, 23.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.655, 23.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.379, 23.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.641, 23.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.503, 23.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.575, 24.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.726, 24.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.929, 24.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.951, 23.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.948, 23.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.855, 23.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.067, 23.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.429, 24.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.675, 23.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.582, 23.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.245, 23.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.67, 23.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.426, 23.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.741, 23.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.629, 23.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.621, 23.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.042, 23.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.689, 34.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.547, 34.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.396, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.645, 34.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.585, 34.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.609, 34.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.936, 34.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.826, 34.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.902, 34.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.837, 34.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.708, 34.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.757, 34.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.51, 34.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.848, 34.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.382, 34.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.368, 33.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.311, 32.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.327, 32.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.171, 31.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.448, 31.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.213, 30.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.227, 28.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.935, 27.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.695, 26.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.479, 25.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.639, 26.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.762, 23.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.454, 21.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.296, 21.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.309, 21.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.672, 22.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.122, 21.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.136, 21.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.296, 22.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.492, 23.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.37, 23.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.746, 23.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.96, 23.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.117, 23.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.98, 23.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.102, 23.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.019, 22.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.112, 22.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.281, 22.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.741, 22.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.863, 22.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.696, 21.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.425, 21.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.613, 20.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.551, 20.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.239, 22.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.134, 22.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.418, 22.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.01, 23.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.099, 23.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.275, 24.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.362, 24.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.349, 24.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.445, 25.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.999, 25.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.788, 26.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.729, 27.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.86, 27.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.872, 27.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.684, 27.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.685, 27.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.955, 28.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.046, 28.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.037, 28.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.105, 27.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.121, 28.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.276, 28.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.173, 28.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.218, 28.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.303, 28.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.311, 28.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.472, 28.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.482, 28.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.458, 28.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.375, 28.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.545, 28.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.445, 28.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.532, 28.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.473, 28.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.328, 28.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.876, 28.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.092, 27.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.79, 27.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.989, 27.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.948, 27.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.116, 27.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.248, 27.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.143, 27.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.215, 27.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.974, 27.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.354, 27.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.871, 27.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.396, 28.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.491, 28.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.587, 28.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.76, 28.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.416, 28.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.021, 28.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.581, 28.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.965, 28.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.769, 29.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.876, 29.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.461, 30.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.52, 30.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.84, 30.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.466, 30.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.764, 30.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.561, 30.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.652, 30.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.298, 30.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.398, 30.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.401, 30.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.333, 30.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.275, 30.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.342, 30.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.944, 30.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.147, 30.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.412, 30.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.145, 30.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.962, 30.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.081, 30.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.148, 30.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.202, 30.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.13, 30.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.283, 30.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.224, 30.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.119, 30.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.964, 30.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.169, 30.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.308, 30.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.126, 30.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.825, 30.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.246, 30.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.336, 30.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.292, 30.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.12, 30.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.158, 30.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.138, 30.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.15, 30.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.143, 30.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.046, 30.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.118, 30.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.092, 30.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.194, 30.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.166, 30.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.019, 30.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.071, 30.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.209, 30.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.027, 30.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.994, 30.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.038, 30.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.812, 30.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.004, 30.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.915, 30.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.889, 30.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.136, 30.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.935, 30.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.041, 30.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.227, 30.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.194, 30.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.28, 30.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.48, 30.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.197, 30.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.141, 30.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.047, 30.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.21, 30.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.208, 30.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.145, 30.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.107, 30.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.051, 30.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.176, 30.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.075, 30.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.047, 30.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.065, 30.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.064, 30.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.151, 30.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.071, 30.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.211, 30.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.139, 30.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.122, 30.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.152, 30.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.136, 30.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.803, 30.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.251, 30.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.058, 30.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.178, 30.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.088, 30.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.19, 30.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.948, 30.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.307, 30.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.846, 30.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.783, 30.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.782, 30.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.934, 29.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.665, 30.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.798, 30.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.94, 30.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.607, 29.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.295, 29.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.201, 29.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.692, 28.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.576, 27.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.567, 26.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.268, 26.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.62, 24.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.412, 23.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.424, 22.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.495, 23.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.551, 24.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.165, 26.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.956, 26.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.945, 26.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.765, 26.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.861, 26.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.867, 27.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.55, 28.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.618, 28.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.273, 28.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.655, 28.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.752, 29.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.838, 29.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.101, 29.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.817, 28.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.739, 28.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.913, 28.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.959, 28.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.908, 28.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.945, 28.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.021, 28.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.012, 28.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.136, 28.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.336, 26.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.291, 25.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.963, 25.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.278, 24.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.442, 24.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.042, 24.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.535, 28.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.307, 24.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.6, 24.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.217, 24.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.562, 24.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.007, 24.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.65, 24.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.852, 24.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.346, 25.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.84, 25.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.206, 25.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8, 27.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.474, 27.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.158, 27.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.317, 27.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.052, 26.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.936, 25.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.882, 25.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.636, 24.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.169, 24.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.84, 24.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.654, 22.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.658, 22.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.421, 22.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.004, 22.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.758, 21.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.464, 21.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.76, 33.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.397, 34.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.15, 35.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.164, 35.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.84, 35.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.693, 35.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.392, 35.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.543, 35.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.108, 36.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.99, 36.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.03, 37.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.349, 37.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.155, 37.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.155, 37.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.156, 37.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.975, 37.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.439, 34.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.539, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.511, 34.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.558, 34.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.506, 34.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.704, 33.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.516, 34.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.117, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6, 34.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.799, 34.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.607, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.579, 34.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.646, 34.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.722, 34.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.804, 34.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.131, 34.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.565, 34.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.582, 34.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.603, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.539, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.516, 34.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.559, 34.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.476, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.571, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.416, 33.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.559, 34.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.547, 34.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.49, 34.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.462, 34.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.489, 34.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.617, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.795, 34.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.649, 34.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.811, 34.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.589, 34.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.383, 34.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.604, 33.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.54, 34.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.673, 34.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.588, 34.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.309, 34.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.397, 34.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.467, 34.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.283, 34.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.508, 34.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.481, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.493, 34.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.586, 34.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.424, 34.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.558, 33.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.612, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.578, 34.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.554, 34.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.526, 34.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.658, 34.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.571, 34.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.806, 34.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.388, 34.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.748, 34.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.757, 34.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.71, 34.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.697, 34.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.688, 34.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.664, 34.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.721, 34.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.597, 34.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.608, 34.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.438, 34.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.589, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.647, 34.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.654, 34.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.601, 34.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.629, 34.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.628, 34.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.894, 34.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.704, 34.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.783, 34.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.815, 34.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.838, 34.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.569, 34.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.503, 33.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.373, 34.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.626, 33.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.263, 33.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.622, 34.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.581, 33.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.552, 33.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.778, 34.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.596, 33.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.592, 33.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.691, 33.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.559, 33.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.202, 33.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.284, 33.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.388, 33.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.096, 33.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.046, 30.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.614, 30.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.607, 30.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.738, 29.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7, 29.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.919, 29.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.785, 28.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.209, 27.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.229, 26.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.868, 25.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.346, 25.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.526, 24.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.678, 24.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.648, 24.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.311, 24.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.198, 24.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.919, 24.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.775, 24.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.84, 24.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.026, 24.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.965, 23.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9, 23.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.788, 23.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.962, 23.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.933, 23.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.683, 23.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.784, 22.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.625, 22.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.432, 18.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.587, 33.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.627, 34.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.764, 34.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.513, 34.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.414, 34.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.939, 34.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.498, 34.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.975, 33.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.18, 34.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.732, 34.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.652, 34.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.418, 34.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.878, 34.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.696, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.516, 34.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.419, 34.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.713, 34.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.604, 34.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.619, 33.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.719, 34.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.524, 34.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.307, 34.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.27, 34.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.804, 34.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.286, 34.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.247, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.96, 34.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.533, 34.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.504, 34.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.281, 34.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.011, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.895, 34.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.784, 34.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.814, 33.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.537, 33.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.791, 32.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.992, 31.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.947, 30.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.868, 29.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.863, 29.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.259, 28.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.848, 28.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.701, 27.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.146, 28.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.838, 28.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.816, 28.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.854, 28.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.593, 28.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.441, 28.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.441, 28.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.583, 26.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.724, 25.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.613, 24.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.59, 23.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.865, 23.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.186, 23.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.421, 23.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.376, 23.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.875, 25.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.595, 23.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.309, 23.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.343, 23.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.594, 23.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.592, 23.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.295, 23.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.554, 23.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.492, 23.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.439, 22.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.404, 23.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.398, 23.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.331, 23.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.157, 23.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.04, 23.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.019, 23.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.701, 23.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.934, 23.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.847, 23.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.308, 23.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.596, 23.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.526, 23.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.476, 23.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.297, 25.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.912, 25.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.007, 25.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.8, 25.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.215, 25.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.102, 24.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.481, 25.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.473, 23.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.636, 24.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.693, 24.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.032, 24.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.122, 24.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.961, 24.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.056, 24.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.124, 24.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.123, 24.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.479, 24.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.242, 24.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.96, 24.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.195, 24.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.28, 25.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.814, 24.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.345, 24.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.373, 24.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.512, 24.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.278, 24.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.736, 23.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.689, 24.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.488, 24.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.605, 24.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.251, 23.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.782, 23.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.702, 24.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.206, 23.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.084, 23.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.362, 24.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.649, 23.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.15, 23.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.964, 24.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.227, 24.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.092, 25.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.819, 24.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.477, 25.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.577, 25.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.326, 25.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.321, 25.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.326, 25.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.759, 25.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.115, 25.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.362, 25.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.436, 25.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.457, 26.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.228, 25.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.503, 25.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.103, 25.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.815, 25.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.63, 25.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.764, 25.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.878, 25.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.992, 25.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.829, 25.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.278, 24.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.276, 24.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.164, 24.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.069, 24.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.821, 24.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.213, 25.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.416, 25.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.634, 25.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.133, 25.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.067, 25.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.703, 26.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.428, 25.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.635, 25.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.665, 25.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.185, 24.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.288, 24.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.1, 25.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.137, 24.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.028, 24.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.003, 24.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.376, 24.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.115, 24.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.854, 25.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.389, 24.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.137, 24.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.915, 25.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.696, 24.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.239, 24.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.217, 24.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.138, 23.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.237, 23.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.816, 23.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.988, 24.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.29, 24.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.854, 24.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.854, 24.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.777, 24.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.928, 24.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.128, 24.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.14, 24.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.476, 22.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.478, 23.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.193, 23.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.385, 25.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.471, 25.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.623, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.35, 33.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.366, 34.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.798, 31.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.386, 27.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.033, 26.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.594, 26.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.493, 25.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.685, 23.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.421, 23.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.448, 23.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.199, 23.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.567, 22.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.315, 22.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.478, 23.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.735, 23.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.541, 24.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.697, 24.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.614, 24.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.787, 24.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.045, 25.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.476, 27.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.975, 26.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.798, 25.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.402, 24.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.278, 24.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.757, 22.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.063, 34.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.309, 34.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.985, 34.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.622, 33.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.013, 34.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.211, 35.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.853, 35.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.051, 35.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.138, 35.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.63, 35.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.563, 35.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.74, 34.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.786, 33.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.279, 22.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.382, 21.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.319, 23.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.862, 25.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.795, 25.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.893, 25.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.786, 25.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.424, 25.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.366, 25.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.137, 25.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.849, 33.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.239, 34.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.12, 34.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.108, 34.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.204, 34.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.984, 34.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.199, 34.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.174, 34.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74, 33.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.105, 34.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.696, 34.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.64, 34.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.784, 34.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.89, 34.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.969, 34.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.812, 34.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.817, 34.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.432, 34.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.456, 34.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.442, 34.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.509, 34.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.657, 34.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.906, 34.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.965, 34.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.003, 34.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.018, 34.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.917, 34.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.352, 34.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.139, 34.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.029, 34.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.036, 34.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.219, 34.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.983, 34.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.052, 34.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.205, 34.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.766, 34.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.341, 35.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.152, 34.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.383, 34.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.333, 34.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.32, 34.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.271, 34.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.288, 34.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.915, 34.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.136, 34.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.749, 34.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.067, 34.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.963, 34.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.934, 34.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.642, 33.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.771, 34.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.697, 34.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.542, 33.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.963, 33.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.657, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.285, 33.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.718, 33.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.455, 33.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.764, 33.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.108, 32.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.283, 32.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.417, 32.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.116, 32.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.83, 32.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.875, 32.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.773, 32.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.291, 31.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.147, 31.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.322, 31.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.876, 31.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.387, 31.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.642, 32.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.573, 31.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.458, 31.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.307, 31.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.552, 32.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.405, 32.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.316, 32.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.274, 32.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.291, 32.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.374, 32.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.316, 32.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.846, 32.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.154, 32.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.199, 32.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.506, 32.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.448, 32.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.635, 32.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.769, 33.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.633, 33.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.477, 33.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.616, 33.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.918, 33.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.039, 33.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.471, 33.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.498, 33.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.462, 33.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.401, 33.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.391, 33.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.335, 33.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.162, 33.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.667, 33.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.385, 32.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.135, 33.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.555, 33.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.35, 33.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.438, 33.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.72, 33.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.49, 33.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.379, 33.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.477, 33.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.587, 33.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.415, 33.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.032, 33.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.443, 33.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.451, 32.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.27, 33.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.666, 33.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.787, 32.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.429, 33.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.671, 33.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.008, 33.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.088, 33.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.892, 33.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.359, 33.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.355, 33.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.053, 33.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.467, 33.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.389, 33.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.401, 33.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.443, 33.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.538, 33.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.831, 33.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.214, 33.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.477, 34.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.475, 34.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.605, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.784, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64, 33.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.575, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.516, 33.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.283, 34.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.555, 34.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.549, 34.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.555, 34.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.546, 34.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.564, 34.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.51, 34.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.526, 34.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.585, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.484, 34.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.448, 34.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.465, 34.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.334, 34.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.164, 34.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.762, 34.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.34, 34.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.143, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.145, 34.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.74, 33.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.771, 34.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.688, 34.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.641, 34.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.031, 34.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.053, 34.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.815, 34.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.686, 34.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.755, 34.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.725, 34.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.924, 34.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.744, 34.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.844, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.789, 34.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.73, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.574, 34.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.525, 34.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.522, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.562, 34.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.617, 34.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.606, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.157, 34.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.983, 34.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.792, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.492, 34.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.629, 34.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.738, 34.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.946, 34.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.968, 33.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.826, 34.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.97, 34.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.929, 34.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.724, 34.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.751, 34.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.774, 34.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.772, 34.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.765, 34.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.721, 34.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.953, 34.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.642, 34.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.776, 34.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.622, 34.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.994, 34.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.308, 34.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.032, 34.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.09, 34.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.476, 34.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.487, 34.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.005, 34.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.088, 34.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.049, 34.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.007, 34.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.891, 34.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.978, 34.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.871, 34.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.923, 34.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.678, 34.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.985, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.042, 34.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.047, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.309, 34.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.314, 34.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.201, 34.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.125, 34.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.282, 34.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.305, 34.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.275, 34.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.244, 34.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.318, 34.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.259, 34.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.283, 34.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.478, 34.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.742, 34.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.003, 34.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.948, 34.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.986, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.911, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88, 34.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.023, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.937, 34.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.74, 34.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.83, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.614, 34.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.561, 34.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.634, 34.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.774, 34.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.909, 34.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.975, 34.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.188, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.115, 34.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.43, 34.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.018, 34.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.916, 34.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.331, 33.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.94, 34.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.749, 34.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.489, 34.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.151, 34.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.076, 34.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.145, 34.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.271, 34.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.09, 34.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.207, 34.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.175, 34.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.117, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.07, 33.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.992, 34.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.894, 34.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.986, 34.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.984, 34.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.993, 33.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.161, 34.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.612, 34.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.672, 34.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.118, 34.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.872, 34.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.049, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.105, 34.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.016, 34.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.814, 34.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.127, 34.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.288, 34.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.064, 34.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.974, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.828, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.79, 34.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.734, 34.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.602, 34.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.353, 33.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.734, 34.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.173, 34.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.653, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.949, 34.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.943, 34.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.202, 33.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.896, 34.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.896, 34.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.948, 34.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.982, 34.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.297, 34.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.06, 34.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.315, 34.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.036, 34.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.06, 34.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.716, 34.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.633, 34.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.605, 34.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.592, 34.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.608, 34.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.518, 34.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.224, 34.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.164, 34.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.241, 34.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.693, 34.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.573, 34.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.517, 34.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.494, 34.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.559, 34.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.875, 34.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.066, 34.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.679, 35.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.075, 34.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.087, 34.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43, 35.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.334, 35.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.45, 35.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.344, 35.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.354, 35.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.367, 35.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.339, 35.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.415, 35.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.445, 35.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.86, 35.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.531, 35.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.634, 35.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.654, 35.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.642, 35.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.748, 36.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.92, 36.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.749, 36.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.767, 37.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.094, 38.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.127, 37.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.133, 37.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.038, 37.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.85, 37.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.631, 37.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.373, 37.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.265, 37.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.014, 36.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.063, 36.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.076, 36.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.076, 36.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.023, 36.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.04, 36.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.973, 36.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.036, 36.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.031, 36.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.746, 36.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.013, 35.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.556, 35.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.505, 35.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.578, 35.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.662, 34.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.473, 35.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.473, 35.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.285, 35.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.21, 34.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.275, 34.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.285, 34.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.234, 34.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.229, 34.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.182, 34.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.182, 34.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.166, 34.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.239, 34.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.074, 34.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.078, 34.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.853, 34.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.926, 34.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.099, 34.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.511, 34.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.545, 35.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.54, 35.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.255, 35.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.979, 35.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.522, 35.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.685, 35.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.84, 35.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.121, 35.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.075, 35.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.449, 35.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.421, 36.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.089, 36.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.236, 36.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.471, 37.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.93, 37.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.034, 37.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.944, 37.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.363, 37.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.506, 37.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.241, 37.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.663, 38.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.606, 38.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.36, 38.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.344, 38.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.32, 38.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.117, 38.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.089, 37.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.986, 37.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.742, 37.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.349, 37.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.062, 37.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.091, 37.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.055, 37.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.148, 37.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.001, 37.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.998, 37.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.964, 37.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.167, 37.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.058, 37.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.748, 37.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.047, 37.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.727, 37.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.982, 37.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.028, 37.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.076, 37.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.906, 37.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.044, 37.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.254, 37.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.798, 37.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.818, 37.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.783, 37.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.819, 37.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.023, 37.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.79, 37.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.589, 37.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.681, 37.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.778, 37.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.987, 37.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.72, 37.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.679, 37.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.99, 37.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.072, 37.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.78, 37.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.529, 37.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.021, 37.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.14, 37.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.513, 37.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.055, 37.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.105, 37.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.265, 37.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.22, 37.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.032, 37.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.182, 37.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.89, 37.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.928, 37.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.907, 37.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.129, 37.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.951, 37.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.081, 37.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.017, 37.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.08, 37.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.968, 37.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.381, 37.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.904, 37.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.132, 37.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.878, 37.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.031, 37.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.979, 37.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.937, 37.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.875, 37.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.102, 37.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.242, 37.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.235, 37.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.939, 37.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.39, 37.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2, 37.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.938, 37.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.195, 37.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.254, 37.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.814, 37.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.939, 37.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.988, 37.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.014, 37.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.043, 37.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.991, 37.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.559, 37.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.648, 36.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.424, 36.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.532, 35.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.673, 35.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.847, 35.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.747, 34.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.245, 33.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.061, 33.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.645, 33.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.402, 33.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.519, 33.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.85, 33.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.889, 33.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.599, 33.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.318, 33.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.137, 33.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.009, 33.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.928, 33.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.301, 33.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.67, 32.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.279, 32.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.72, 31.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.668, 31.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.575, 31.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.478, 30.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.847, 30.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.823, 29.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.803, 29.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.818, 29.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.433, 29.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.132, 29.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.7, 28.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.038, 28.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.0, 28.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.165, 27.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.401, 27.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.081, 27.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.235, 27.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.747, 27.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.764, 27.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.485, 27.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.736, 27.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.956, 26.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.865, 24.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.691, 24.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.218, 24.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.834, 23.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.766, 22.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.286, 21.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.857, 21.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.174, 21.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.294, 22.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.945, 21.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.831, 21.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.664, 21.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.776, 21.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.45, 21.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.442, 21.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.782, 20.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.921, 20.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.695, 20.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.809, 20.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.006, 20.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.571, 20.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.676, 21.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.399, 20.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.521, 20.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.001, 20.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.357, 21.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.487, 21.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.358, 22.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.638, 22.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.019, 22.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.837, 23.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.202, 23.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.011, 22.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.895, 22.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.953, 22.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.026, 22.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.007, 21.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.871, 21.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.755, 21.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.272, 20.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.718, 19.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.979, 37.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.943, 37.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.013, 37.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.476, 38.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.447, 38.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.446, 38.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.255, 38.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.418, 38.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.521, 38.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.534, 38.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.445, 38.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.396, 38.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.486, 38.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.422, 37.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.943, 37.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.021, 37.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.095, 37.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.049, 37.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.616, 37.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.072, 37.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.05, 37.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.993, 37.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.296, 37.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.999, 37.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.434, 37.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.231, 37.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.657, 37.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.873, 37.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.108, 37.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.919, 37.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.835, 37.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.956, 37.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.879, 37.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.63, 37.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.95, 37.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.813, 37.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.91, 37.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.066, 37.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.263, 38.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.515, 38.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.231, 40.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.473, 40.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.981, 40.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.699, 41.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.219, 41.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.415, 40.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.46, 40.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.488, 40.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.586, 40.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.634, 40.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.512, 40.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.533, 40.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.468, 40.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.511, 40.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.44, 40.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.414, 40.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.546, 40.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.797, 40.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.413, 40.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.474, 41.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.646, 42.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.898, 42.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.666, 42.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.579, 42.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.559, 42.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.67, 41.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.41, 41.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.635, 39.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.469, 39.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.244, 39.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.969, 39.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.496, 38.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.486, 38.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.447, 38.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.389, 38.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.244, 38.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.104, 38.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.354, 38.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.082, 38.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.308, 38.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.202, 38.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.163, 38.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.169, 38.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.128, 38.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.172, 38.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.215, 37.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.423, 37.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.692, 38.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.45, 38.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.194, 38.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.284, 37.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.86, 37.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.063, 36.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.058, 36.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.336, 33.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.135, 32.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.826, 32.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.795, 31.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.533, 30.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.342, 30.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.216, 31.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.778, 29.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.534, 28.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.56, 28.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.478, 28.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.016, 27.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.639, 25.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.571, 25.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.162, 25.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.831, 25.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.08, 25.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.783, 25.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.165, 25.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.41, 24.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.769, 23.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.656, 24.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.451, 24.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.211, 24.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.202, 24.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.362, 24.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.435, 24.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.363, 24.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.336, 24.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.272, 23.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.389, 23.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.427, 23.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.728, 23.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.472, 23.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.477, 23.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.342, 23.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.234, 23.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.046, 23.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.769, 23.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.226, 21.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.89, 23.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.929, 23.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.91, 23.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.872, 23.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.127, 23.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.948, 23.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.877, 22.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.874, 22.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.926, 23.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.535, 22.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.673, 24.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.833, 22.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.821, 22.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.804, 22.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.791, 22.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.978, 22.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.322, 22.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.698, 22.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.342, 23.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.135, 22.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.973, 22.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.356, 22.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.817, 22.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.804, 22.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.884, 22.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.787, 22.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.769, 22.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.574, 22.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.622, 22.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.829, 22.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.666, 22.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.569, 23.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.566, 22.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.945, 22.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.69, 23.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.091, 23.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.777, 23.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.963, 23.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.933, 23.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.002, 23.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.98, 23.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.958, 23.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.108, 22.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.084, 21.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.119, 23.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.254, 24.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.534, 23.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.051, 23.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.302, 22.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.578, 23.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.112, 22.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.344, 22.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.727, 22.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.246, 22.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.826, 21.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.021, 21.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.239, 20.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.783, 19.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.607, 19.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.157, 17.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.735, 17.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.226, 17.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.752, 16.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.853, 15.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.808, 14.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.961, 14.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.071, 14.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.166, 14.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.435, 13.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.194, 13.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.508, 13.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.722, 12.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.225, 15.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.718, 12.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.641, 12.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.653, 12.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.634, 12.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.071, 12.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.443, 12.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.187, 11.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.117, 11.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.992, 11.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.213, 10.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.639, 12.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.123, 11.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.584, 10.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.044, 10.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.126, 37.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.824, 37.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.724, 22.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.497, 12.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.284, 10.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.764, 9.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.435, 8.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.209, 8.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.019, 9.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.466, 9.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.02, 9.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.038, 9.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.51, 8.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.613, 8.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.734, 8.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.245, 9.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.142, 8.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.325, 9.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.388, 9.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.255, 9.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.205, 9.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.488, 7.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.221, 7.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.453, 8.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.145, 8.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.155, 7.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.115, 7.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.306, 7.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.47, 7.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.674, 8.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.883, 8.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.031, 8.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.653, 9.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.217, 8.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.675, 8.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.791, 8.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.31, 8.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.896, 8.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.833, 8.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.264, 8.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.337, 8.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.438, 8.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.137, 8.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.628, 8.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.627, 8.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.869, 8.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.168, 8.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.901, 8.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.989, 8.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.65, 8.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.333, 8.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.181, 8.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.343, 8.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.358, 8.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.322, 8.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.708, 8.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.113, 8.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.448, 8.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.391, 7.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.712, 7.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.549, 7.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.801, 7.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.844, 7.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.971, 7.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.657, 7.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.163, 8.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.596, 7.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.963, 7.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.969, 4.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.716, 7.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.181, 6.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.112, 7.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.358, 7.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.961, 7.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.921, 7.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.591, 7.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.736, 7.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.144, 7.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.216, 8.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.436, 8.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.512, 7.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.245, 8.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.458, 8.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.799, 8.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.976, 8.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.858, 8.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.023, 8.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.927, 9.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.186, 9.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.958, 9.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.094, 9.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.854, 8.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.993, 7.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.236, 10.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.116, 9.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.424, 9.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.625, 9.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.116, 9.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.187, 9.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.205, 8.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.173, 10.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.066, 9.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.066, 9.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.657, 8.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.634, 7.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.474, 8.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 8.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.786, 10.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.51, 10.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.723, 10.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.973, 8.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 10.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.278, 8.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.348, 9.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.514, 8.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.95, 8.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.57, 7.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.704, 7.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.45, 8.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.99, 8.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.779, 8.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.99, 10.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.439, 8.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.511, 8.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.038, 7.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.507, 8.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.717, 10.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.493, 11.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.76, 11.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.998, 12.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.732, 12.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.735, 13.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.795, 15.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.702, 22.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.816, 23.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.154, 29.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.064, 34.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.861, 34.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.852, 37.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.333, 37.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.917, 37.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.857, 37.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.001, 36.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.908, 36.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.531, 37.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.669, 38.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.32, 38.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.649, 38.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.783, 38.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.036, 39.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.344, 38.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.058, 37.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.126, 38.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.604, 38.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.778, 38.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.692, 38.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.53, 38.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.393, 38.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.484, 38.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.583, 38.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.167, 38.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.278, 38.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.104, 38.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.291, 38.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.66, 37.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.992, 37.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.06, 37.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.47, 37.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.962, 38.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.768, 37.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.133, 37.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.993, 37.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.163, 37.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.841, 37.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.084, 37.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.968, 37.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.67, 37.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.525, 38.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.889, 38.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.675, 37.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.745, 37.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.399, 36.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.771, 37.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.867, 36.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.082, 36.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.158, 31.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.092, 30.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.061, 27.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.083, 22.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.535, 21.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.434, 19.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.526, 9.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.913, 24.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.754, 24.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.999, 24.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.959, 23.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.846, 23.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.865, 23.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.862, 23.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.673, 23.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.671, 23.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.094, 23.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.952, 20.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.018, 18.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.225, 17.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.801, 17.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.734, 16.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.431, 16.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.613, 15.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.013, 14.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.343, 13.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.24, 12.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.95, 10.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.019, 10.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.933, 9.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.868, 9.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.146, 9.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.52, 9.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.936, 8.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.441, 8.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.622, 8.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.921, 8.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.597, 8.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.101, 8.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.309, 8.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.653, 8.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.46, 8.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.258, 9.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.254, 9.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.418, 10.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.946, 9.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.082, 9.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.311, 9.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.271, 9.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.191, 9.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.378, 9.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.15, 8.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.076, 8.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.026, 8.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.294, 8.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.36, 8.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.944, 8.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.461, 8.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.782, 8.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.139, 8.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.08, 8.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.588, 8.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.425, 8.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.108, 7.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.033, 7.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.661, 8.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.038, 8.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.916, 8.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.51, 8.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.645, 8.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.572, 8.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.594, 8.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.45, 8.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.529, 8.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.706, 8.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.753, 8.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.206, 7.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.094, 8.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.207, 8.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.926, 9.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.396, 8.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.542, 9.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.463, 9.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.646, 9.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.778, 9.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.693, 9.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.613, 9.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.715, 9.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.63, 9.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.389, 9.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.572, 9.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.574, 9.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.705, 9.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.616, 9.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.599, 9.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.766, 9.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.92, 9.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.951, 9.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.973, 9.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.046, 9.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.035, 9.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.318, 9.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.688, 8.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.836, 9.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.786, 9.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.789, 9.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.769, 9.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.583, 9.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.065, 9.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.998, 9.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.885, 9.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.862, 9.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.354, 8.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.042, 9.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.724, 9.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.855, 9.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.989, 9.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.14, 8.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.201, 8.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.96, 8.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.061, 8.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.066, 8.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.802, 8.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.048, 8.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.898, 8.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.114, 8.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.909, 8.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.047, 8.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.006, 8.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.743, 8.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.13, 8.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.412, 8.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.138, 8.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.209, 8.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.185, 8.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.43, 8.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.349, 7.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.572, 7.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.583, 7.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.926, 7.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.653, 7.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.128, 7.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.842, 8.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.221, 7.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.877, 7.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.087, 7.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.941, 7.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.038, 7.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.82, 7.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.052, 7.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.994, 7.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.323, 7.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.707, 7.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.058, 7.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.023, 7.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.859, 7.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.823, 7.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.009, 7.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.126, 7.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.331, 7.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.349, 7.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.132, 7.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.111, 7.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.248, 7.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.303, 7.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.24, 6.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.331, 6.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.454, 7.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.221, 6.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.853, 7.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.352, 7.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.062, 7.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.874, 7.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.861, 7.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.149, 7.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.044, 7.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.834, 7.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.736, 7.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.583, 8.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.02, 8.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.941, 8.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.071, 7.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.375, 7.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.115, 7.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.055, 7.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.547, 8.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.921, 7.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.571, 7.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.415, 8.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.752, 7.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.705, 7.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.652, 7.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.616, 7.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.071, 7.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.663, 7.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.791, 7.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.935, 7.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.897, 7.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.762, 7.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.997, 7.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.595, 7.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.537, 7.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.71, 7.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.614, 7.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.099, 6.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.896, 7.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.036, 6.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.785, 6.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.576, 6.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.803, 7.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.889, 7.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.252, 7.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.866, 7.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.871, 7.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.687, 6.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.916, 7.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.83, 7.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.028, 7.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.01, 7.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.238, 7.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.072, 7.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.131, 7.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.931, 8.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.361, 7.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.376, 8.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.362, 8.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.238, 7.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.612, 8.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.922, 8.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.099, 8.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.327, 8.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.512, 7.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.589, 8.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.483, 8.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.958, 8.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.822, 10.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.3, 10.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.753, 11.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.122, 11.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.847, 12.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.792, 12.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.877, 13.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.762, 15.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.022, 15.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.797, 16.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.311, 19.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.188, 19.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.949, 20.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.868, 20.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.427, 21.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.47, 21.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.599, 21.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.619, 21.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.952, 22.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6, 22.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.46, 22.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.989, 22.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.872, 22.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.734, 22.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.598, 22.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.553, 23.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.381, 23.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.279, 23.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.515, 24.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.586, 24.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.805, 25.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.879, 26.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.162, 26.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.643, 28.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.895, 28.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.952, 29.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.037, 29.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.242, 29.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.896, 29.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.616, 29.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.203, 29.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.826, 29.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.88, 29.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.826, 29.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.785, 29.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.831, 29.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.868, 29.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.922, 30.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.159, 30.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.359, 30.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.081, 30.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.529, 31.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.311, 30.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.316, 30.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.265, 30.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.025, 30.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.426, 30.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.804, 31.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.211, 31.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.164, 31.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.308, 31.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.808, 31.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.141, 31.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.691, 30.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.963, 31.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.823, 32.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.04, 32.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.983, 33.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.457, 33.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.341, 33.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.264, 33.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.387, 33.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.815, 33.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.421, 33.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.725, 32.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.962, 37.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.375, 37.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.65, 37.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.494, 37.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.094, 37.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.168, 37.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.115, 37.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.974, 37.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.882, 37.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.61, 37.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.247, 37.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.92, 37.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.65, 37.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.431, 37.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.32, 36.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.669, 37.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.829, 37.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.817, 37.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.947, 37.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.531, 37.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.238, 37.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.931, 37.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.883, 37.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.743, 37.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.857, 37.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.862, 37.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.854, 37.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.26, 37.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.145, 36.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.771, 36.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.304, 36.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.95, 36.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.969, 34.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.031, 33.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.445, 34.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.302, 36.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.277, 42.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -142.236, 42.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -143.681, 43.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.736, 43.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.296, 43.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -150.016, 44.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -151.57, 41.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -151.57, 41.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -151.005, 39.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -150.706, 39.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -150.479, 38.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -149.446, 36.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -148.566, 36.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -148.46, 36.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.626, 35.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.892, 35.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.891, 35.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -145.397, 34.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -143.883, 33.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -143.215, 32.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.073, 37.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.761, 37.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.803, 37.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.081, 37.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.897, 25.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.001, 27.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.234, 25.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.77, 25.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.815, 25.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.418, 24.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.238, 26.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.256, 26.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.31, 26.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.138, 26.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.383, 25.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.284, 26.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.149, 26.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.593, 26.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.643, 24.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.497, 23.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.223, 23.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.044, 22.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.747, 20.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.36, 20.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.298, 20.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.205, 20.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.542, 19.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.798, 18.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.066, 21.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.175, 21.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.957, 20.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.178, 21.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.281, 20.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.45, 20.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.733, 20.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.747, 20.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.743, 20.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.668, 20.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.24, 20.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.554, 20.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.64, 20.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.961, 20.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.657, 20.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.556, 20.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.374, 20.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.142, 21.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.829, 21.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.125, 21.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.629, 22.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.953, 21.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.28, 22.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.39, 22.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.83, 25.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.65, 27.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.127, 27.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.158, 28.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.205, 27.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.676, 28.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.47, 28.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.506, 28.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.981, 28.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.581, 27.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.498, 27.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.254, 27.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.454, 27.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.43, 27.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.345, 27.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.412, 27.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.28, 27.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.463, 27.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.501, 27.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.403, 27.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.337, 27.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.404, 27.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.111, 27.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.382, 27.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.341, 27.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.847, 27.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.433, 27.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.229, 27.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.193, 27.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.197, 27.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.246, 27.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.728, 27.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.348, 27.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.174, 27.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.997, 28.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.362, 28.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.163, 28.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.292, 27.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.434, 27.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.291, 27.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.353, 27.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.49, 27.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.328, 28.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.96, 27.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.915, 27.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.057, 27.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.347, 27.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.277, 27.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.57, 27.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.336, 27.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.011, 28.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.822, 27.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.083, 28.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.374, 27.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.233, 27.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.232, 27.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.419, 27.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.233, 27.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.318, 27.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.14, 27.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.551, 28.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.404, 27.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.294, 28.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.475, 27.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.132, 27.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.282, 27.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.613, 27.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.693, 28.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.41, 27.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.155, 27.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.991, 27.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.831, 27.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.964, 27.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.096, 27.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.165, 27.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.103, 27.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.933, 27.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.966, 27.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.129, 27.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.89, 27.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.007, 27.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.801, 27.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.859, 27.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.879, 27.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.716, 27.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.071, 27.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.805, 27.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.205, 27.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.891, 27.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.544, 27.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.202, 27.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.3, 27.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.906, 27.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.149, 27.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.086, 27.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.175, 27.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.518, 27.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.135, 27.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.218, 27.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.515, 27.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.942, 27.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.411, 27.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.867, 28.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.094, 27.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.68, 27.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.992, 27.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.122, 27.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.315, 27.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.19, 27.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.546, 27.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.199, 27.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.236, 27.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.596, 27.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.491, 27.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.504, 27.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.793, 27.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.488, 27.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.391, 27.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.445, 27.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.779, 28.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.64, 28.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.397, 27.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.527, 28.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.604, 28.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.448, 27.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.713, 28.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.815, 27.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.443, 27.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.368, 28.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.482, 28.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.634, 27.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.584, 27.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.498, 27.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.364, 27.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.444, 27.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.428, 28.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.517, 28.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.593, 27.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.536, 27.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.531, 27.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.451, 28.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.472, 27.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.582, 27.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.382, 28.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.263, 27.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.566, 28.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.658, 28.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.412, 27.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.651, 28.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.717, 28.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.71, 29.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.288, 29.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.753, 29.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.805, 29.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.127, 29.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.549, 29.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.412, 29.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.351, 29.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.634, 29.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.489, 29.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.741, 29.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.815, 29.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.817, 29.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.774, 29.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.731, 29.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.634, 29.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.769, 29.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.677, 29.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.734, 29.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.731, 29.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.755, 29.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.799, 29.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.462, 29.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.668, 29.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.838, 29.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.939, 29.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.735, 29.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.745, 29.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.366, 29.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.641, 29.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.751, 29.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.891, 29.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.814, 29.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.972, 29.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.987, 29.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.871, 29.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.416, 29.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.363, 29.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.945, 29.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.919, 29.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.336, 30.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.456, 31.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.631, 31.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.561, 31.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.846, 31.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.933, 32.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.944, 31.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.882, 31.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.857, 32.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.164, 31.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.575, 29.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.445, 28.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.386, 24.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.503, 24.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.52, 24.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.405, 24.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.395, 22.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.856, 23.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.129, 23.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7, 23.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.5, 25.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.883, 25.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.143, 25.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.977, 27.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.26, 27.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.507, 28.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.621, 28.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.76, 28.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.25, 28.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.668, 28.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.607, 26.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.498, 25.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.37, 25.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.558, 25.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.917, 25.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.522, 24.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.488, 24.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.559, 25.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.324, 25.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.048, 24.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.072, 24.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.635, 23.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.446, 23.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.871, 23.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.338, 23.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.647, 23.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.775, 23.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.572, 23.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.423, 23.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.72, 23.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.838, 23.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.929, 23.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.202, 23.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.394, 24.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.451, 25.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.43, 25.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.628, 25.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.683, 25.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.592, 25.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.794, 25.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.967, 26.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.055, 26.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.063, 26.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.206, 30.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.593, 30.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.569, 31.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.602, 31.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.757, 31.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.795, 31.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.774, 31.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.002, 31.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.961, 31.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.116, 32.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.926, 33.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.956, 33.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.281, 32.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.81, 31.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.533, 31.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.059, 30.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.953, 30.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.888, 29.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.832, 29.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.722, 28.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.36, 28.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.381, 28.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.634, 28.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.321, 28.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.248, 28.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.305, 28.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.107, 28.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.032, 30.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.315, 30.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.752, 31.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.899, 31.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.893, 31.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.943, 32.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.047, 32.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.948, 32.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.976, 32.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.08, 32.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.278, 32.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.252, 32.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.809, 31.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.89, 31.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.026, 30.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.383, 31.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.314, 24.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.314, 24.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.307, 24.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.637, 24.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.663, 25.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.814, 25.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.54, 25.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.308, 25.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.796, 25.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.771, 25.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.75, 25.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.909, 25.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.811, 25.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.887, 25.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.909, 25.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.051, 25.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.829, 25.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.913, 25.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.897, 25.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.008, 25.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.738, 25.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.859, 25.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.529, 25.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.233, 24.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.225, 24.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.839, 24.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.44, 23.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.846, 22.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.831, 22.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.15, 22.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.395, 22.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.456, 22.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.346, 22.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.583, 22.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.587, 22.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.419, 22.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.295, 22.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.349, 22.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.391, 22.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.639, 22.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.146, 22.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.785, 22.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.029, 22.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.136, 22.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.918, 22.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.883, 22.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.122, 22.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.794, 22.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.578, 22.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.617, 22.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.55, 22.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.499, 22.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.131, 22.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.334, 22.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.934, 23.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.17, 23.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.526, 22.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.748, 22.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.549, 22.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.083, 22.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.374, 22.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.607, 23.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.481, 23.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.006, 24.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.849, 24.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.63, 24.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.836, 25.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.765, 25.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.032, 25.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.447, 26.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.572, 26.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.771, 26.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.708, 27.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.888, 27.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.044, 27.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.1, 27.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.737, 28.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.711, 28.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.683, 28.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.426, 29.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.762, 29.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.055, 28.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.418, 29.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.384, 28.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.354, 29.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.116, 29.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.633, 29.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.742, 29.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.381, 30.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.509, 29.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.868, 29.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.367, 30.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.257, 30.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1, 30.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.934, 28.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.955, 27.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.68, 27.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.638, 27.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.649, 27.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.652, 26.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.445, 25.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.936, 26.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.779, 26.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.016, 26.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.812, 26.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.806, 26.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.307, 26.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.541, 26.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.833, 26.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.05, 26.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.628, 26.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.872, 26.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.896, 26.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.405, 26.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.04, 26.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.658, 26.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.673, 26.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.712, 26.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.019, 26.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.982, 26.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.321, 26.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.214, 25.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.315, 26.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.751, 26.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.417, 26.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.768, 26.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.616, 26.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.694, 26.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.849, 26.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.659, 26.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.362, 26.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.961, 26.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.876, 26.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.813, 26.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.788, 26.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.483, 26.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.871, 26.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.236, 26.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.544, 26.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.72, 26.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.75, 26.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.679, 26.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.648, 26.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.749, 26.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.528, 26.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.23, 26.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.93, 26.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.793, 26.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.68, 26.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.378, 26.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.737, 26.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.667, 26.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.661, 26.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.665, 26.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.069, 26.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.871, 26.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.075, 26.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.405, 26.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.635, 26.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.808, 26.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.834, 26.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.456, 26.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.211, 26.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.631, 26.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.845, 26.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.231, 26.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.913, 26.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.803, 26.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.859, 26.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.674, 26.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.329, 26.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.147, 26.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.413, 26.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.201, 26.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.169, 26.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.478, 26.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.206, 27.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.659, 25.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.084, 26.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.655, 26.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.95, 26.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.973, 26.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.992, 26.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.941, 26.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.322, 26.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.98, 26.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.955, 26.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.755, 26.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.407, 27.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.344, 27.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.47, 27.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.999, 27.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.169, 27.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.459, 27.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.541, 27.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.56, 27.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.42, 28.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.911, 28.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.504, 27.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.827, 27.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.337, 27.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.506, 27.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.451, 27.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.111, 28.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.276, 27.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.499, 27.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.465, 27.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.123, 27.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.201, 27.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.162, 27.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.672, 27.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.38, 27.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.741, 28.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.297, 28.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.101, 27.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.035, 28.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.497, 28.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.429, 28.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.456, 28.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.598, 26.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.378, 27.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.229, 27.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.109, 27.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.419, 27.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.274, 27.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.482, 27.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.459, 27.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.118, 27.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.095, 27.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.142, 27.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.789, 27.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.952, 27.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.195, 27.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.128, 27.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.027, 27.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.008, 27.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.753, 27.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.725, 27.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.869, 27.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.758, 27.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.846, 27.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.888, 27.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.783, 27.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.784, 27.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.869, 27.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.666, 27.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.348, 27.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.821, 27.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.771, 27.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.158, 27.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.978, 27.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.509, 27.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.396, 27.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.443, 27.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.648, 27.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.422, 27.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.265, 27.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.261, 27.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.358, 27.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.268, 27.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.385, 27.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.952, 28.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.393, 27.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.684, 27.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.539, 27.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.263, 27.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.497, 27.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.748, 27.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.59, 28.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.56, 28.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.537, 28.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.616, 28.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.921, 27.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.64, 28.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.456, 28.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.436, 28.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.498, 28.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.197, 27.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.502, 27.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.593, 27.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.222, 28.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.557, 27.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.487, 27.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.46, 28.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.645, 27.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.66, 28.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.591, 28.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.491, 28.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.611, 27.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.721, 27.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.912, 28.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.458, 27.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.697, 28.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.379, 28.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.617, 27.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.452, 28.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.566, 27.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.559, 27.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.423, 27.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.571, 27.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.122, 27.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.462, 28.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.687, 27.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.933, 27.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.485, 27.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.538, 27.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.603, 27.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.643, 28.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.501, 27.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.963, 27.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.72, 26.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.929, 28.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.195, 27.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.378, 27.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.452, 27.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.129, 27.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.292, 27.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.062, 27.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.599, 27.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.481, 28.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.262, 27.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.222, 28.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.321, 27.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.802, 28.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.1, 27.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.578, 27.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.729, 28.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.987, 28.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.386, 28.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.044, 28.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.324, 28.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.591, 28.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.686, 28.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.192, 28.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.352, 28.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.676, 28.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.962, 28.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.408, 27.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.852, 29.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.479, 27.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.446, 27.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.844, 27.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.924, 27.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.131, 27.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.539, 28.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.282, 27.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.992, 28.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.592, 27.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.776, 28.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.611, 28.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.019, 27.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.592, 28.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.165, 28.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.568, 29.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.699, 26.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.573, 28.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.602, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.148, 28.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.577, 28.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.105, 27.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.719, 28.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.043, 27.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.754, 28.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.886, 28.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.764, 28.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.574, 27.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.01, 27.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.831, 28.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.531, 28.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.514, 28.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.556, 27.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.511, 28.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.623, 27.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.456, 27.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.599, 27.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.981, 27.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.976, 27.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.402, 28.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.313, 27.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.644, 27.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.4, 27.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.221, 27.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.811, 28.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.9, 28.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2, 37.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.548, 37.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.453, 37.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.413, 38.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.753, 37.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.05, 37.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.997, 37.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.218, 37.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.418, 37.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.233, 34.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.256, 34.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.89, 34.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.863, 34.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.73, 34.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.112, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.138, 34.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.569, 34.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.561, 34.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.754, 34.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.634, 34.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.784, 34.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.158, 34.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.603, 34.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.302, 34.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.833, 34.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.44, 34.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.509, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.508, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.591, 34.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.594, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.47, 34.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.482, 33.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.44, 33.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.461, 33.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.639, 34.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.484, 33.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.13, 33.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.228, 34.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.028, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.728, 34.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.623, 34.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.441, 34.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33, 34.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.578, 34.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.575, 34.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.556, 34.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.399, 34.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.396, 34.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.44, 34.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.587, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.536, 34.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.004, 33.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.564, 33.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.384, 33.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.232, 32.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.263, 32.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.163, 32.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.585, 31.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.817, 31.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.32, 25.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.095, 24.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.335, 24.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.03, 24.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.16, 24.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.973, 23.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.842, 23.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.221, 23.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.527, 24.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.256, 24.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.332, 24.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.101, 23.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.74, 24.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.761, 23.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.257, 21.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.295, 20.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.403, 37.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.47, 38.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.351, 38.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.289, 38.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.504, 38.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.542, 38.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.791, 38.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.907, 38.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.258, 39.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.195, 39.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0, 39.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.934, 39.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.937, 39.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.857, 39.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.129, 39.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1, 39.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.861, 39.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.285, 40.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.191, 40.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.425, 40.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.557, 40.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.597, 40.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.55, 40.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.498, 40.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.342, 40.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.255, 41.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.533, 42.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.636, 41.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.645, 42.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.535, 42.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.471, 42.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.395, 41.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.425, 41.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.466, 41.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.487, 41.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.471, 41.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.604, 42.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.697, 42.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.637, 42.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.686, 42.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.715, 43.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.505, 44.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.847, 42.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.4, 42.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.491, 42.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.459, 41.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.323, 41.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.437, 41.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.436, 42.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.055, 42.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.678, 42.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.528, 41.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.505, 41.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.477, 41.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.445, 41.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.227, 41.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.444, 41.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.449, 41.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.446, 41.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.453, 41.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.457, 42.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.976, 42.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.483, 42.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5, 42.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.655, 42.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.492, 42.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.447, 41.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.399, 41.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.619, 41.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.437, 41.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.453, 41.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.528, 41.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.47, 41.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.567, 41.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.64, 42.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.537, 42.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.404, 42.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.824, 42.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.597, 42.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.579, 42.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.449, 42.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.424, 41.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.426, 41.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.642, 41.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.492, 41.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.451, 41.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.451, 41.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.59, 41.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.469, 41.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.327, 41.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.332, 41.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.284, 41.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.332, 41.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.256, 40.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.403, 41.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.511, 41.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.485, 41.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.479, 41.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.497, 41.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.427, 41.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.413, 41.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.461, 41.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.669, 41.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3, 41.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.516, 41.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.557, 41.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.505, 41.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.503, 41.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.975, 42.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.381, 42.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.338, 42.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.489, 41.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.359, 41.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.287, 41.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.37, 41.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.34, 41.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.335, 41.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.36, 41.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.287, 41.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.334, 41.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.487, 41.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.436, 41.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.411, 41.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.449, 41.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.123, 41.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.046, 40.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.384, 40.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.316, 40.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.481, 40.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.389, 40.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.434, 41.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.469, 41.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.438, 41.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.473, 41.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.464, 41.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.567, 41.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.519, 41.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.497, 41.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.629, 42.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.495, 41.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.618, 42.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.739, 42.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.69, 42.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.614, 42.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.62, 42.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.556, 42.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.554, 42.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.578, 42.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.111, 42.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.653, 42.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.657, 42.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.749, 42.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.781, 42.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.588, 42.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.482, 41.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.716, 41.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.602, 41.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.46, 42.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.895, 42.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.567, 41.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.458, 41.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.354, 41.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.476, 41.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.666, 40.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.658, 40.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.555, 40.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.465, 40.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.859, 39.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.841, 39.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.457, 40.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.366, 40.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.443, 40.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.606, 40.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.615, 40.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.471, 40.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.47, 40.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.792, 34.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.482, 34.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.915, 30.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.849, 29.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.12, 28.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.301, 24.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.933, 22.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.903, 22.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.142, 22.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.609, 22.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.522, 22.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.848, 26.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.4, 25.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.214, 24.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.624, 24.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.152, 24.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.698, 24.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.864, 24.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.682, 24.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.692, 24.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.765, 24.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.696, 24.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.76, 24.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.956, 24.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.215, 26.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.538, 25.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.498, 26.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.79, 26.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.132, 25.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.703, 25.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.552, 26.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.535, 26.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.252, 26.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.759, 24.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.451, 24.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.332, 23.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.83, 23.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.474, 24.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.306, 24.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.386, 24.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.355, 24.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.813, 26.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.15, 26.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.965, 26.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.108, 26.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.17, 26.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.266, 28.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.676, 28.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.197, 29.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.957, 30.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.931, 30.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.499, 30.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.663, 31.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.719, 31.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.846, 31.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.919, 31.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.799, 31.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.734, 31.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.582, 32.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.614, 34.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.995, 34.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.632, 34.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.538, 31.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.563, 31.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.408, 30.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.246, 32.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.214, 32.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.916, 32.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.076, 33.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.185, 35.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.944, 37.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.515, 37.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.213, 36.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.647, 32.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66, 32.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.556, 32.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.609, 34.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.539, 34.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.505, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.17, 34.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.446, 34.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.465, 35.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.745, 37.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.345, 38.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.691, 37.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.719, 35.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.074, 35.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.129, 35.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.529, 34.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.817, 34.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.942, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.761, 34.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.972, 33.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.535, 34.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.272, 35.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.283, 36.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.345, 36.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.457, 38.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.412, 38.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.823, 39.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.423, 40.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.541, 41.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.672, 41.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.499, 41.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.352, 40.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.146, 41.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.441, 41.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.433, 42.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.209, 41.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.342, 40.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.417, 40.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.432, 40.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.484, 40.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.231, 41.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.421, 41.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.727, 41.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.491, 42.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.75, 42.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.532, 42.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4, 41.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.28, 41.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.386, 41.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.473, 41.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.134, 41.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.47, 41.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.454, 41.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.488, 41.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.976, 36.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.93, 36.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.076, 33.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.22, 22.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.168, 22.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.971, 21.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.242, 22.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.602, 22.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.632, 21.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.718, 21.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.685, 21.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.356, 22.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.142, 34.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.118, 34.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.872, 34.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.955, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.791, 34.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.15, 34.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.335, 34.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.409, 34.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.379, 34.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.835, 34.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.83, 34.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.159, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.087, 34.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.638, 34.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.308, 34.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.411, 34.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.535, 34.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.701, 34.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.705, 34.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.692, 34.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.629, 34.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.658, 34.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.551, 34.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.572, 34.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.564, 34.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.618, 34.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.56, 34.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.492, 34.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.03, 34.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.646, 34.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.587, 34.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.629, 34.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.841, 34.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.682, 34.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66, 34.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.355, 34.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.406, 34.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.72, 34.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.036, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88, 34.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.567, 34.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.827, 34.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.046, 35.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.594, 35.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.074, 35.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.564, 35.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.37, 35.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.629, 36.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.645, 35.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.336, 36.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.472, 36.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.75, 36.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.796, 36.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.71, 36.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.969, 35.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.985, 35.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.635, 35.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.689, 34.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.843, 34.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.671, 34.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81, 34.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.138, 34.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.119, 34.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.65, 34.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.715, 34.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.695, 34.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.565, 34.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.538, 34.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.658, 34.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.807, 34.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.979, 34.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.548, 34.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.628, 34.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.632, 34.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.357, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.901, 34.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.649, 34.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.305, 34.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.489, 34.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.653, 34.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.618, 34.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.648, 34.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.455, 34.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.702, 34.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.854, 34.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.581, 34.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.728, 34.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.594, 34.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.68, 34.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.093, 34.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.706, 34.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.572, 34.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.218, 34.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.193, 34.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.605, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.529, 34.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.456, 34.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.337, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.753, 34.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.631, 34.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.508, 34.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.551, 34.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.576, 34.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.825, 34.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.657, 34.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.628, 34.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.636, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.574, 34.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.253, 34.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.189, 34.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.613, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.688, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.889, 34.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.428, 34.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.689, 34.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.455, 34.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.71, 34.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.85, 35.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.601, 35.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.977, 35.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.939, 35.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.98, 35.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.959, 35.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.015, 35.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.892, 35.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.898, 35.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.963, 35.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.303, 35.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.038, 36.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.134, 36.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.948, 36.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.677, 35.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.526, 35.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.268, 35.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.455, 35.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.488, 35.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.441, 35.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.517, 35.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.49, 35.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.19, 35.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.377, 35.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4, 35.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.35, 35.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.031, 35.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.386, 35.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.388, 35.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.493, 35.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.07, 35.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.212, 35.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.142, 35.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.17, 35.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.179, 35.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.141, 36.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.169, 36.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.069, 35.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.363, 36.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.714, 35.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.542, 36.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.499, 36.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.596, 35.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.542, 36.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.235, 36.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.824, 35.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.148, 36.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.985, 36.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.035, 36.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.432, 37.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.19, 38.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.363, 38.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.487, 38.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.671, 37.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.522, 37.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.329, 37.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.287, 38.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.902, 34.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.666, 34.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.752, 34.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.507, 34.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.905, 33.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.436, 33.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.458, 34.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.142, 34.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.775, 33.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.036, 34.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.084, 34.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.101, 34.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.809, 34.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.918, 34.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.924, 35.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.501, 35.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.505, 37.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.756, 36.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.85, 37.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.901, 37.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.015, 37.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.936, 37.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.896, 37.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.892, 37.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.786, 37.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.831, 37.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.927, 37.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.716, 37.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.962, 37.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.156, 37.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.973, 37.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.955, 37.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.905, 37.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.101, 37.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.909, 37.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.735, 37.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.384, 38.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.969, 39.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.814, 39.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.952, 39.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.943, 39.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.916, 39.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.928, 39.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.734, 39.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.079, 39.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.017, 39.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.947, 38.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.997, 38.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.864, 39.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.93, 39.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.858, 39.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.252, 39.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.122, 39.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.933, 39.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.031, 39.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.947, 39.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.971, 39.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.854, 39.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.008, 39.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.906, 39.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.973, 39.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.963, 39.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.135, 38.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.781, 39.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.898, 38.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.808, 38.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.844, 38.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.693, 38.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.762, 38.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.526, 38.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.422, 38.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.422, 38.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.265, 38.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.715, 37.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.179, 37.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.591, 37.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.468, 37.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.51, 37.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.374, 37.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.248, 38.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.342, 38.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.465, 38.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.446, 38.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.417, 38.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.322, 38.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.357, 38.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.374, 38.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.425, 38.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.364, 38.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.027, 37.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.469, 38.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.391, 38.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.279, 38.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.352, 38.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.404, 38.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.418, 38.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.397, 38.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.386, 38.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.424, 38.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.405, 38.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.443, 38.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.519, 38.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.475, 38.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.68, 38.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.453, 38.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.565, 38.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.362, 38.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.571, 38.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.582, 38.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.833, 38.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.611, 38.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.523, 38.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.475, 38.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.624, 38.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.371, 38.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.367, 38.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.249, 38.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.202, 37.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.039, 37.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.311, 38.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.307, 38.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.432, 38.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.126, 38.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.175, 38.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.248, 38.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.371, 38.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.317, 38.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.389, 38.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.519, 38.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.507, 38.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.138, 38.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.396, 38.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.116, 38.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.484, 38.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.524, 38.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.518, 38.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.985, 37.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.964, 37.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.341, 38.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.739, 38.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.663, 39.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.899, 38.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.887, 39.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.027, 39.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.043, 39.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.082, 39.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.281, 40.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.465, 40.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.177, 40.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.171, 39.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.236, 40.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.538, 40.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.179, 40.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.477, 40.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.647, 40.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.653, 40.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.395, 40.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.498, 40.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.484, 40.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.524, 40.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.55, 40.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.399, 40.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.522, 40.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.462, 40.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.522, 40.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.503, 40.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.437, 40.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.583, 40.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.742, 40.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.529, 40.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.595, 40.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.503, 40.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.468, 40.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.891, 40.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.497, 40.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.557, 40.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.427, 40.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.502, 40.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.521, 40.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.706, 40.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.276, 40.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.402, 40.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.342, 41.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.436, 40.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.327, 41.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.366, 41.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.257, 41.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.69, 41.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.866, 41.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.553, 42.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.559, 42.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.427, 42.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.929, 42.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.383, 42.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.52, 42.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.549, 42.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.593, 41.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.528, 41.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.583, 41.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.32, 41.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.609, 41.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.57, 42.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.494, 42.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.56, 42.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.403, 42.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.871, 42.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.676, 42.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.552, 42.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.734, 42.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.675, 42.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.997, 42.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.76, 42.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.673, 42.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.639, 42.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.534, 42.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.533, 42.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.354, 41.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.669, 42.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.523, 41.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.564, 42.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.613, 41.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.527, 41.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.654, 42.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.518, 41.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.559, 41.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.379, 41.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.47, 41.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.465, 41.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.48, 41.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.503, 41.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.06, 41.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.469, 42.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.342, 41.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.423, 41.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.424, 41.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.422, 41.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.506, 41.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.518, 41.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.464, 41.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.464, 41.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.512, 41.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.499, 41.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.553, 42.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.428, 41.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.65, 41.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.477, 42.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.479, 42.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.494, 42.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.591, 42.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.564, 41.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.471, 41.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.396, 41.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.749, 41.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.764, 42.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.837, 41.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.463, 42.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.432, 41.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.759, 41.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.495, 41.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.475, 41.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.568, 41.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.716, 41.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.415, 41.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.569, 41.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.42, 41.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.36, 41.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.51, 41.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.809, 41.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.295, 41.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.478, 40.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7, 40.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.958, 39.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.395, 37.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.77, 36.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.997, 37.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.291, 35.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.584, 35.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.77, 35.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.777, 35.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.491, 33.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.01, 32.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.873, 32.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.552, 32.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.423, 32.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.768, 33.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.768, 32.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.875, 32.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.75, 31.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.847, 31.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.489, 30.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.915, 30.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.432, 30.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.639, 30.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81, 28.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.864, 27.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.388, 26.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.28, 26.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.211, 26.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.152, 26.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.134, 26.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.834, 24.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.26, 24.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.246, 23.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.437, 21.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.019, 21.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.732, 20.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.804, 18.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.913, 18.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.467, 18.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.107, 13.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.179, 34.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.105, 34.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.178, 34.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.268, 34.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.299, 34.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.567, 34.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.591, 34.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.617, 34.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.34, 34.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.175, 34.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.575, 34.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.827, 34.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.749, 34.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.173, 34.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.088, 34.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.035, 34.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.895, 34.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.857, 34.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.98, 34.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.855, 34.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.869, 34.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.184, 34.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.709, 34.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.689, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.593, 34.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.435, 34.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.216, 34.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.395, 34.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.419, 34.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.345, 34.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.387, 34.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.409, 34.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.386, 34.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.596, 34.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.759, 34.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.679, 34.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.688, 34.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.799, 34.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.829, 34.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.816, 34.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.711, 34.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.709, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.857, 34.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.805, 34.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.975, 34.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.912, 34.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.607, 34.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7, 34.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.629, 34.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.627, 34.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.608, 34.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.491, 34.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.439, 34.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.588, 34.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.73, 33.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.754, 34.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.776, 34.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.085, 34.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.03, 34.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.32, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.071, 34.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.213, 34.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.156, 34.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.942, 34.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.799, 34.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.413, 34.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.361, 34.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.394, 35.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.933, 38.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.248, 38.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.259, 38.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.627, 38.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.324, 38.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.401, 38.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.025, 39.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.863, 39.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.91, 39.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.929, 39.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.929, 39.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.908, 39.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.573, 40.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.337, 40.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.287, 40.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.073, 39.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.042, 39.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.273, 39.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.281, 40.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.141, 40.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.219, 39.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.106, 39.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.08, 39.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.16, 39.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.918, 39.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.896, 39.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.873, 39.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.831, 39.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.679, 38.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.79, 38.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.441, 38.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.559, 38.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.55, 38.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.534, 38.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.588, 38.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.599, 38.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.599, 38.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.552, 38.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.57, 38.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.499, 38.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.645, 38.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.63, 38.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.616, 38.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.32, 38.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.427, 37.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.424, 37.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.373, 37.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.263, 37.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.416, 37.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.285, 37.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.428, 38.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.463, 38.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.427, 38.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.462, 38.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.327, 38.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.38, 38.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.42, 38.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.994, 37.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.416, 38.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.348, 37.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.317, 37.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.329, 37.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.763, 37.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.356, 38.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.399, 38.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.215, 38.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.389, 38.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.382, 38.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.488, 38.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.528, 38.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.938, 39.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.918, 39.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.927, 39.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.727, 39.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.026, 39.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.879, 39.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.979, 39.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.943, 39.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.917, 39.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.605, 38.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.825, 39.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.131, 38.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.809, 39.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.019, 39.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.534, 40.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.116, 40.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.604, 40.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.677, 40.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.444, 41.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.49, 41.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.302, 41.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.203, 41.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.483, 41.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.461, 41.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.445, 41.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.464, 41.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.491, 41.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.497, 41.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.272, 41.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.899, 41.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.448, 41.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.208, 41.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.32, 41.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.321, 41.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.536, 41.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.363, 41.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.938, 41.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.296, 41.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.263, 41.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.278, 41.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.384, 41.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.412, 40.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.354, 41.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.562, 42.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.573, 42.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.437, 41.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.249, 41.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.753, 41.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.376, 41.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.048, 44.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.927, 44.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.97, 44.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.946, 44.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.714, 44.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.565, 44.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.001, 44.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.769, 44.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.256, 43.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.079, 44.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.603, 44.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.59, 44.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.518, 44.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.472, 45.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.086, 45.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.023, 45.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.551, 45.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.313, 45.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.942, 43.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.203, 41.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.884, 41.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.091, 38.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.204, 38.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.516, 38.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.342, 38.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.58, 38.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.625, 38.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.195, 38.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.077, 38.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.452, 38.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3, 38.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.454, 38.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.379, 38.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.438, 38.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.252, 38.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.564, 38.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.512, 38.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.177, 38.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.327, 38.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.207, 38.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.401, 38.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.359, 38.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.464, 38.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.398, 38.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.126, 38.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.379, 38.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.003, 37.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.38, 37.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.607, 38.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.898, 38.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.108, 37.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.716, 38.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.861, 38.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.079, 37.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67, 34.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.495, 32.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.161, 31.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.145, 31.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.064, 32.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.135, 32.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.116, 31.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1, 32.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.953, 32.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.055, 31.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.004, 32.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.035, 32.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.342, 32.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.825, 31.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.813, 31.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.801, 31.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.041, 31.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.762, 31.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.735, 31.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.831, 31.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.96, 31.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.955, 31.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.88, 31.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.864, 31.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.787, 31.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6, 31.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.573, 31.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.746, 31.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.025, 32.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.061, 32.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28, 32.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.271, 32.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.234, 32.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.024, 32.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.146, 32.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.174, 32.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.939, 32.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.934, 31.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.516, 30.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.386, 26.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.176, 23.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.08, 23.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.057, 23.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.961, 24.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.92, 25.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.506, 26.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.675, 27.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.208, 27.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.762, 28.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.747, 28.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.697, 28.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.592, 28.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.638, 28.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.655, 28.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.235, 27.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.628, 27.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.755, 27.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.453, 27.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.438, 27.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.53, 27.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.069, 27.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.901, 27.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.147, 27.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.122, 37.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.773, 37.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.141, 37.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.606, 37.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.355, 37.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.387, 37.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.865, 37.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.164, 37.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.492, 38.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.243, 38.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.952, 38.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.911, 38.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.157, 39.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.91, 39.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.888, 39.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.94, 39.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.984, 39.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.345, 39.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.196, 39.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.882, 39.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.944, 39.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.916, 39.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.258, 37.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.052, 37.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.456, 37.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.163, 37.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.301, 37.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.987, 37.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.068, 37.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.933, 37.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.981, 37.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.972, 37.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.321, 37.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.34, 38.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.325, 38.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.277, 38.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.378, 38.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.28, 38.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.342, 38.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.29, 38.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.304, 38.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.117, 38.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.394, 38.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.046, 37.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.112, 37.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.946, 37.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.267, 36.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.781, 36.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.291, 36.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.486, 35.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.941, 36.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.124, 36.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.039, 36.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.085, 36.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.444, 36.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.693, 36.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.753, 36.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.681, 36.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.481, 36.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.487, 36.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.546, 36.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.673, 36.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.723, 37.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.128, 37.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.424, 37.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.935, 36.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.857, 36.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.788, 36.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.78, 36.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.769, 36.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.736, 36.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.408, 36.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.402, 36.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.37, 36.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.446, 35.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.948, 36.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.169, 36.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.166, 36.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.208, 36.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.291, 35.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.346, 35.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.746, 35.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.662, 35.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.604, 35.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.261, 35.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.059, 35.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.125, 35.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.011, 34.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.963, 34.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.847, 34.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8, 34.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.849, 34.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.77, 34.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.639, 34.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.494, 34.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.688, 34.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.406, 34.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.337, 34.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.364, 34.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.69, 34.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.264, 34.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.739, 33.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.574, 34.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.559, 34.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.767, 34.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.637, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.228, 33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.457, 33.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.361, 33.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.737, 34.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.833, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.936, 33.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.902, 33.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.917, 33.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.896, 33.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.771, 33.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.737, 33.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.509, 33.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.703, 33.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.67, 33.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.629, 33.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.577, 33.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.553, 33.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.477, 33.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.528, 33.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.505, 33.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.203, 33.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.161, 33.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.163, 33.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.126, 33.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.052, 33.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.933, 33.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.263, 37.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.153, 37.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.159, 37.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.253, 37.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.201, 37.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.292, 37.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.198, 37.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.308, 37.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.237, 37.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.455, 37.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.161, 37.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.295, 37.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.315, 37.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.485, 37.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.492, 38.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5, 37.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.612, 38.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.353, 37.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.471, 38.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.414, 38.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.409, 38.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.359, 38.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.352, 37.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.385, 38.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.383, 38.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.396, 38.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.387, 38.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.317, 38.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.36, 38.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.342, 38.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.432, 38.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.392, 38.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.434, 38.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.09, 38.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.314, 38.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.518, 38.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.307, 38.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.213, 38.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.068, 38.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.224, 38.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.191, 38.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.197, 38.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.293, 38.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.26, 38.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.237, 38.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.193, 37.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.242, 38.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.259, 38.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.22, 38.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.284, 38.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.228, 38.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.225, 38.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.341, 38.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.752, 38.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.309, 38.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.25, 37.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.342, 38.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.302, 38.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.316, 38.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.34, 38.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.285, 38.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.327, 38.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.385, 38.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.247, 38.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.267, 38.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.272, 38.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.294, 38.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.416, 38.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.343, 38.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.439, 38.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.321, 38.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.274, 38.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.371, 38.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.301, 38.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.374, 38.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.438, 38.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.308, 38.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.409, 38.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.294, 38.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.228, 38.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.26, 38.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.323, 38.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.374, 38.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.437, 38.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.398, 38.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.469, 38.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.419, 38.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.358, 38.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.41, 38.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.54, 38.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.533, 38.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.451, 38.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.288, 38.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.413, 38.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.336, 38.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.385, 38.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.271, 38.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.405, 38.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.429, 38.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.42, 38.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.439, 38.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.583, 38.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.557, 38.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.472, 38.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.648, 38.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.61, 38.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.714, 38.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.651, 38.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.743, 38.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.745, 38.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.83, 38.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.721, 38.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.03, 39.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.06, 39.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.014, 39.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.954, 39.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.903, 39.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.178, 40.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.471, 40.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.229, 41.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.369, 41.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.468, 41.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.287, 41.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.43, 41.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.438, 41.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.419, 41.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.468, 41.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.497, 41.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.522, 41.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.644, 41.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.411, 42.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.617, 42.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.628, 42.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.842, 42.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.681, 43.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.729, 43.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.387, 43.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.091, 43.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.295, 43.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.536, 43.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.495, 43.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.501, 43.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.511, 43.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.502, 43.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.536, 43.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.458, 43.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.511, 43.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.481, 43.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.555, 43.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.467, 43.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.451, 43.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.503, 43.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.738, 43.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.567, 43.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.516, 43.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.575, 43.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.569, 43.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.631, 43.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.589, 43.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.53, 43.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.618, 43.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.609, 43.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.628, 43.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.765, 43.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.654, 43.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.785, 43.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.687, 43.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.739, 43.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.86, 42.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.736, 42.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.797, 43.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.804, 43.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.901, 42.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.841, 43.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8, 43.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.674, 43.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.456, 43.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.672, 43.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.819, 43.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8, 43.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.79, 43.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.28, 43.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.979, 42.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.971, 43.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.328, 43.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.156, 42.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.774, 43.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.738, 43.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.826, 43.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.656, 43.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.294, 42.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.901, 43.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.588, 43.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.606, 43.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.682, 45.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.169, 46.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.287, 46.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.199, 46.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.596, 46.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.523, 47.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.61, 48.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.066, 48.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.104, 48.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.385, 48.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.341, 48.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.825, 49.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.469, 49.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.179, 49.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.964, 49.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.955, 49.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.909, 49.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.815, 49.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.828, 49.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.458, 49.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.424, 49.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.361, 49.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.304, 48.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.931, 48.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.365, 49.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.145, 48.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.916, 48.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.923, 48.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.441, 48.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.013, 47.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.843, 47.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.204, 45.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.276, 45.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.07, 45.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.22, 45.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.364, 45.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.315, 45.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.102, 45.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.325, 45.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.148, 45.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.231, 45.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.076, 43.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.224, 44.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.218, 44.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.642, 44.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.635, 43.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.641, 43.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.548, 43.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.608, 43.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.639, 43.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.761, 44.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.603, 43.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.237, 43.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.596, 43.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.365, 44.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.639, 43.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.11, 44.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.287, 43.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.251, 44.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.206, 34.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.241, 34.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.303, 34.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.732, 34.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.502, 34.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.48, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.338, 34.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.675, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.493, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.584, 34.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.438, 34.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.445, 34.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.559, 34.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.165, 34.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.503, 34.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.545, 34.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.709, 34.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.231, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.396, 34.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.348, 34.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.276, 34.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.243, 34.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.247, 34.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.352, 34.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.44, 34.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.391, 34.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.278, 34.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.471, 34.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.327, 34.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.499, 34.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.318, 33.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.569, 34.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.611, 34.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.362, 34.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.004, 35.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.907, 35.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.259, 35.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.544, 35.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.941, 36.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.017, 35.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.143, 36.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.163, 35.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.203, 35.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.063, 35.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.879, 35.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.992, 36.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.967, 35.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.959, 36.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.947, 36.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.969, 35.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.953, 36.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.969, 36.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.061, 36.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.51, 37.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.69, 37.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.917, 37.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.033, 37.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.536, 38.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.311, 37.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.491, 37.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.414, 37.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.317, 37.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.345, 37.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.343, 37.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.051, 37.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.241, 37.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.383, 37.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.527, 37.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.259, 38.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.319, 38.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.537, 38.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.489, 38.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.514, 38.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.356, 38.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.455, 37.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.427, 37.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.728, 37.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.891, 37.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.897, 37.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.826, 37.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.834, 37.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.995, 37.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.024, 37.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.959, 37.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.998, 37.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.878, 37.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.172, 37.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.047, 37.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.66, 37.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.316, 38.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.452, 38.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.557, 38.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.451, 37.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.508, 38.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.405, 38.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.379, 38.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.506, 38.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.504, 38.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.402, 38.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.417, 37.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.329, 37.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.358, 37.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.387, 37.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.503, 37.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.05, 37.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.068, 37.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.97, 37.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.557, 36.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.216, 36.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.468, 35.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.364, 38.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.499, 35.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.235, 35.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.711, 35.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.805, 35.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.719, 35.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.465, 35.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.725, 35.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.289, 35.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.544, 35.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.745, 35.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.634, 35.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.842, 35.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.941, 35.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.027, 35.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.072, 35.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.238, 35.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.216, 35.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.379, 35.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.185, 36.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.571, 38.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.504, 38.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.35, 38.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.379, 38.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.34, 38.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.417, 38.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.273, 38.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.65, 38.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.797, 38.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.881, 38.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.877, 39.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.767, 39.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.89, 39.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.95, 39.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.907, 39.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.961, 39.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.463, 40.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.584, 40.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.616, 40.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.484, 40.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.359, 40.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.593, 40.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.58, 40.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.555, 40.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.74, 40.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.563, 40.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.471, 40.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.427, 40.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.441, 40.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.615, 40.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.516, 40.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.309, 40.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.518, 40.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.522, 40.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.47, 40.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.624, 40.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.462, 40.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.44, 40.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.386, 40.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.464, 40.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.486, 40.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.616, 40.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.434, 40.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.349, 40.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.458, 40.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.477, 40.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.463, 40.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.508, 40.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.457, 40.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.454, 40.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.479, 40.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.44, 40.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.548, 40.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.508, 40.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.69, 40.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.689, 40.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.965, 40.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.634, 40.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.621, 40.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.498, 40.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.333, 40.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.243, 40.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.291, 39.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.351, 40.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.531, 40.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.821, 40.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.507, 40.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.854, 40.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.435, 40.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.432, 40.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.417, 40.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.603, 40.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.417, 40.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.357, 40.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.754, 40.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.365, 40.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.464, 40.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.479, 40.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.636, 40.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.548, 40.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.425, 40.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.449, 40.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.415, 40.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.491, 40.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.468, 40.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.386, 40.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.576, 40.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.842, 40.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.422, 40.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.428, 40.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.303, 40.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.271, 40.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.395, 40.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.397, 40.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.458, 40.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.363, 40.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.472, 40.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.684, 40.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.406, 40.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.162, 40.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.113, 39.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.193, 39.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.971, 39.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.173, 39.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.194, 40.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.294, 40.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.274, 40.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.228, 34.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.397, 34.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.061, 34.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.877, 34.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.939, 34.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3, 34.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.547, 34.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.398, 34.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.638, 34.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.831, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.678, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.523, 34.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.066, 37.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.405, 36.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.914, 37.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.606, 36.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.194, 35.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.318, 34.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.35, 34.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.975, 34.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.817, 33.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.846, 33.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.254, 33.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.231, 33.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.04, 33.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.239, 33.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.28, 33.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.329, 33.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.336, 33.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.767, 33.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.707, 33.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.618, 34.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.623, 34.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.669, 34.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.623, 34.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.697, 34.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.538, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.814, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.807, 34.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.674, 34.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.53, 34.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.503, 34.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.986, 34.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.799, 34.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.721, 34.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.911, 34.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.965, 34.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.729, 34.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.073, 34.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.177, 35.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.923, 34.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.941, 34.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.908, 34.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.823, 34.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.208, 34.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.979, 34.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.919, 34.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.03, 34.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.753, 34.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.832, 34.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.534, 34.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.52, 34.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.588, 34.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.41, 34.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.334, 34.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.494, 34.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.565, 34.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.551, 34.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.796, 34.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.999, 34.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.715, 34.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.617, 34.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.466, 34.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.343, 34.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.684, 34.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.053, 34.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.172, 34.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.092, 34.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.825, 33.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.829, 33.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.825, 33.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.899, 33.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.922, 33.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.964, 33.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.086, 33.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.291, 33.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.824, 33.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.595, 33.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.903, 33.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.906, 33.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.018, 33.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.743, 33.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.74, 33.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.732, 33.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.527, 33.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.512, 33.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.601, 33.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.13, 32.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.739, 33.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.721, 33.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.768, 33.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.917, 33.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.131, 33.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.969, 33.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.995, 33.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.03, 33.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.961, 33.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.249, 33.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.132, 33.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.419, 33.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.379, 33.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.502, 33.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.481, 33.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.91, 32.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.819, 32.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.445, 33.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.913, 33.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.952, 33.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.912, 33.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.387, 33.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.45, 33.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.418, 33.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.361, 34.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.687, 34.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.685, 34.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.61, 34.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.489, 34.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.444, 35.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.511, 37.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.761, 37.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.278, 37.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.373, 38.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.501, 38.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.732, 38.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.452, 38.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.548, 38.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.873, 38.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.01, 38.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.007, 38.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.999, 39.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.012, 39.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.962, 39.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.028, 39.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.054, 39.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.03, 39.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.111, 39.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.924, 39.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.116, 39.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.014, 39.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.092, 39.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.621, 40.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.559, 40.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.394, 40.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.585, 40.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.543, 40.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.63, 40.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.589, 40.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.475, 40.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.538, 40.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.707, 40.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.496, 40.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.58, 40.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.83, 40.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.378, 40.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.417, 41.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.424, 41.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.879, 42.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.472, 41.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.277, 41.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.613, 42.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.483, 42.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.557, 42.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.574, 42.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.275, 42.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.519, 42.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5, 42.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.497, 41.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.475, 42.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.438, 42.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.336, 42.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.339, 42.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.635, 41.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.478, 42.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.44, 42.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.549, 42.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.015, 42.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.605, 42.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.636, 42.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.754, 42.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.862, 42.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.704, 42.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.68, 42.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.725, 42.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.494, 42.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.071, 42.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.039, 42.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.769, 42.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.547, 42.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.736, 42.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.729, 42.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.861, 42.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.763, 42.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.663, 42.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.678, 42.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.696, 42.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.433, 42.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.652, 42.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.68, 42.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.833, 42.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.703, 42.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.681, 42.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.096, 42.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.627, 42.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.687, 42.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.687, 42.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.911, 42.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.805, 42.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.91, 42.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.708, 42.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.782, 42.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.599, 42.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.794, 42.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.865, 42.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.669, 43.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.78, 43.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.647, 43.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.733, 43.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.513, 43.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.343, 43.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.586, 43.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.414, 43.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.614, 43.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.921, 43.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.548, 43.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.578, 43.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.451, 43.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.461, 43.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.471, 43.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.622, 43.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.642, 43.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.516, 43.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.567, 43.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.589, 43.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.396, 43.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.562, 43.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.172, 44.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.658, 43.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.581, 43.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.95, 43.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.763, 42.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.73, 42.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.758, 42.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.621, 42.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.684, 42.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.73, 42.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.672, 42.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.46, 42.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.66, 43.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.735, 43.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.821, 43.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.682, 43.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.518, 43.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.626, 43.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.633, 43.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.552, 43.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.482, 43.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.488, 43.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.413, 43.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.45, 43.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.754, 44.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.832, 44.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.615, 44.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.407, 44.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.738, 44.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.045, 43.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.93, 43.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.907, 44.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.001, 43.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.934, 44.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.934, 43.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.753, 43.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.947, 43.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.87, 44.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.824, 44.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.961, 44.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.901, 43.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.893, 43.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.784, 43.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.897, 44.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.137, 43.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.802, 44.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.911, 44.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.04, 44.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.042, 44.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.763, 44.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.654, 43.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.703, 43.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.743, 43.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.74, 43.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.763, 43.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.619, 43.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.48, 43.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.533, 43.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.597, 43.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.495, 43.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.575, 43.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.52, 43.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.735, 43.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.707, 43.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.679, 43.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.597, 43.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.907, 43.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.777, 43.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.728, 43.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.76, 43.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.762, 43.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.703, 43.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.65, 43.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.53, 43.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.554, 43.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.38, 43.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.753, 43.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.769, 43.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.562, 43.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.946, 43.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.895, 43.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.642, 43.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.697, 43.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.557, 40.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.063, 40.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.876, 40.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.856, 38.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.276, 37.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.253, 37.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.088, 35.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.746, 35.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.601, 35.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.73, 37.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.795, 37.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.779, 38.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.957, 39.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.275, 39.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.219, 38.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.698, 36.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.431, 36.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.358, 36.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.528, 35.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.543, 35.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.305, 35.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.05, 33.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.872, 33.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.97, 31.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.287, 31.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.933, 30.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.41, 30.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.823, 27.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.46, 27.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.316, 24.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.661, 22.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.798, 21.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.38, 34.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.866, 34.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.938, 34.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.508, 35.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.61, 35.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.707, 35.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.272, 36.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.095, 36.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.733, 37.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.499, 37.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.672, 37.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.839, 37.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.886, 37.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.712, 37.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.965, 37.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.935, 37.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.865, 37.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.369, 38.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.773, 38.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.524, 38.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.015, 38.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.449, 37.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.433, 37.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.429, 37.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.159, 38.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.292, 37.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.292, 37.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.289, 37.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.664, 38.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.444, 38.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.293, 37.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.105, 37.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.891, 37.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.962, 37.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.992, 37.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.115, 37.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.949, 36.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.051, 34.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.671, 34.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.975, 34.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.26, 35.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.503, 38.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.416, 38.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.544, 37.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.707, 37.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.514, 37.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.774, 38.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.832, 38.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.84, 38.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.622, 38.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.276, 38.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.536, 37.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.613, 38.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.508, 38.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.525, 38.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.327, 38.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.49, 38.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.143, 38.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.531, 38.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.54, 38.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.534, 38.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.461, 38.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.409, 38.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.479, 38.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.422, 37.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.526, 38.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.386, 38.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.361, 38.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.331, 38.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.374, 38.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.241, 38.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.304, 38.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.344, 38.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.605, 38.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.522, 38.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.315, 38.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.408, 38.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.516, 38.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.447, 38.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.282, 38.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.48, 38.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.049, 38.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.51, 38.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.324, 38.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.401, 38.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.382, 38.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.432, 38.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.47, 38.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.493, 38.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.521, 38.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.461, 37.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.432, 37.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.36, 38.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.339, 37.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.501, 38.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.976, 38.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.401, 37.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5, 38.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.39, 38.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.308, 38.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.39, 38.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4, 38.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.329, 38.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.397, 38.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.438, 38.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.347, 38.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.477, 38.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.336, 38.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.506, 38.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.728, 38.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.467, 38.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.444, 38.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.498, 38.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.661, 37.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.384, 37.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.534, 38.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.106, 37.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.519, 38.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.641, 38.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.261, 38.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.096, 37.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.633, 37.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.432, 37.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.471, 37.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.456, 38.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.486, 38.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.418, 38.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.186, 38.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.534, 38.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.466, 38.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.593, 38.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.341, 37.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.475, 38.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.523, 38.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.526, 38.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.464, 38.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.336, 37.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.398, 38.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.267, 38.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.265, 37.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.245, 37.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.319, 37.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.405, 37.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.432, 37.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.501, 37.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.579, 38.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.445, 38.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.434, 37.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.437, 38.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.397, 38.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.15, 37.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.331, 38.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.448, 38.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.398, 37.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.416, 37.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.484, 38.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.364, 38.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.427, 38.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.441, 38.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.361, 38.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.446, 38.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.383, 38.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.589, 38.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.438, 38.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.417, 38.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.347, 37.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.493, 38.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.382, 38.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.239, 38.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.473, 38.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.402, 37.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.577, 38.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.056, 37.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.551, 38.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.306, 38.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.371, 38.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.39, 38.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.54, 37.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.283, 37.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.477, 38.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.374, 38.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.621, 38.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.504, 38.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.81, 38.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.428, 38.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.248, 37.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.486, 38.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.491, 38.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.531, 38.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.414, 38.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.443, 38.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.515, 38.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4, 38.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.392, 38.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.491, 38.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.52, 38.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.514, 38.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.753, 37.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.375, 38.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.379, 38.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.499, 38.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.506, 38.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.408, 38.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.401, 38.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.464, 38.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.273, 38.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.52, 38.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.93, 38.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.455, 38.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.504, 38.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.457, 38.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.318, 38.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.566, 37.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.478, 38.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.276, 38.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.457, 38.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.453, 38.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.225, 38.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.381, 38.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.406, 37.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.426, 37.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.507, 38.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.782, 38.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.576, 38.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.483, 38.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.402, 38.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.487, 38.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.423, 38.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.491, 35.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.016, 29.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.663, 38.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.024, 34.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.147, 34.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.925, 34.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.456, 33.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.322, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.233, 34.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.366, 34.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.45, 34.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.216, 34.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.269, 34.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.209, 34.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.107, 34.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.887, 34.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.297, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.962, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64, 34.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.886, 34.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.942, 34.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.88, 34.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.826, 34.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.817, 34.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.106, 34.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.773, 34.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.845, 34.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.841, 34.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.808, 34.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.784, 34.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.792, 34.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.391, 34.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.93, 34.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.728, 34.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.692, 34.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.558, 34.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.544, 34.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.551, 34.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.598, 34.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.577, 34.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81, 34.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.984, 34.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.723, 34.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.784, 34.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.594, 34.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.723, 34.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.771, 34.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.824, 34.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.785, 34.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.851, 34.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.786, 34.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.626, 34.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.392, 34.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.603, 34.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.488, 33.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.323, 33.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.394, 33.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.448, 33.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.684, 34.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.815, 34.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.595, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.336, 34.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.565, 34.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.519, 34.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.76, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.586, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.575, 34.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.622, 34.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.606, 34.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.519, 34.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.861, 33.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.635, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.73, 34.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.623, 34.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.823, 34.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.183, 34.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.723, 34.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.565, 34.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.514, 34.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5, 34.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.511, 34.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.72, 34.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.589, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.555, 34.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66, 34.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.595, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.534, 34.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.652, 34.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.582, 34.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.724, 34.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.591, 34.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.628, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.675, 34.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.471, 33.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.452, 33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.699, 34.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.562, 34.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.538, 33.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57, 34.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.513, 34.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.486, 33.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.265, 33.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.365, 33.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.632, 34.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.58, 34.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.604, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.647, 34.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.604, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.604, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.604, 34.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.641, 34.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.618, 34.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57, 34.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.602, 34.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.55, 34.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.574, 34.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.242, 34.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.593, 34.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.715, 33.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.488, 34.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.42, 34.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.701, 33.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.828, 33.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57, 34.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.578, 34.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.573, 34.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.565, 34.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.616, 34.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.292, 33.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.537, 34.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.605, 34.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.402, 33.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.563, 34.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.723, 34.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.511, 33.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.595, 34.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.692, 34.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.564, 34.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.623, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.627, 34.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.607, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.58, 34.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.651, 34.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.627, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.498, 34.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.602, 34.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.565, 34.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.187, 36.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.263, 37.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.123, 37.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.319, 37.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.518, 38.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.445, 38.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.784, 38.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.04, 39.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.975, 39.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.56, 40.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.493, 40.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.575, 40.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.576, 40.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.557, 40.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.566, 40.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.638, 40.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.476, 40.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.497, 40.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.382, 40.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.462, 40.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.399, 40.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.381, 40.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.165, 41.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.174, 41.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.615, 41.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.307, 41.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.586, 41.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.531, 42.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.556, 42.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.493, 42.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.505, 42.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.581, 42.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.605, 42.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.458, 43.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.522, 43.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.856, 42.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.394, 42.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.426, 42.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.507, 42.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.215, 41.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.244, 41.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.444, 40.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.524, 40.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.194, 40.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3, 39.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.908, 39.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.947, 39.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.926, 39.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.906, 39.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.19, 38.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.944, 39.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.933, 38.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.887, 39.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.731, 39.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.888, 39.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.893, 39.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.138, 39.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.152, 39.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.438, 40.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.408, 40.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.796, 40.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.512, 40.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.487, 40.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.564, 40.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.58, 40.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.649, 40.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.625, 40.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.668, 40.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.621, 40.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.974, 40.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.645, 40.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.482, 40.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.556, 40.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.405, 40.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.56, 40.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.461, 40.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.481, 40.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.477, 40.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.469, 40.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.624, 40.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.836, 40.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.496, 40.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.503, 40.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.459, 40.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.445, 40.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.514, 40.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.488, 40.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.492, 40.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.472, 40.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.56, 40.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5, 40.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.493, 40.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.456, 40.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.418, 40.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.531, 40.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.461, 40.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.431, 40.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.379, 40.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.423, 40.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.507, 40.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.419, 40.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.423, 40.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.494, 40.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.275, 41.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.236, 41.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.434, 41.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.43, 40.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.374, 40.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.292, 41.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.327, 40.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.414, 40.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.263, 41.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.265, 41.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.274, 41.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.489, 41.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.227, 41.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.347, 41.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.288, 41.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.197, 41.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.413, 40.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.371, 40.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.346, 40.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.797, 41.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.338, 41.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.245, 41.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.285, 41.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.437, 41.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.499, 41.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.562, 41.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.533, 41.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.452, 41.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.454, 41.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.49, 41.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.465, 41.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.495, 42.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.774, 42.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.718, 42.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.636, 42.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.757, 43.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.622, 43.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.595, 43.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.608, 43.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.481, 42.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.772, 42.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.514, 42.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.542, 42.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.497, 42.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.488, 42.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.506, 42.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.499, 42.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.456, 42.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.494, 42.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.56, 42.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.598, 42.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.504, 41.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.462, 40.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.459, 40.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.562, 40.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.602, 40.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.475, 40.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.275, 40.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.307, 40.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.307, 41.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.125, 41.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.197, 41.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.295, 41.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.349, 41.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.125, 41.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.678, 41.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.367, 41.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.234, 41.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.373, 41.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.546, 41.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.475, 41.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.263, 41.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.223, 41.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.275, 41.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.417, 41.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.342, 40.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.356, 41.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.29, 41.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.33, 41.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.196, 41.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.394, 40.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.407, 40.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.419, 41.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.215, 40.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.765, 40.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.917, 40.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.438, 40.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.025, 39.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.886, 39.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.94, 39.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.931, 39.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.913, 39.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.979, 39.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.924, 39.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.879, 39.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.944, 39.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.899, 39.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.988, 39.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.86, 39.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.952, 39.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.945, 39.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.093, 39.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.174, 39.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.106, 39.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.113, 40.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2, 39.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.138, 39.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.272, 39.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.112, 39.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.188, 39.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.131, 40.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.236, 40.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.393, 40.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.516, 40.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.371, 40.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.374, 40.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.609, 40.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.985, 39.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.853, 35.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.06, 33.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.566, 33.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.444, 32.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.085, 32.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73, 31.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.605, 30.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.105, 29.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.143, 29.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.155, 28.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.344, 28.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.674, 28.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.218, 28.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0, 36.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.677, 36.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.535, 35.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.96, 35.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.809, 36.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.751, 36.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.515, 36.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.698, 36.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.537, 36.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.583, 36.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.114, 36.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.996, 36.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.972, 36.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.012, 37.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.48, 38.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.853, 39.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.756, 39.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.974, 39.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.933, 39.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.952, 39.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.955, 39.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.912, 39.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.945, 39.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.837, 39.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.254, 39.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.379, 40.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.38, 40.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.298, 40.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.351, 40.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.296, 40.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.554, 40.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.863, 39.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.015, 38.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.851, 37.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9, 36.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.74, 35.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.747, 34.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.875, 34.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.403, 33.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.489, 34.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.397, 34.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.349, 36.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.31, 37.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.882, 37.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.009, 37.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.007, 37.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.361, 37.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.427, 37.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.378, 38.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.581, 38.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.771, 36.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.363, 37.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.822, 36.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.765, 35.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.276, 34.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.39, 34.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.181, 34.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.682, 34.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.243, 33.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.217, 34.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.136, 34.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.207, 34.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.165, 34.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.237, 34.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.477, 34.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.099, 33.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.055, 34.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.295, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.299, 34.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.35, 34.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.193, 34.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.437, 33.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.805, 34.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.233, 33.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.342, 33.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.089, 33.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.264, 33.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.177, 33.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.464, 33.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.387, 33.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.049, 33.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.006, 34.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.02, 34.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.106, 34.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.387, 34.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.964, 34.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.187, 34.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.299, 35.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.366, 35.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.072, 36.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.66, 36.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.313, 36.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.295, 36.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.589, 36.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.055, 36.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.996, 36.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.927, 36.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.036, 36.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.915, 35.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.251, 35.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.503, 35.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.315, 35.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.348, 34.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.443, 34.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.016, 34.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.227, 33.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.074, 34.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.195, 34.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.815, 34.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.98, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.956, 34.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.961, 34.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.605, 34.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.81, 34.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.817, 34.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.473, 34.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.387, 34.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.554, 34.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.435, 34.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.568, 35.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.326, 34.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.616, 35.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.606, 35.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.656, 35.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.697, 34.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.334, 35.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.662, 35.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.685, 35.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.318, 35.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.544, 35.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.157, 36.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.453, 35.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.348, 35.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.231, 35.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.345, 34.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.617, 35.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.844, 35.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.847, 35.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.015, 35.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.418, 35.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.293, 35.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.379, 35.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.56, 35.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.013, 34.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.844, 33.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.911, 32.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.84, 32.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.533, 33.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.169, 33.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.073, 34.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.629, 34.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.131, 34.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.671, 34.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.975, 34.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.275, 34.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.375, 34.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.629, 34.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.057, 35.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.563, 35.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.653, 35.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.31, 35.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.307, 35.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.931, 35.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.611, 35.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.608, 35.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.692, 35.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.493, 35.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.366, 35.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.454, 35.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.329, 34.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.486, 34.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.438, 34.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.568, 34.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.899, 34.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.73, 34.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.149, 35.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.133, 35.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.21, 35.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.744, 35.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.606, 35.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.64, 35.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.595, 35.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.53, 35.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.452, 35.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.467, 35.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.444, 35.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.168, 35.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.977, 36.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.276, 36.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.374, 36.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.475, 36.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.649, 37.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.02, 37.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.137, 37.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.198, 39.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.176, 39.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.148, 40.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.017, 39.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.059, 39.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.347, 39.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.088, 39.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.996, 39.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.986, 39.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.192, 39.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.83, 38.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.366, 37.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.053, 37.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.042, 37.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.098, 37.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.997, 37.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.378, 37.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.354, 37.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.081, 35.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.738, 35.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.328, 35.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.759, 34.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.927, 34.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.626, 34.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.674, 34.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.092, 35.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.691, 34.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.285, 34.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.483, 34.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.818, 35.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3, 34.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.295, 34.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.259, 34.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.16, 34.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.09, 34.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.218, 34.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.193, 34.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.222, 34.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.439, 34.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.107, 34.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1, 34.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.992, 34.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.363, 34.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.033, 34.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.563, 34.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.805, 34.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0, 34.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.728, 34.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.117, 34.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.363, 34.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.261, 34.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.225, 34.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.314, 34.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.24, 34.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.223, 34.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.185, 34.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.503, 34.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.174, 34.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.223, 34.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.209, 34.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.105, 34.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.206, 34.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.037, 34.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.986, 34.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.242, 34.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.362, 34.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.219, 34.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.285, 34.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.245, 34.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.176, 34.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.254, 34.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.271, 34.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.219, 34.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.306, 34.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.075, 34.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.932, 34.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.24, 34.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.086, 34.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.142, 34.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.986, 34.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.367, 34.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.753, 34.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.682, 34.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.574, 34.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.267, 34.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.581, 34.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.622, 34.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.685, 34.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.864, 34.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.123, 35.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.003, 35.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.032, 36.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.947, 36.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.406, 36.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.074, 36.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.076, 36.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.823, 35.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.147, 35.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.032, 34.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.036, 34.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.791, 34.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.501, 34.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.542, 33.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.026, 34.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.145, 34.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.191, 34.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.176, 35.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.52, 35.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.619, 35.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.672, 35.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.921, 36.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.985, 36.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.035, 36.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.049, 36.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.126, 36.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.013, 36.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.043, 36.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.768, 35.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24, 35.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.271, 35.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.203, 34.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.077, 34.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.138, 34.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.994, 33.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.411, 34.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.376, 34.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.526, 34.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.543, 35.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.044, 34.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.083, 35.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.152, 35.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.067, 35.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.091, 35.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.884, 35.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.839, 35.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.862, 35.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.62, 35.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.799, 35.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.831, 35.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.822, 35.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.929, 34.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.746, 34.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.894, 34.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.789, 34.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.548, 34.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.547, 34.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.234, 34.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.321, 35.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.144, 34.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.864, 34.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.514, 34.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.439, 34.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.498, 34.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.462, 34.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.488, 34.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.394, 34.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.597, 34.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.554, 34.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.34, 33.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.248, 34.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.508, 34.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.516, 34.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.457, 34.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.491, 34.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.339, 34.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.326, 34.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.485, 34.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.405, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.564, 34.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.401, 34.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.433, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.505, 33.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.62, 33.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.578, 33.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.69, 34.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.763, 34.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.687, 34.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.809, 34.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.74, 34.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.747, 34.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.762, 34.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.702, 34.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.633, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.733, 34.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.919, 34.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.652, 34.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.589, 34.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.675, 34.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.794, 33.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.549, 33.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.716, 33.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.714, 33.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.755, 33.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.689, 33.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.658, 33.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.775, 33.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.882, 33.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.724, 33.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.744, 33.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.933, 33.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.915, 33.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.938, 34.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.85, 34.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.769, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.791, 34.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.852, 34.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.826, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.86, 34.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.781, 34.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.856, 34.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.865, 34.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.879, 34.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.936, 34.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.774, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.81, 34.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.74, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.817, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.447, 34.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.58, 33.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.922, 31.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.862, 31.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.074, 30.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.048, 29.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.373, 28.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.933, 28.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.717, 27.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.764, 27.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.344, 26.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.072, 25.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.006, 25.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.25, 24.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.149, 24.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.388, 23.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.876, 20.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.34, 20.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.172, 20.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.75, 20.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.828, 20.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.6, 19.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.495, 18.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.903, 16.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.451, 15.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.132, 15.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.033, 14.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.821, 14.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.624, 12.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.715, 11.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.495, 10.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.219, 10.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.089, 10.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.253, 9.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.334, 10.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.078, 9.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.246, 9.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.973, 9.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.05, 9.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.131, 9.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.358, 10.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.358, 10.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.241, 9.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.218, 9.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.371, 10.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.596, 9.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.817, 9.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.978, 9.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.916, 9.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.938, 9.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.241, 9.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.199, 9.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.908, 9.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.502, 10.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.561, 10.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.558, 10.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.755, 9.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.604, 10.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.704, 9.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.897, 9.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.923, 9.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.781, 9.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.732, 9.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.75, 9.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.957, 9.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.937, 9.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.009, 9.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.604, 8.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.717, 8.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.815, 8.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.996, 8.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.542, 8.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.921, 8.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.773, 8.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.139, 8.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.388, 8.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.561, 9.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.125, 9.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.737, 9.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.795, 8.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.741, 8.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.638, 8.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.437, 9.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.017, 8.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.683, 8.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.318, 8.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.919, 8.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.795, 8.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.463, 8.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.333, 8.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.486, 8.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.359, 8.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.097, 8.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.352, 8.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.095, 8.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.989, 8.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.257, 8.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.337, 8.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.246, 8.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.381, 8.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.494, 8.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.355, 8.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.467, 8.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.648, 8.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.891, 8.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.798, 8.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.465, 8.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.69, 8.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.597, 8.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.329, 8.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.525, 8.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.394, 8.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.765, 9.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.622, 9.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.654, 9.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.937, 9.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.252, 9.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.225, 9.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.762, 9.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.203, 9.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.399, 9.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.266, 11.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.314, 11.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.269, 11.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.319, 11.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.368, 11.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.264, 11.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.322, 11.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.494, 11.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.277, 11.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.444, 12.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.183, 11.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.385, 11.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.997, 11.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.509, 11.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.378, 11.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.198, 11.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.431, 11.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.367, 13.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.904, 13.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.423, 14.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.608, 15.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.908, 15.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.45, 16.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.934, 21.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.965, 21.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.121, 24.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.587, 24.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.347, 25.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.61, 25.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.011, 25.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.393, 28.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.005, 26.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.172, 23.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.109, 26.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.919, 36.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.482, 37.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.791, 37.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.367, 38.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.013, 38.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.285, 37.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.324, 37.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.929, 36.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.137, 36.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.199, 36.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.278, 38.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.369, 38.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.888, 37.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.852, 37.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.046, 36.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.372, 36.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.693, 36.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.425, 36.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.95, 36.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.831, 36.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.633, 36.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.388, 36.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.547, 36.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.564, 36.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4, 36.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.008, 36.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.016, 36.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.265, 36.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.235, 36.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.169, 37.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.169, 37.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.226, 37.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.777, 37.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.976, 37.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.057, 37.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.054, 37.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.969, 37.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.843, 37.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.312, 37.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.439, 37.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.257, 38.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.606, 38.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.637, 38.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.988, 38.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.588, 38.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.471, 38.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.433, 38.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.569, 37.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.256, 37.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.623, 37.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.84, 35.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.775, 35.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.997, 35.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.491, 35.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.356, 34.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.383, 34.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.149, 33.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.961, 33.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.517, 33.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.156, 33.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.154, 33.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.083, 33.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.627, 33.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.194, 33.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.378, 33.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.684, 34.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.279, 34.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.891, 34.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.124, 35.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.436, 35.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.329, 35.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.497, 35.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.963, 36.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.969, 36.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.304, 36.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.498, 37.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.626, 37.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.972, 37.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.785, 38.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.706, 38.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.769, 38.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.109, 39.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.094, 39.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.246, 39.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.122, 40.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.503, 40.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.119, 40.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.214, 41.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.353, 41.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.248, 41.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.332, 41.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.263, 41.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.393, 41.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.443, 41.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.424, 41.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.34, 41.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.796, 43.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.098, 43.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.179, 44.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.781, 44.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.067, 44.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.342, 44.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.136, 44.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.232, 45.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.239, 45.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.396, 43.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.478, 42.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.582, 42.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.638, 42.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.194, 41.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.477, 42.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.572, 42.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.443, 41.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.317, 41.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.384, 41.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.847, 40.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.491, 40.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.511, 40.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.685, 40.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.541, 40.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.421, 40.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.983, 36.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.003, 36.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.008, 36.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.019, 36.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.005, 36.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.355, 36.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.06, 36.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.971, 36.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.949, 36.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.043, 36.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.926, 36.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.913, 35.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.879, 35.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.923, 35.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.921, 35.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.878, 35.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.456, 36.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.051, 35.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.973, 35.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.966, 35.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.816, 35.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.543, 35.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.797, 36.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.842, 35.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.429, 34.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.301, 34.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.676, 34.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.953, 33.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.896, 33.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.678, 33.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.822, 33.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.079, 32.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.751, 31.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.608, 31.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.46, 31.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.634, 31.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.392, 31.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.458, 31.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.583, 31.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.565, 31.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.655, 31.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.704, 31.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.738, 31.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.736, 31.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.628, 31.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.594, 31.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.63, 31.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.734, 31.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.782, 31.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.743, 31.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.669, 31.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.819, 31.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.883, 31.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.654, 31.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.763, 31.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.798, 31.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.764, 31.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.811, 31.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.823, 31.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.907, 31.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.796, 31.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.947, 31.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.805, 31.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.652, 31.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.755, 31.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.711, 31.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.759, 31.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.752, 31.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.743, 31.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.716, 31.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.541, 31.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.821, 31.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.786, 31.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.744, 31.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.624, 31.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.725, 31.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.848, 31.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.777, 31.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.825, 31.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.806, 31.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.789, 31.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.783, 31.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.831, 31.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.761, 31.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.787, 31.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.787, 31.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.772, 31.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.74, 31.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.871, 31.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.803, 31.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.841, 31.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.721, 31.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.809, 31.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.903, 31.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.718, 31.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.646, 31.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.008, 31.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.774, 31.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.796, 31.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.795, 31.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.749, 31.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.789, 31.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.708, 31.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.782, 31.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.793, 31.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.923, 31.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.68, 31.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.746, 31.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.738, 31.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.755, 31.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.753, 31.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.747, 31.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.833, 31.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.723, 31.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.766, 31.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.978, 31.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.815, 31.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.765, 31.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.951, 31.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.738, 31.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.789, 31.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.78, 31.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.784, 31.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.839, 31.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.804, 31.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.75, 31.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.786, 31.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.978, 31.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.829, 31.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.852, 31.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.93, 31.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.909, 31.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.069, 31.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.792, 31.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.723, 31.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.77, 31.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.857, 31.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.798, 31.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.747, 31.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.738, 31.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.814, 31.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.772, 31.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.837, 31.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8, 31.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.771, 31.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.882, 31.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.79, 31.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.812, 31.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.67, 31.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.981, 31.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.886, 31.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.755, 31.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.805, 31.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.815, 31.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.07, 31.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.776, 31.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.84, 31.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.555, 31.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.914, 31.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.769, 31.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.743, 31.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.674, 31.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.754, 31.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.652, 31.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.53, 31.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.746, 31.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.623, 31.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.59, 31.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.409, 31.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.672, 31.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.643, 31.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.613, 31.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.673, 31.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.563, 31.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.625, 31.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.667, 31.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.726, 31.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.593, 31.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.619, 31.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.766, 31.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.82, 31.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.92, 31.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.924, 31.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.861, 31.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.858, 31.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.863, 31.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.993, 31.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.831, 31.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.869, 31.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.943, 31.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.093, 31.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.911, 31.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.909, 31.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.84, 31.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.802, 31.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.769, 31.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.891, 31.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.942, 31.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.841, 31.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.799, 31.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.815, 31.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.685, 31.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.715, 31.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.828, 31.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.809, 31.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.812, 31.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.813, 31.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.725, 31.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.808, 31.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.873, 31.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.674, 31.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.782, 31.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.868, 31.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.806, 31.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.94, 31.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.827, 31.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.128, 31.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.83, 31.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.892, 31.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.841, 31.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.941, 31.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.859, 31.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.858, 31.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.743, 31.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.877, 31.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.014, 31.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.928, 31.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.827, 31.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.857, 31.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.842, 31.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.843, 31.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.928, 31.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.826, 31.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.995, 31.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.51, 31.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.553, 31.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69, 31.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.062, 32.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.721, 32.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.489, 34.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.324, 34.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.375, 34.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.698, 34.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.692, 35.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.69, 39.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.915, 39.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.438, 39.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.198, 35.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.244, 33.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.068, 33.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.101, 33.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.74, 31.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.584, 30.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.597, 30.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.477, 30.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.387, 29.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.885, 27.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.91, 24.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.833, 24.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.742, 23.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.692, 23.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.156, 20.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.053, 20.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.78, 19.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.084, 20.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.449, 19.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.379, 19.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.906, 17.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.901, 16.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.745, 15.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.709, 15.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.63, 15.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.408, 14.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.12, 13.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.352, 11.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.182, 6.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.205, 6.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.072, 7.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.087, 7.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.487, 8.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.232, 8.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.297, 9.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.52, 9.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.512, 9.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.167, 9.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.378, 37.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.234, 36.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.27, 36.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.356, 36.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.973, 36.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.151, 36.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.31, 36.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.122, 35.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.892, 35.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.046, 35.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.803, 35.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.98, 34.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.02, 34.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.761, 34.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.712, 34.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.513, 34.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.797, 34.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.26, 35.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.742, 34.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.29, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.907, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.385, 34.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.194, 33.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.542, 31.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.822, 29.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.58, 29.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.697, 29.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.833, 36.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.113, 36.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.065, 36.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.977, 36.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.942, 36.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.04, 35.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.452, 33.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.916, 33.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.273, 33.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.93, 34.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.963, 34.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.163, 36.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.126, 36.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.99, 36.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.879, 35.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.658, 36.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.074, 35.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.707, 35.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.123, 35.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.117, 35.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.91, 35.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.47, 33.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.489, 33.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.039, 33.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.423, 33.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.406, 33.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.458, 33.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.532, 33.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.551, 33.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.63, 33.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.38, 33.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.531, 33.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.38, 33.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.372, 33.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.287, 34.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.335, 33.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.423, 33.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.456, 33.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.406, 33.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.299, 33.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.298, 33.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.283, 33.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.323, 33.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.26, 33.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.35, 33.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.544, 33.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.839, 33.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.941, 33.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.443, 33.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.858, 33.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.028, 33.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.318, 33.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.292, 33.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.631, 33.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.801, 33.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.712, 32.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.605, 33.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.762, 32.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.08, 33.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.681, 33.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.172, 32.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.399, 32.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.588, 32.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.992, 32.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.985, 32.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.141, 32.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.925, 32.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.995, 32.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.901, 32.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.121, 32.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.939, 32.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.102, 32.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.805, 32.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.444, 32.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.91, 36.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.497, 37.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.975, 37.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.562, 35.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.637, 35.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.609, 35.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.621, 35.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.694, 35.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.751, 35.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.546, 35.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.653, 35.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.813, 35.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.921, 35.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.516, 35.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.439, 35.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.508, 35.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.028, 35.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.106, 35.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.962, 35.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.111, 35.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.501, 35.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.809, 36.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.832, 36.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.647, 36.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.85, 36.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.996, 36.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.815, 35.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.623, 35.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.178, 35.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.719, 35.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.894, 35.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.769, 35.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.71, 35.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.788, 35.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.678, 35.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.391, 35.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.477, 35.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.589, 34.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.564, 35.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.534, 35.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.521, 35.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.286, 34.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.181, 34.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.507, 34.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.393, 34.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.031, 34.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.078, 34.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.897, 35.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.359, 35.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.375, 35.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.334, 35.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.212, 36.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.143, 36.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.899, 36.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.58, 36.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.344, 36.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.381, 36.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.963, 36.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.366, 36.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.561, 35.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.903, 35.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76, 36.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.036, 36.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.902, 35.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.883, 35.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.406, 36.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.152, 35.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.199, 36.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.118, 36.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.042, 37.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.12, 37.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.665, 36.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.55, 36.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.72, 36.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32, 36.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.475, 36.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6, 37.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.773, 37.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.979, 37.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.693, 38.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.032, 38.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.97, 39.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.785, 39.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.187, 40.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.207, 40.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.584, 40.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.422, 40.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.415, 40.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.354, 40.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.335, 40.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.295, 40.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.337, 40.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.285, 40.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.441, 40.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.66, 40.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.772, 40.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.839, 40.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.967, 40.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.849, 40.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.309, 40.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.38, 40.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.785, 40.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.717, 40.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.541, 41.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.641, 41.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.596, 41.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.535, 41.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.325, 41.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.263, 41.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.278, 41.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.14, 41.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.264, 41.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.405, 41.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.126, 41.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.248, 40.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.196, 40.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.901, 40.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.473, 40.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.339, 41.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.482, 41.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.586, 43.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.638, 42.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.835, 41.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.683, 41.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.325, 40.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.472, 40.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.375, 41.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.381, 40.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.473, 40.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.531, 40.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.464, 40.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.522, 40.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.443, 40.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.57, 40.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.398, 40.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.083, 40.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.253, 41.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.458, 41.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.346, 41.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.612, 41.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.297, 40.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.389, 40.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4, 40.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.475, 40.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.422, 40.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.379, 40.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.412, 40.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.627, 40.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.386, 40.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.352, 40.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.307, 40.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.372, 40.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.473, 40.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.381, 40.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.474, 40.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.471, 40.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.441, 40.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.567, 40.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.292, 41.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.402, 41.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.148, 41.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.26, 41.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.452, 41.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.441, 41.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.559, 41.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.426, 41.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.403, 41.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.428, 41.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.485, 41.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.638, 41.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.574, 41.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.484, 41.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.52, 41.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.33, 40.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.479, 40.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.541, 40.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.552, 40.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.463, 40.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.55, 40.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.58, 40.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.602, 40.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.656, 40.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.187, 40.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.29, 40.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.314, 40.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.365, 40.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.288, 40.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.276, 40.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.316, 40.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.292, 40.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.364, 40.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.266, 40.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.498, 40.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.683, 41.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.746, 41.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.587, 41.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.519, 41.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.429, 41.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.54, 42.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.663, 42.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.53, 42.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.653, 42.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.58, 42.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.514, 42.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.449, 41.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.538, 41.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.476, 41.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.451, 41.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.44, 41.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.389, 41.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.771, 41.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.414, 42.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.354, 42.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.394, 41.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.511, 41.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.464, 41.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.384, 41.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.565, 41.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.391, 41.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.39, 41.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.42, 41.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.579, 41.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.46, 41.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.481, 41.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.507, 41.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.526, 41.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.524, 41.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.477, 41.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.381, 41.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.476, 41.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.451, 41.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.879, 41.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.556, 41.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.484, 41.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.581, 41.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.44, 41.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.489, 41.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.324, 41.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.688, 41.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.477, 41.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.43, 41.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4, 41.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.479, 41.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.463, 41.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.318, 41.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.461, 41.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.338, 40.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.458, 40.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.509, 40.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.444, 40.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.53, 40.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.338, 40.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.472, 40.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.65, 40.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.647, 40.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.674, 40.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.614, 40.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.544, 40.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.119, 40.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.59, 40.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.671, 40.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.61, 40.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.571, 40.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.452, 40.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.506, 40.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.85, 40.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.605, 40.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.479, 40.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.778, 40.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.716, 40.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.707, 40.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.848, 42.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.54, 44.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.485, 44.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.575, 45.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.589, 45.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.846, 46.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.206, 48.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.441, 48.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.397, 48.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.39, 48.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.379, 48.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.293, 48.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.825, 48.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.544, 48.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.432, 47.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.003, 47.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.142, 47.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.1, 47.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.051, 47.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.707, 47.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.073, 46.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.164, 46.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.892, 46.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.53, 46.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.977, 45.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.821, 44.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.723, 42.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.696, 42.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.676, 42.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.835, 42.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.876, 41.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.438, 41.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.848, 40.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.9, 40.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.268, 38.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.322, 37.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.086, 36.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.891, 32.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.81, 30.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76, 30.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.512, 28.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.803, 25.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.821, 20.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.052, 22.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.077, 24.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.515, 24.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.833, 24.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.786, 24.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.045, 36.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.974, 37.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.378, 37.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.671, 42.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.47, 42.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.489, 42.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.401, 44.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.158, 44.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.824, 44.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.285, 37.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.41, 38.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.525, 37.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.303, 37.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.42, 37.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.405, 37.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.432, 37.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.435, 37.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.281, 37.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.339, 37.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.558, 35.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.397, 35.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.014, 34.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.762, 34.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.874, 34.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.001, 34.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.019, 34.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.029, 34.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.738, 34.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.611, 34.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.112, 33.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.136, 34.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.056, 34.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.027, 34.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.958, 34.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.028, 34.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.289, 34.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.313, 34.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.08, 34.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.02, 35.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.249, 37.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.179, 36.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.123, 35.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.108, 35.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.312, 34.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.732, 35.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.599, 35.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.261, 35.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.277, 35.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.242, 35.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.799, 35.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.768, 35.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.494, 34.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.368, 35.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.324, 35.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.188, 35.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.431, 35.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.39, 35.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.432, 35.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.08, 35.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.242, 35.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.134, 35.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.773, 35.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.773, 35.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.227, 35.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.977, 35.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.892, 35.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.87, 35.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.749, 35.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.179, 35.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.052, 35.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.985, 35.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.835, 35.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.998, 35.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.954, 35.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.626, 34.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.601, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.593, 34.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.524, 34.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.718, 34.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.579, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.919, 33.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.788, 34.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.384, 32.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.806, 34.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.941, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.815, 34.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.924, 34.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.198, 34.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.855, 34.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.991, 34.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64, 34.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.508, 34.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.375, 34.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.314, 34.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.094, 34.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.12, 34.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.148, 34.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.594, 34.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.979, 34.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.704, 34.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.586, 33.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.753, 33.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.738, 33.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.75, 34.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.75, 33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.133, 33.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.022, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.151, 34.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.052, 33.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.952, 33.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.995, 33.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.987, 33.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.741, 33.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.932, 33.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.96, 33.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.861, 33.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.929, 33.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.864, 33.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.853, 33.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.88, 33.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.854, 33.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.803, 33.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.812, 33.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.917, 34.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.866, 33.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.688, 34.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.839, 33.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.683, 34.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.049, 34.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.264, 34.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.413, 34.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.357, 34.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.678, 34.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.734, 34.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.813, 34.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.724, 34.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.527, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.407, 34.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.101, 34.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.716, 33.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.989, 33.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.922, 33.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02, 33.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.524, 33.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.134, 33.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.975, 33.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.218, 33.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7, 33.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.306, 33.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.317, 33.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.408, 33.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.37, 33.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.961, 33.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.837, 33.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.332, 32.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.803, 32.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.43, 32.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.346, 32.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.959, 31.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.613, 31.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.029, 31.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.414, 31.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.726, 31.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.628, 31.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.736, 31.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.578, 31.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.638, 30.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.18, 30.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.161, 30.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.639, 30.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.161, 30.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.334, 30.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.275, 30.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.206, 30.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.209, 30.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.849, 29.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.899, 29.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.287, 28.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.785, 28.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.732, 28.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.909, 28.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.4, 28.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.492, 28.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.441, 28.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.74, 26.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.449, 28.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.609, 28.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.479, 28.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.459, 28.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.334, 28.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.445, 28.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.333, 27.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.206, 27.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.884, 26.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.684, 26.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.685, 26.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.138, 24.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.849, 25.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.786, 25.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.672, 25.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.267, 24.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.436, 24.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.932, 24.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.895, 24.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.897, 24.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.782, 24.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.202, 23.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.066, 23.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.665, 22.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.78, 22.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.854, 22.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.374, 22.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.446, 21.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.402, 21.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.697, 21.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.281, 21.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.965, 21.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.84, 20.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.495, 20.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.308, 20.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.192, 20.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.677, 20.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.28, 19.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.362, 20.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.503, 19.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.824, 18.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.508, 18.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.03, 18.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.765, 17.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.958, 17.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.43, 17.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.323, 16.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.53, 16.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.723, 16.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.495, 15.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.843, 13.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.455, 14.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.237, 14.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.539, 14.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.918, 13.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.524, 13.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.193, 13.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.076, 13.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.225, 11.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.116, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.714, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.628, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.587, 34.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.474, 34.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.046, 33.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.012, 33.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.842, 33.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.919, 31.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.545, 31.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.877, 32.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.446, 31.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.611, 31.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.471, 30.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.523, 28.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.292, 27.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.313, 25.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.732, 24.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.619, 24.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.381, 24.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.359, 24.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.314, 24.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.752, 23.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.726, 23.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.381, 23.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.397, 23.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.848, 22.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.226, 22.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.222, 22.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.84, 23.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.253, 21.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.619, 21.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.573, 20.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.169, 21.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.391, 20.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.096, 19.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.105, 19.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.578, 19.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.277, 17.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.88, 16.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.391, 34.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.622, 34.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.648, 34.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.699, 33.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.308, 33.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.63, 33.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.796, 31.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.824, 31.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.895, 31.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.02, 32.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.868, 31.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.883, 31.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.845, 31.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.778, 31.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.848, 31.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.822, 31.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.777, 31.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.745, 31.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.668, 31.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.409, 31.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.819, 31.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.894, 31.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.718, 31.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.718, 31.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.78, 31.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.823, 31.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.763, 31.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7, 31.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.756, 31.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.82, 31.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.777, 31.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.774, 31.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.405, 31.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.345, 30.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.337, 30.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.146, 30.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.157, 30.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.079, 30.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.105, 30.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.025, 30.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.034, 29.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.933, 29.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.752, 29.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.52, 27.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.389, 27.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.087, 27.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.949, 27.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.456, 26.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.442, 26.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.461, 26.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.154, 26.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.195, 26.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.185, 26.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.847, 25.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.895, 25.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.846, 25.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.598, 25.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.528, 24.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.45, 24.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.975, 24.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.742, 23.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.744, 23.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.62, 23.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.547, 23.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.711, 23.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.525, 21.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.37, 21.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.891, 21.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.107, 21.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.083, 21.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.728, 21.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.643, 21.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.359, 21.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.043, 21.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.059, 20.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.702, 19.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.613, 19.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.369, 19.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.168, 18.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.164, 18.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.678, 18.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.676, 18.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.625, 18.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.397, 18.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.498, 17.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.459, 17.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.446, 16.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.052, 17.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.734, 16.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.533, 15.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.182, 15.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.88, 14.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.238, 13.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.237, 13.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.951, 13.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.733, 12.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.492, 12.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.989, 12.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.964, 12.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.707, 12.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.248, 12.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.261, 12.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.113, 11.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.273, 11.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.936, 10.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.789, 10.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.059, 10.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.204, 10.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.337, 9.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.409, 10.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.191, 10.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.783, 10.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.5, 10.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.433, 10.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.283, 10.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.051, 10.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.898, 10.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.806, 10.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.129, 10.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.167, 10.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.293, 10.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.102, 10.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.76, 10.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.106, 10.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.394, 9.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.41, 9.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.372, 9.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.33, 9.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.364, 9.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.258, 9.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.249, 9.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.585, 8.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.376, 8.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.473, 8.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.743, 8.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.702, 8.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.765, 9.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.52, 9.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.727, 9.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.726, 9.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.749, 9.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.318, 9.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.146, 9.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.207, 10.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.138, 9.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.099, 9.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.012, 10.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.36, 10.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.962, 10.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.161, 10.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.132, 10.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.179, 9.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.081, 9.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.144, 9.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.884, 9.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.299, 9.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.529, 9.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.388, 9.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.546, 9.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.457, 9.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.337, 9.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.617, 9.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.375, 9.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.265, 9.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.284, 9.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.37, 9.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.068, 9.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.444, 9.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.083, 9.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.03, 9.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.042, 9.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.554, 9.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.447, 10.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.359, 10.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.186, 9.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.344, 9.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.734, 9.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.539, 10.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.796, 10.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.666, 10.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.658, 10.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.444, 10.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.329, 10.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.236, 10.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.442, 10.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.835, 10.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.687, 10.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.581, 10.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.671, 10.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.734, 10.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.895, 10.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.51, 10.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 8.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 8.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 8.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.751, 8.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 8.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.513, 8.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 9.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.636, 8.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.627, 8.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 7.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.192, 7.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34, 7.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.316, 7.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.707, 7.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.291, 7.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 7.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 7.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 7.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.862, 6.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 6.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.498, 6.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 6.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.094, 6.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.946, 6.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 6.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 6.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 6.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 7.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 7.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.747, 6.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.894, 7.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.914, 7.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 7.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.555, 7.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.632, 7.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.913, 7.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.129, 7.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.612, 7.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.617, 7.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 8.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.819, 9.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 8.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 8.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.063, 8.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.739, 8.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 8.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.14, 13.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.264, 8.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 8.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 8.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 8.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.029, 8.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.148, 8.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.606, 9.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 9.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.823, 8.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 8.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.077, 8.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.246, 8.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 9.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.521, 9.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 8.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.983, 8.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 8.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.724, 8.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 8.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.785, 8.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 8.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.565, 9.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.343, 8.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 8.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 8.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.195, 8.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.351, 8.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.298, 8.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.282, 8.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.772, 8.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.568, 8.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.248, 9.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.193, 9.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.995, 9.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.762, 9.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 9.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.755, 9.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.704, 9.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.769, 8.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.221, 9.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.707, 10.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.622, 10.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.701, 10.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.404, 12.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.823, 13.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.985, 15.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.373, 15.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.382, 15.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.988, 15.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.923, 17.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.835, 18.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.009, 18.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.011, 18.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.087, 18.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.019, 18.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.708, 18.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.715, 18.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.643, 18.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.687, 18.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.701, 18.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.294, 18.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.226, 18.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.409, 18.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.093, 18.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.808, 18.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.859, 18.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.081, 18.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.68, 18.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.189, 18.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.059, 18.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.992, 18.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.901, 18.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.989, 18.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.416, 20.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.748, 20.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.095, 22.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.947, 22.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.186, 22.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.609, 24.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.597, 24.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.925, 24.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.177, 24.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.424, 25.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.363, 26.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.91, 26.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.787, 27.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.495, 28.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.772, 29.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.075, 29.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.1, 29.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.204, 29.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.174, 29.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.556, 30.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.875, 31.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.888, 30.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.846, 30.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.852, 30.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.796, 30.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.878, 30.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.879, 30.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.277, 30.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.656, 31.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.075, 31.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.493, 31.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38, 31.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.772, 31.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.762, 31.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29, 31.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.862, 31.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.754, 31.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.761, 31.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.705, 32.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.616, 31.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.656, 31.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.594, 31.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.539, 31.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.531, 31.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.15, 31.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.283, 31.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28, 31.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.394, 31.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.965, 31.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.797, 31.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.881, 31.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.182, 31.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.988, 31.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.446, 31.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.174, 30.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.039, 31.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.094, 31.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.564, 34.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.992, 29.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.564, 29.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.411, 28.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.468, 28.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.604, 28.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.738, 30.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.083, 30.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.012, 30.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.181, 30.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.06, 30.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.158, 30.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.182, 30.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.363, 30.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.085, 30.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.127, 30.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.135, 30.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.106, 30.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.081, 30.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.969, 30.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.035, 30.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.15, 30.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.251, 30.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.043, 30.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.189, 30.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.005, 30.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.853, 30.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.919, 30.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.078, 30.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.015, 30.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.912, 30.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.221, 29.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.227, 29.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.173, 25.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.02, 22.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.759, 23.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.21, 27.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.858, 31.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.507, 29.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.822, 30.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.259, 30.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.628, 28.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.432, 29.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.688, 28.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.048, 29.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.578, 29.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.742, 29.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.562, 31.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.614, 31.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.713, 31.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.891, 31.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.16, 31.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.241, 31.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.625, 31.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.706, 31.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.725, 31.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.973, 31.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.146, 31.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.149, 32.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.111, 32.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.815, 32.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.23, 31.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.187, 31.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.076, 31.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.279, 31.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.472, 31.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.852, 31.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.002, 31.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.351, 31.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.379, 31.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.366, 31.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.215, 31.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.212, 31.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.198, 31.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.848, 31.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.326, 32.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.896, 32.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.863, 32.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.054, 32.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.42, 32.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.932, 32.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.871, 32.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.816, 32.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.066, 32.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.281, 32.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.126, 32.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.377, 32.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2, 32.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.727, 32.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.491, 32.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.606, 32.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.459, 32.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.602, 34.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.577, 34.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.634, 34.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.097, 33.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.362, 34.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.048, 33.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.201, 33.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.606, 34.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.694, 34.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.896, 34.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.842, 34.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.76, 34.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.007, 34.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.932, 34.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.933, 34.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.173, 34.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.058, 34.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.222, 34.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.139, 34.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.171, 34.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.041, 34.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.993, 34.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.865, 34.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.888, 34.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.869, 34.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.947, 34.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83, 34.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.944, 34.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.681, 34.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.977, 34.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.783, 34.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.877, 34.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.914, 34.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.871, 34.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.518, 34.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.846, 34.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.095, 34.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.387, 33.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.517, 34.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64, 34.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.532, 34.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.791, 34.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.144, 33.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.194, 34.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.231, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.188, 34.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.741, 34.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.616, 34.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.249, 34.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.845, 34.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.381, 33.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.743, 32.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.344, 32.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.401, 32.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.135, 32.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.259, 32.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.65, 33.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.168, 32.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.453, 31.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.43, 31.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.054, 31.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.049, 31.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.637, 29.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.65, 29.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.492, 29.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.209, 29.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.333, 29.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.113, 29.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.973, 29.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.689, 29.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.674, 29.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.645, 29.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.238, 29.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.644, 29.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.644, 29.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.825, 29.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.449, 28.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.618, 28.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.41, 28.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.495, 28.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.599, 28.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.443, 28.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.342, 28.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.408, 28.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.5, 28.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.452, 28.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.141, 28.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.68, 27.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.274, 28.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.935, 28.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.763, 28.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.123, 28.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.462, 28.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.136, 28.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.565, 28.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.69, 28.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.292, 28.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.389, 28.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.403, 28.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.05, 28.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.289, 28.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.226, 28.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.324, 28.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.398, 28.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.379, 28.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.372, 28.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.507, 28.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.41, 27.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.39, 28.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.527, 28.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.453, 28.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.134, 28.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.392, 28.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.667, 28.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.744, 28.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.508, 28.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.477, 28.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.125, 28.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.722, 27.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.543, 28.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.546, 28.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.583, 28.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.506, 28.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.585, 28.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.594, 28.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.34, 28.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.528, 27.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.519, 28.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.454, 28.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.466, 28.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.415, 28.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.31, 28.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.465, 28.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.308, 28.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.221, 28.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.032, 28.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.397, 28.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.288, 28.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.541, 28.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.414, 28.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.445, 28.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.583, 28.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.428, 28.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.541, 28.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.613, 28.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.575, 28.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.636, 28.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.657, 28.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.739, 28.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.752, 28.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.039, 28.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.346, 28.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.723, 28.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.722, 28.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.722, 28.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.638, 28.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.762, 28.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.591, 28.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.764, 28.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.631, 28.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.711, 28.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.583, 28.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.668, 28.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.751, 28.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.174, 28.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.424, 28.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.582, 28.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.6, 28.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.566, 28.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.175, 29.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.15, 29.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.064, 29.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.023, 29.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.163, 29.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.712, 29.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.739, 30.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.432, 30.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.464, 27.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.045, 26.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.785, 25.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.389, 23.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.062, 22.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.175, 22.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.716, 21.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.943, 20.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.924, 20.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.585, 18.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.2, 18.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.634, 18.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.585, 18.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.623, 18.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.561, 18.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.418, 19.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.307, 19.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.456, 18.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.732, 19.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.466, 19.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.155, 20.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.136, 21.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.735, 23.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.491, 24.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.57, 24.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.418, 27.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.375, 28.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.506, 28.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.621, 30.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.984, 30.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.139, 35.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.199, 38.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.453, 39.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.825, 40.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.149, 41.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.98, 42.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.012, 42.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -141.834, 42.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.855, 41.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.72, 41.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.86, 40.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.694, 40.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.731, 40.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.791, 40.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.396, 40.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.453, 40.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.551, 40.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.362, 41.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.406, 41.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.381, 41.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.41, 41.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.442, 41.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.974, 41.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.272, 41.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.353, 40.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.82, 39.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.232, 39.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.469, 31.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.896, 30.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.82, 29.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.5, 29.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.47, 29.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.354, 28.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.11, 28.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.31, 28.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.922, 28.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.913, 28.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.076, 28.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.221, 29.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.231, 28.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.126, 28.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.54, 29.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.521, 29.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.042, 30.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.935, 32.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.567, 33.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.95, 32.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.124, 32.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.113, 32.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.495, 32.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.628, 32.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.364, 32.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.223, 32.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.17, 32.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.105, 32.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.794, 34.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.84, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.329, 34.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.606, 34.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.967, 33.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.036, 34.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.699, 33.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.734, 34.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.792, 34.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.692, 34.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.422, 34.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.142, 34.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.921, 34.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.981, 34.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.923, 34.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.016, 34.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.242, 34.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.435, 34.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.325, 34.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.477, 34.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.406, 35.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.88, 35.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.975, 35.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.094, 35.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.118, 35.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.522, 35.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.645, 35.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.995, 36.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.42, 36.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.651, 36.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.692, 36.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9, 37.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.049, 37.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.203, 37.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.273, 37.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.467, 38.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.476, 37.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.78, 38.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.385, 38.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.265, 38.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.36, 38.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.569, 38.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.186, 38.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.479, 39.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.497, 39.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.349, 39.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.4, 39.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.639, 38.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.064, 39.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.612, 39.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.209, 39.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.149, 39.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.264, 40.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.73, 41.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.149, 41.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.408, 41.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.608, 41.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.216, 42.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.555, 42.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.303, 42.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.768, 43.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.836, 44.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.508, 44.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.202, 44.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.103, 45.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.052, 45.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.54, 46.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.606, 46.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.715, 46.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.689, 47.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.683, 47.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.998, 47.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.854, 49.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.699, 34.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.007, 33.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.972, 23.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.741, 21.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.437, 10.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.575, 9.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.633, 9.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.739, 10.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.439, 10.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.356, 11.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.352, 11.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.52, 11.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.224, 11.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.916, 12.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 12.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 12.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 12.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.612, 12.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.258, 13.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.591, 13.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.23, 19.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.134, 21.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.242, 21.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.029, 21.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.938, 21.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.501, 34.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.719, 34.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.211, 34.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.619, 34.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.504, 34.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.947, 35.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.392, 41.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.415, 41.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.413, 41.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.492, 42.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.425, 41.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.41, 42.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.411, 41.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.342, 41.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.848, 41.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.326, 41.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.501, 41.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.462, 41.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.445, 41.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.48, 41.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.43, 41.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.573, 41.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.624, 41.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.246, 41.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.489, 41.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.422, 41.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.372, 41.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.462, 41.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.548, 41.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.472, 41.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.448, 41.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.524, 41.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.435, 41.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.455, 41.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.404, 41.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.488, 41.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.453, 41.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5, 41.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.462, 41.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.486, 41.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.565, 40.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.639, 41.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.577, 41.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.483, 41.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.411, 41.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.619, 41.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.568, 41.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.96, 39.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.295, 39.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.908, 33.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.653, 33.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.986, 32.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.319, 29.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.225, 29.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.105, 29.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.684, 28.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.623, 26.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.107, 26.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.168, 24.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.876, 24.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.842, 23.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.907, 23.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.613, 23.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.377, 23.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.962, 22.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.179, 21.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.4, 21.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.022, 21.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.11, 21.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.318, 21.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.701, 21.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.116, 21.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.848, 31.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.849, 31.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.876, 31.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.749, 31.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.27, 25.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.715, 24.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.949, 23.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.655, 23.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.651, 23.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.755, 23.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.768, 23.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.864, 23.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.901, 23.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.626, 23.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.514, 23.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.527, 23.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.883, 23.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.154, 23.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.03, 23.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.848, 23.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.746, 23.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.243, 23.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.618, 22.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.98, 23.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.854, 23.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.173, 23.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.437, 23.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.443, 23.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.729, 24.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.212, 24.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.067, 24.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.474, 25.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.451, 25.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.486, 25.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.5, 25.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.284, 25.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.577, 26.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.913, 26.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.068, 26.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.209, 27.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.415, 27.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.458, 27.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.432, 27.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.602, 27.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.771, 27.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.788, 27.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.164, 27.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.016, 27.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.962, 27.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.795, 27.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.761, 28.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.709, 28.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.911, 28.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.767, 28.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.514, 28.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.301, 28.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.309, 27.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.978, 27.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.926, 27.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.958, 27.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.566, 27.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.564, 27.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.632, 27.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.672, 27.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.21, 27.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.259, 27.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.249, 27.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.975, 27.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.852, 27.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.432, 27.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.708, 27.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.68, 27.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.432, 27.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.087, 27.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.943, 27.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.866, 27.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.829, 26.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.672, 26.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.639, 26.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.158, 25.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.131, 25.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.518, 24.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.888, 24.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.009, 23.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.987, 23.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.095, 23.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.706, 22.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.43, 23.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.467, 23.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.667, 24.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.739, 24.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.817, 24.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.009, 24.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.13, 25.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.425, 27.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.404, 27.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.035, 28.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.355, 29.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.206, 31.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.081, 30.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.399, 30.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.884, 29.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.052, 29.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.041, 28.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.809, 28.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.847, 28.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.872, 28.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.908, 27.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.148, 27.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.127, 27.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.179, 27.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.993, 25.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.899, 25.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.702, 25.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.657, 25.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.682, 25.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.858, 25.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.815, 25.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.208, 26.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.953, 25.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.383, 26.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.1, 26.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.834, 25.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.88, 25.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.356, 24.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.77, 26.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.81, 27.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.938, 34.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.048, 34.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.011, 33.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.117, 34.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.257, 33.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.161, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.083, 34.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.071, 34.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.028, 34.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.274, 34.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.802, 34.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.971, 34.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.94, 34.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.925, 34.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.252, 34.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.165, 34.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.07, 34.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.697, 34.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.939, 34.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.961, 34.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.96, 34.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.082, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.254, 34.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.464, 34.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.426, 34.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.824, 34.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66, 34.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.446, 34.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.369, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.491, 34.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.575, 34.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.398, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.567, 34.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.56, 34.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.566, 34.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.635, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.648, 34.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.49, 33.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.491, 33.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.506, 33.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.602, 34.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.432, 34.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.687, 33.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.525, 34.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.268, 33.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.142, 33.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.797, 34.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.487, 34.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.546, 34.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.45, 34.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.462, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.547, 34.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.508, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.49, 34.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.471, 34.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.462, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.579, 34.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.95, 33.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.329, 33.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.041, 33.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.846, 33.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.313, 33.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.035, 33.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.08, 33.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.041, 33.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.09, 33.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.967, 33.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.153, 33.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.651, 33.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.917, 31.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.806, 31.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.85, 31.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.884, 31.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.889, 31.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.306, 31.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.894, 31.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.801, 31.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.782, 31.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.896, 31.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.85, 31.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.745, 31.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.848, 31.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.76, 31.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.827, 31.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.735, 31.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.811, 31.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.632, 31.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.517, 30.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.534, 30.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.552, 30.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.597, 30.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.388, 30.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.462, 30.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.535, 30.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.515, 31.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.517, 30.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.441, 30.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.461, 30.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.469, 31.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.458, 30.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.429, 31.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.486, 31.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.597, 31.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.58, 31.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.628, 31.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.83, 31.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.476, 31.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.366, 30.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.357, 29.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.823, 28.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.677, 28.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.691, 28.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.344, 28.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.586, 28.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.662, 27.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.575, 27.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.512, 27.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.656, 28.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.387, 27.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.294, 27.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.322, 27.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.257, 27.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.269, 27.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.295, 27.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.157, 27.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.408, 27.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.513, 27.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.235, 27.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.548, 27.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.241, 27.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.389, 27.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.573, 27.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.614, 27.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.596, 27.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.578, 27.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.368, 27.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.538, 27.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.837, 27.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.282, 27.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.26, 27.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.247, 27.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.496, 27.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.274, 27.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.527, 27.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.55, 27.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.626, 27.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.601, 28.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.512, 27.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.742, 28.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.68, 28.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.566, 28.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.611, 28.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.624, 27.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.476, 27.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.41, 27.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.421, 27.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.555, 27.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.232, 27.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.269, 27.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.921, 27.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.229, 27.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.375, 27.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.468, 27.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.212, 27.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.46, 27.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.357, 27.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.296, 27.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.26, 27.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.253, 27.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.2, 27.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.135, 27.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.023, 27.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.749, 27.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.615, 27.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.63, 27.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.724, 27.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.822, 27.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.717, 27.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.903, 27.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.383, 27.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.395, 27.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.344, 27.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.073, 26.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.543, 27.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.607, 27.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.635, 26.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.295, 26.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.385, 26.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.31, 27.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.212, 27.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.508, 27.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.517, 27.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.372, 27.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.819, 27.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.69, 27.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.811, 27.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.318, 27.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.834, 26.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.963, 25.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.788, 25.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.405, 24.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.956, 22.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.82, 22.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.051, 22.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.135, 23.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.05, 34.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.145, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.524, 35.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.826, 36.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.831, 39.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.811, 38.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.631, 38.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.709, 38.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.837, 35.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.21, 35.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.221, 35.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.819, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.848, 33.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.943, 33.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.88, 33.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.814, 33.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.715, 33.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.727, 33.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.724, 33.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.901, 33.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.631, 33.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.142, 31.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.973, 31.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.532, 31.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.771, 31.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.746, 31.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.187, 31.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.821, 30.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.254, 30.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.152, 31.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.754, 34.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.496, 34.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.216, 34.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.357, 33.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.486, 34.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.548, 34.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.502, 34.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.564, 34.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.184, 33.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.627, 34.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.439, 34.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.656, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.805, 33.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.352, 34.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.391, 34.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.401, 34.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.363, 34.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36, 34.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.429, 34.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.42, 34.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.388, 34.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.368, 34.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.246, 34.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.905, 34.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.457, 33.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.444, 34.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.152, 33.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.739, 33.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.395, 33.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.449, 33.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.801, 32.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.632, 32.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.666, 32.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.601, 32.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.687, 32.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.853, 32.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.115, 32.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.247, 32.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.881, 32.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.197, 32.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.713, 32.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.634, 32.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.924, 31.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.711, 31.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.172, 31.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.09, 31.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.253, 32.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.356, 31.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.275, 31.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.345, 31.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.055, 32.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.968, 32.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.921, 32.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.722, 32.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.594, 32.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.539, 32.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.174, 32.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.767, 32.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.043, 33.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.152, 33.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.524, 33.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.796, 33.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.861, 33.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.187, 33.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.417, 33.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.701, 33.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.319, 33.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.489, 34.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.241, 33.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.154, 33.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.586, 33.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.393, 33.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.249, 33.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.327, 33.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.354, 33.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.24, 33.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.734, 30.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.254, 30.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.499, 31.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.521, 31.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.481, 31.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.558, 31.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.391, 30.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.918, 30.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.951, 30.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.222, 30.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.945, 29.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.973, 29.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.793, 28.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.378, 29.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.872, 28.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.826, 27.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.075, 25.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.569, 27.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.619, 27.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.88, 27.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.516, 27.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.697, 28.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.484, 28.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.419, 28.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.173, 28.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.838, 28.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.219, 28.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.43, 28.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.61, 28.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.332, 28.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.302, 28.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.145, 28.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.777, 29.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.127, 28.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.355, 29.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.287, 29.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.778, 34.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.556, 28.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.114, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.093, 34.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.281, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.273, 34.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.101, 34.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.13, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.258, 34.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.309, 34.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.017, 34.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.071, 34.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.296, 34.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.281, 34.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.354, 34.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.742, 35.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.873, 35.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.759, 35.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.022, 36.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.582, 37.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.427, 37.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.054, 39.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.592, 39.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.87, 40.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.033, 41.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.476, 42.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.185, 42.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.816, 42.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.09, 42.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.527, 44.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.659, 44.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.595, 45.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.692, 45.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.046, 45.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.5, 46.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.249, 46.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.053, 46.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.441, 47.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.451, 47.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.428, 47.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -145.045, 45.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.57, 47.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.642, 47.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -142.536, 48.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -142.433, 48.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -142.916, 48.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -142.952, 48.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.23, 49.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.048, 48.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.937, 48.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.012, 48.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -145.649, 48.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.287, 48.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.11, 48.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.06, 48.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.831, 48.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.388, 48.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.105, 48.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.979, 48.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -150.563, 48.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.863, 48.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.768, 48.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.418, 48.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.515, 48.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.429, 48.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.544, 48.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.488, 48.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.546, 48.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.429, 48.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.31, 48.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.274, 48.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.245, 48.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.187, 48.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.182, 48.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.218, 49.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.433, 48.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.365, 48.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -145.726, 49.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.384, 49.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.206, 49.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.019, 50.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.478, 51.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.754, 51.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.5, 51.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.017, 51.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.251, 52.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.499, 52.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.782, 52.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.726, 52.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.516, 53.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.882, 53.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.167, 53.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.692, 52.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -143.766, 53.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -141.527, 53.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -141.208, 53.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.895, 52.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.788, 52.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.47, 52.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.094, 52.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.417, 52.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.392, 52.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.593, 52.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.583, 52.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.626, 52.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.654, 52.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.774, 52.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.78, 52.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.682, 52.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.445, 52.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.382, 52.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.792, 52.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.904, 52.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.987, 52.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.164, 51.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.418, 51.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.289, 51.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.365, 51.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.102, 50.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.125, 50.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.691, 50.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.091, 50.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.803, 50.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.161, 50.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.052, 50.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.363, 50.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.254, 49.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.196, 49.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.17, 49.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.516, 49.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.157, 49.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.281, 49.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.04, 48.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.243, 48.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.734, 47.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.335, 47.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.878, 47.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.041, 47.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.079, 47.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.115, 47.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.161, 47.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.046, 47.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.082, 47.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.316, 47.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.99, 47.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.35, 47.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.297, 47.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.171, 47.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.176, 47.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.211, 47.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.151, 48.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.368, 47.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.443, 47.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.451, 47.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.334, 47.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.224, 47.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.772, 47.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.584, 47.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.578, 47.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.28, 47.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.641, 47.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.503, 47.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.66, 47.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.6, 46.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.407, 46.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.424, 46.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.547, 46.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.018, 46.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.646, 46.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.152, 46.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.472, 46.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.452, 47.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.407, 47.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.403, 47.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.55, 47.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.629, 47.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.592, 47.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.919, 46.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.815, 45.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.161, 45.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.294, 40.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.225, 38.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.132, 38.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.594, 37.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.065, 36.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.907, 36.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.866, 36.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.645, 35.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.646, 35.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.847, 35.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.879, 34.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.705, 34.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.575, 33.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.549, 32.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.346, 32.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.241, 32.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.276, 32.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.896, 31.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2, 30.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.049, 29.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.621, 29.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.152, 28.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.37, 28.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.069, 27.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.225, 26.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.495, 25.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.675, 24.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73, 24.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.711, 24.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.968, 23.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.889, 23.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.866, 23.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.822, 23.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.616, 23.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.66, 23.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.293, 23.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.699, 23.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.188, 23.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.085, 23.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.656, 23.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.27, 22.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.242, 23.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.757, 23.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.363, 23.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.123, 24.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.687, 23.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.451, 23.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.293, 23.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.43, 21.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.334, 21.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.549, 21.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.49, 21.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.417, 21.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.183, 21.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.905, 21.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.861, 21.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.942, 21.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.18, 21.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.768, 21.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.199, 21.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.381, 21.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.39, 21.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.521, 20.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.433, 20.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.793, 20.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.324, 18.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.087, 18.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.049, 18.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.046, 19.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.003, 19.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.601, 20.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.514, 20.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.558, 20.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.993, 20.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.038, 20.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.009, 20.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.101, 20.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.847, 19.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.807, 19.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.875, 20.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.46, 20.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.624, 20.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.616, 20.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.762, 20.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.723, 22.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.71, 22.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.111, 21.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.666, 23.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.74, 23.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.643, 23.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.638, 23.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.442, 24.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.09, 24.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.211, 24.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.221, 24.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.295, 24.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.368, 24.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.265, 24.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.234, 24.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.287, 24.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.277, 24.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.953, 24.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.923, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.979, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.911, 34.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.081, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.115, 34.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.233, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.092, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.129, 34.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.967, 34.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.036, 34.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.246, 34.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.187, 34.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.23, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.783, 34.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.964, 34.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.953, 34.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.214, 34.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.689, 33.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.056, 34.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.025, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.898, 34.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.898, 33.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.112, 34.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.259, 34.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.228, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.219, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.458, 33.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.514, 34.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.445, 34.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.626, 34.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.531, 34.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.56, 34.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.332, 34.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.591, 34.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.207, 34.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.609, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.579, 34.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.506, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.778, 34.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.41, 34.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.359, 34.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.385, 35.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.072, 35.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.388, 35.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32, 35.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.355, 35.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.643, 36.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.269, 36.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.34, 36.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.787, 36.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.731, 36.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.998, 36.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.841, 36.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.061, 34.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.763, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.213, 34.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.335, 33.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.996, 34.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.04, 34.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.71, 34.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.371, 33.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.326, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.588, 32.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.891, 30.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.556, 31.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.621, 29.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.814, 28.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.529, 27.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.508, 27.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.493, 26.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.473, 26.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.544, 26.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.728, 26.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.162, 24.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.57, 24.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.852, 23.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.83, 23.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.694, 22.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.81, 20.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.99, 21.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.897, 21.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.535, 21.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.308, 21.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.72, 21.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.846, 23.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.522, 23.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.809, 24.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.885, 24.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.561, 24.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.028, 23.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.884, 23.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.469, 23.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.581, 23.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.406, 23.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.848, 23.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.876, 22.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.798, 22.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.844, 22.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.844, 22.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.738, 22.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.735, 22.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.817, 22.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.791, 22.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.597, 22.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.015, 22.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.799, 22.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.823, 21.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.045, 21.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.046, 21.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.036, 21.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.276, 21.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.185, 21.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.179, 21.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.06, 21.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.185, 21.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.216, 21.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.088, 21.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.176, 21.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.214, 21.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.343, 21.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.367, 21.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.062, 20.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.094, 20.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.427, 20.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.446, 20.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4, 20.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.363, 20.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.439, 20.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.543, 20.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.39, 20.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.539, 20.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.537, 20.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.48, 20.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.41, 20.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.425, 20.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.252, 20.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.24, 20.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.28, 21.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.34, 21.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.445, 21.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.09, 21.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.276, 21.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.597, 20.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.772, 20.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.933, 19.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.951, 19.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.031, 19.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.924, 19.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.047, 19.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.62, 19.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.92, 19.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.858, 20.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.909, 20.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.754, 20.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.837, 21.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.881, 21.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.322, 21.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.133, 21.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.789, 21.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.744, 21.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.752, 21.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.805, 21.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.167, 21.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.221, 21.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.212, 22.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.082, 21.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.35, 22.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.326, 22.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.256, 22.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.249, 21.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.234, 21.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.212, 21.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.418, 21.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.578, 21.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.734, 21.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.633, 21.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.57, 21.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.378, 21.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.728, 21.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.713, 21.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.883, 21.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.96, 21.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.945, 21.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.125, 21.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.147, 21.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.05, 21.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.148, 20.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.156, 20.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.1, 20.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.094, 20.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.098, 20.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.076, 20.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.967, 21.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.164, 21.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.063, 21.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.932, 21.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.148, 21.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.966, 20.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.162, 20.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.358, 20.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.561, 20.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.511, 21.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.344, 21.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.526, 21.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.503, 21.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.549, 21.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.423, 21.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.534, 21.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.572, 21.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.532, 21.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.722, 21.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.198, 21.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.326, 21.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.262, 21.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.296, 21.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.37, 21.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.364, 21.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.33, 21.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.621, 21.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.713, 21.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.682, 22.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.569, 21.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.473, 22.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.709, 22.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.469, 22.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.685, 21.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.728, 21.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.733, 21.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.72, 21.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.643, 20.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.725, 20.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.841, 20.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.851, 20.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.951, 20.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.763, 20.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.993, 20.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.941, 20.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.988, 20.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.701, 20.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.009, 20.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.063, 20.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.045, 20.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.116, 20.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.112, 20.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.15, 20.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.138, 20.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.018, 20.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.103, 20.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.527, 20.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.679, 20.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.717, 20.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.813, 20.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.787, 20.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.852, 20.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.828, 20.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.808, 20.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.093, 17.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.763, 20.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.78, 20.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.003, 20.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.183, 21.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.977, 21.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.092, 21.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.582, 21.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.96, 21.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.654, 21.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.214, 21.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.981, 21.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.448, 21.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.296, 21.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.411, 21.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.442, 21.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.49, 20.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.81, 21.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.903, 21.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.348, 21.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.643, 21.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.122, 23.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.21, 23.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.554, 24.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.168, 24.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.145, 24.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.247, 23.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.261, 23.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.256, 23.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.265, 23.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.247, 23.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.189, 23.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.975, 23.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.192, 23.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.171, 23.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.976, 23.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.217, 23.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.175, 23.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.227, 23.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.114, 23.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.066, 23.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.318, 23.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.075, 23.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.067, 23.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.012, 23.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.017, 23.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.022, 23.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.988, 23.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.902, 22.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.918, 23.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.936, 23.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.02, 23.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.007, 23.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.094, 23.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.097, 23.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.306, 23.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.678, 23.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.588, 23.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.939, 23.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.007, 23.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.022, 23.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.559, 24.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.64, 24.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.866, 25.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.406, 25.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.34, 25.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.376, 25.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.374, 25.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.401, 25.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.339, 25.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.343, 25.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.292, 25.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.342, 25.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.341, 25.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.51, 25.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.669, 26.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.685, 26.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.704, 26.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.784, 26.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.366, 25.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.311, 25.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.406, 25.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.438, 25.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.541, 25.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.356, 25.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.239, 25.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.263, 25.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.211, 25.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.214, 25.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.415, 25.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.497, 26.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.932, 26.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.997, 26.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.836, 26.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.914, 26.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.916, 26.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.868, 26.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.782, 26.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.804, 26.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.99, 26.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.862, 26.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.55, 26.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.895, 26.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.826, 26.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.797, 26.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.845, 26.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.78, 26.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.22, 25.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.664, 26.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.777, 26.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.823, 26.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.39, 25.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.667, 25.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.67, 25.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.477, 25.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.473, 25.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.357, 25.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.457, 25.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.379, 25.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.352, 25.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.411, 25.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.684, 25.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.426, 25.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.415, 26.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.937, 26.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.031, 26.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.014, 26.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.991, 26.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.993, 26.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.994, 26.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.998, 26.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.998, 26.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.379, 26.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.633, 26.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.854, 26.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.895, 26.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.87, 26.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.873, 26.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.912, 26.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.877, 26.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.926, 26.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.006, 26.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.433, 26.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.458, 26.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.472, 26.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.454, 26.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.477, 26.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.433, 27.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.587, 27.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.078, 27.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.076, 34.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.398, 34.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.042, 34.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.531, 19.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.579, 29.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.857, 29.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.638, 24.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.434, 21.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.961, 21.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.128, 21.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.121, 21.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.174, 21.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.321, 21.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.97, 22.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.821, 22.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.593, 22.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.364, 22.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.201, 22.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.216, 22.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.831, 22.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.953, 22.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.001, 22.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.8, 22.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.07, 22.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.136, 22.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.837, 22.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.987, 21.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.951, 22.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.873, 22.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.87, 22.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.856, 22.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.829, 22.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.79, 22.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.689, 22.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.25, 21.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.266, 21.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.784, 21.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.742, 21.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.845, 21.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.816, 21.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.906, 21.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.868, 21.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.889, 21.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.413, 21.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.9, 21.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.846, 21.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.845, 21.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.528, 21.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.776, 21.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.183, 21.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.475, 21.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.444, 21.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.702, 21.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.702, 21.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.81, 21.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.755, 21.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.004, 21.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.091, 21.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.133, 21.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.623, 21.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.39, 20.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.266, 21.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.032, 20.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.308, 20.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.934, 20.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.86, 20.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.654, 20.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.738, 19.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.792, 19.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.562, 19.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.41, 19.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.417, 19.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.697, 18.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.702, 18.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.56, 17.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.655, 17.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.23, 17.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.112, 16.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.951, 16.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.433, 14.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.498, 14.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.32, 10.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.267, 10.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.789, 9.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.149, 9.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.219, 10.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.446, 9.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.548, 34.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.018, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.399, 33.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.441, 34.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.607, 34.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.202, 33.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.599, 34.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.704, 34.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.562, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.506, 34.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.205, 33.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.617, 34.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.613, 34.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.089, 33.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.846, 34.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.013, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.638, 34.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.667, 34.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.657, 34.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.496, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.483, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.556, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.511, 34.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.556, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.601, 34.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.526, 34.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.48, 34.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.461, 34.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.347, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.744, 33.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.38, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.198, 34.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.333, 34.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.42, 34.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.411, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.46, 34.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.35, 34.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.726, 33.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.608, 33.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.552, 33.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.543, 33.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.518, 33.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.502, 33.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.51, 33.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.536, 33.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.582, 33.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.533, 33.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.257, 33.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.618, 33.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59, 33.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.258, 33.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.692, 33.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66, 33.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.634, 33.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.609, 33.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.558, 33.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.604, 33.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62, 33.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.615, 33.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.586, 33.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.655, 33.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.636, 33.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.606, 33.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59, 33.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.568, 33.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.769, 32.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.547, 32.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.023, 24.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.823, 24.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.925, 24.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.756, 22.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.784, 22.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.99, 21.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.798, 21.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.813, 21.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.303, 19.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.764, 18.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.665, 18.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.656, 18.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.451, 17.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.192, 17.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.037, 16.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.393, 15.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.191, 15.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.897, 15.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.513, 15.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.296, 13.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.038, 12.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.12, 9.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.795, 9.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.937, 9.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.957, 9.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.827, 9.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.956, 9.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.982, 9.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.132, 9.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.978, 9.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.053, 9.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.006, 9.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.983, 9.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.037, 9.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.985, 9.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.263, 9.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.272, 9.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.044, 8.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.067, 9.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.339, 9.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.612, 8.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.832, 8.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.828, 8.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.711, 9.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.711, 9.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.743, 9.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.795, 9.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.784, 9.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.805, 9.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.298, 9.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.412, 9.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.307, 10.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.368, 10.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.314, 9.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.362, 9.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.543, 10.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.404, 10.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.983, 10.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.093, 10.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.212, 9.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.1, 9.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.179, 9.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.328, 9.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.173, 9.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.523, 9.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.398, 9.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.119, 9.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.264, 8.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.459, 8.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.415, 7.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.114, 9.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.65, 8.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.699, 8.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.974, 8.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.164, 9.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.237, 9.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.723, 10.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.725, 10.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.977, 10.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.776, 10.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.215, 7.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.064, 34.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.129, 34.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.218, 34.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.349, 33.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.619, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.012, 34.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.253, 34.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.742, 34.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.622, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.724, 33.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.818, 31.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.356, 30.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.043, 30.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0, 30.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.347, 30.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.422, 30.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.249, 30.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.317, 30.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.39, 30.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.332, 30.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.534, 30.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.461, 30.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.428, 30.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.426, 30.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.52, 30.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.51, 30.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.485, 30.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.451, 30.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.392, 30.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.389, 30.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.818, 30.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.327, 30.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.279, 30.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.184, 30.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.16, 30.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.509, 30.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.239, 30.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.129, 30.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.133, 30.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.956, 30.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.053, 30.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.048, 30.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.073, 30.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.003, 30.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.014, 30.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.034, 30.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.071, 30.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.986, 30.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.946, 29.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.858, 30.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.914, 29.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.924, 29.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.893, 29.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.874, 29.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.87, 29.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.855, 29.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.905, 29.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.774, 29.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.871, 29.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.702, 29.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.665, 29.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.893, 29.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.884, 29.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.935, 29.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.82, 29.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.06, 29.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.088, 30.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.102, 30.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.208, 30.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.22, 30.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.165, 30.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.177, 30.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.038, 30.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.114, 30.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.244, 29.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.886, 29.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.897, 29.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.838, 29.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.87, 29.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.984, 29.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.951, 30.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.947, 30.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.977, 30.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.973, 30.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.869, 29.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.068, 30.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.993, 30.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.986, 30.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.991, 30.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.988, 30.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.893, 29.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.756, 29.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.846, 29.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.774, 29.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.834, 29.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.773, 29.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.779, 29.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.646, 29.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.713, 29.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.731, 29.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.535, 29.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.626, 29.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.571, 29.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.561, 29.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.543, 29.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.329, 29.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.531, 29.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.541, 29.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.458, 29.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.488, 29.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.531, 29.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.533, 29.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.671, 29.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.525, 29.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.547, 29.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.642, 29.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.513, 29.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.574, 29.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.856, 29.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.593, 29.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.512, 29.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.556, 29.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.556, 29.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.358, 29.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.558, 29.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.612, 29.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.543, 29.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.528, 29.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.568, 29.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.554, 29.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.564, 29.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.353, 29.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.594, 29.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.571, 29.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.535, 29.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.653, 29.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.383, 29.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.506, 29.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.586, 29.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.474, 29.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.826, 28.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.514, 28.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.417, 28.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.549, 28.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.561, 28.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.257, 27.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.139, 27.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.171, 27.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.44, 27.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.272, 27.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.484, 27.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.558, 27.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.023, 28.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.792, 27.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.823, 28.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.775, 28.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.536, 28.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.067, 28.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.498, 28.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.447, 28.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.442, 28.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.723, 28.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.512, 28.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.826, 28.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.79, 28.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.546, 29.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.813, 29.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.797, 29.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.85, 29.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.829, 29.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.836, 29.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.796, 29.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.843, 29.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.809, 29.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.846, 29.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.833, 29.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.861, 29.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.759, 29.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.649, 29.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.714, 29.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.693, 29.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.576, 29.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.564, 29.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.52, 29.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.442, 29.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.748, 29.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.868, 29.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.658, 29.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.708, 29.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.675, 29.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.463, 29.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.686, 29.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.844, 29.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.551, 29.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.26, 29.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.422, 29.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.319, 29.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.24, 29.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.222, 29.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.267, 29.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.253, 29.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.271, 29.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.301, 29.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.348, 29.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.489, 29.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.178, 28.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.169, 28.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.169, 29.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.961, 29.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.224, 29.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.404, 28.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.425, 29.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.414, 29.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.296, 29.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.318, 29.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.281, 29.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.234, 29.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.211, 29.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.257, 29.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.012, 29.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.337, 29.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.128, 29.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.197, 29.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.274, 28.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.343, 28.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.328, 28.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.34, 28.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.337, 28.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.345, 28.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.509, 28.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.981, 28.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.7, 29.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.556, 29.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.957, 29.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.853, 28.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.793, 28.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.947, 28.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.297, 28.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.86, 28.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.938, 28.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.947, 28.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.01, 28.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.055, 28.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.725, 27.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.914, 27.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.181, 25.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.261, 26.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.775, 26.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.548, 26.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.47, 26.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.25, 25.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.038, 25.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.463, 25.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.23, 25.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.628, 26.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.928, 27.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.794, 27.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.756, 27.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.946, 27.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.886, 27.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.553, 27.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.948, 27.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.962, 27.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.897, 27.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.996, 27.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.063, 27.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.077, 27.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.255, 27.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.139, 27.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.769, 27.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.467, 27.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.001, 27.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.369, 27.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.457, 27.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.164, 27.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.608, 27.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.538, 27.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.644, 27.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.681, 27.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.825, 27.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.858, 27.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.408, 27.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.152, 27.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.798, 27.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.604, 27.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.863, 26.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.524, 26.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.577, 26.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.993, 26.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.818, 26.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.93, 26.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.353, 26.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.38, 26.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.375, 26.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.352, 26.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.355, 26.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.187, 26.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.163, 26.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.125, 26.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.443, 26.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.254, 26.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.23, 26.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.131, 27.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.174, 26.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.33, 27.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.91, 27.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.35, 27.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.539, 28.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.53, 28.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.611, 28.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.559, 28.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.505, 28.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.098, 28.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.299, 28.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.293, 28.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.36, 28.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.365, 28.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.216, 28.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.1, 28.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.191, 28.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.94, 29.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.052, 29.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.996, 29.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.096, 29.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.089, 29.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.16, 29.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.218, 28.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.318, 28.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.37, 28.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.251, 28.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.093, 28.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.117, 28.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.268, 28.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.352, 28.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.287, 28.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.886, 28.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.203, 28.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.234, 28.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.232, 28.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.348, 28.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.046, 28.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.668, 28.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.139, 28.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.189, 29.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.219, 29.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.294, 29.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.196, 29.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.322, 29.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.222, 29.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.652, 29.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.525, 29.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.455, 29.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.433, 29.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.348, 29.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.365, 29.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.561, 29.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.668, 29.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.369, 29.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.354, 29.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.383, 29.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.224, 29.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.17, 29.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.259, 29.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.531, 29.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.311, 29.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.4, 29.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.442, 29.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.439, 29.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.41, 29.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.498, 29.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.547, 29.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.357, 29.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.4, 29.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.56, 29.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.519, 29.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.495, 29.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.358, 29.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.329, 29.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.34, 29.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.36, 29.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.406, 29.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.3, 29.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.608, 29.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.335, 29.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.319, 29.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.3, 29.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.491, 29.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.398, 29.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.481, 29.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.487, 29.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.576, 29.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.457, 29.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.45, 29.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.477, 29.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.48, 29.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.426, 29.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.418, 29.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.585, 29.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.48, 29.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.455, 29.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.383, 29.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.997, 29.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.399, 29.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.39, 29.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.148, 29.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.445, 29.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.348, 29.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.383, 29.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.184, 29.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.171, 29.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.168, 29.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.165, 29.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.201, 29.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.195, 29.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.162, 29.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.097, 29.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.323, 29.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.391, 29.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.465, 29.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.882, 30.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.948, 30.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.185, 30.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.136, 30.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.972, 30.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.306, 29.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.056, 29.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.955, 29.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.791, 28.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.607, 28.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.854, 28.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.776, 28.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.884, 29.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.955, 29.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.113, 29.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.248, 29.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.903, 28.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.904, 28.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.892, 28.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.874, 28.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.753, 28.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.807, 28.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.852, 28.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.84, 28.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.698, 28.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.679, 28.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.744, 28.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.697, 28.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.67, 28.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.671, 28.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.713, 28.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.774, 28.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.085, 34.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.114, 34.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.682, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.15, 34.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.123, 34.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.218, 34.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.051, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.523, 35.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.468, 34.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.123, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.017, 33.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.907, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.875, 34.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.153, 34.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.168, 34.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.008, 34.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.97, 34.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.893, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.195, 34.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.234, 34.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.488, 34.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.372, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.259, 34.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.465, 33.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.55, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.195, 33.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.739, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.461, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.581, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.471, 34.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.639, 34.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63, 34.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.585, 34.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.609, 34.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.591, 34.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.762, 34.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.627, 34.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.841, 34.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.411, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.388, 34.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.389, 34.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.663, 34.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.245, 34.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.295, 34.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.323, 33.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.231, 34.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.152, 34.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.127, 34.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.478, 34.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.621, 34.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.632, 34.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.286, 34.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.542, 34.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.321, 33.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.148, 33.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.205, 33.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.202, 33.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.342, 33.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.123, 33.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.322, 33.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.452, 34.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.256, 33.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.409, 33.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.419, 33.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.888, 33.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.355, 33.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.296, 34.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.346, 33.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.283, 33.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.238, 33.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.268, 33.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.353, 33.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.954, 34.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.55, 34.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.594, 34.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.965, 34.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.227, 33.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.106, 33.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.931, 33.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.563, 33.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.882, 33.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.492, 33.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.225, 33.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.291, 33.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.415, 33.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.42, 33.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.446, 33.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.102, 33.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.451, 33.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.326, 33.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.478, 33.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.375, 33.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.246, 33.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25, 33.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.014, 33.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.784, 33.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.454, 34.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.613, 34.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.111, 33.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.902, 31.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.138, 31.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.629, 30.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.022, 29.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.864, 29.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.869, 29.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.749, 29.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.829, 29.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.837, 29.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.81, 29.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.821, 29.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.906, 29.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.859, 29.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.84, 29.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.849, 29.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.859, 29.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.697, 29.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.633, 29.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.626, 29.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.482, 29.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.24, 29.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.217, 29.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.094, 29.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.255, 29.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.231, 29.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.256, 29.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.354, 29.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.542, 29.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.569, 29.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.628, 29.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.66, 29.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.72, 29.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.614, 29.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.731, 29.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.527, 29.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.587, 29.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.401, 29.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.582, 29.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.502, 29.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.464, 29.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.402, 29.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.418, 29.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.262, 28.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.402, 29.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.416, 29.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.377, 29.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.392, 29.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.312, 29.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.293, 29.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.302, 28.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.327, 28.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.408, 28.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.384, 28.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.802, 29.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.568, 29.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.427, 29.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.615, 29.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.541, 29.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.829, 29.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.904, 29.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.055, 29.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.903, 29.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.921, 29.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.903, 29.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.086, 29.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.837, 29.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.823, 29.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.865, 29.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.162, 29.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.883, 29.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.024, 29.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.885, 29.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.02, 30.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.931, 29.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.949, 29.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.309, 29.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.825, 24.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.459, 24.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.751, 24.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.329, 21.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.035, 21.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.791, 21.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.159, 21.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.019, 21.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.166, 21.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.95, 21.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.984, 21.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.102, 21.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.026, 20.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.088, 20.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.289, 20.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.607, 21.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.432, 21.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.472, 21.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.64, 21.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.849, 20.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.853, 20.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.849, 20.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.829, 20.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.866, 21.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.381, 21.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.241, 20.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.234, 20.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.335, 20.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.346, 20.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.226, 20.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.125, 20.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.02, 20.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.158, 21.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.272, 21.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.146, 21.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.137, 21.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.149, 21.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.134, 21.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.219, 21.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.306, 21.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.276, 21.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.122, 21.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.122, 21.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.944, 21.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.107, 21.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.079, 21.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.696, 21.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.973, 22.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.046, 22.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.96, 22.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.592, 22.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.802, 22.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.564, 22.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.42, 22.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.199, 23.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.662, 24.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.882, 25.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.494, 26.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.721, 25.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.587, 25.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.15, 26.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.269, 26.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.278, 26.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.342, 26.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.397, 27.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.105, 27.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.405, 28.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.379, 28.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.228, 30.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.43, 30.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.883, 30.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.233, 31.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.519, 31.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.742, 32.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.836, 32.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.488, 33.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.295, 34.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.417, 35.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.497, 35.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.266, 36.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.426, 36.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.579, 37.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.567, 37.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.037, 38.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.166, 38.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.421, 39.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.378, 40.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.087, 40.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.641, 40.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.522, 40.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.029, 43.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.957, 43.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.904, 43.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.71, 43.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.767, 43.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.012, 43.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.955, 43.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.088, 43.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.018, 43.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.183, 43.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.028, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.968, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.804, 34.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.038, 34.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.067, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.445, 33.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2, 34.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.213, 34.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.224, 34.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.432, 34.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.239, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.221, 34.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.213, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.247, 34.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.232, 34.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.026, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.005, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.916, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.026, 34.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.134, 34.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.163, 34.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.15, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.01, 34.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.159, 34.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.581, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.586, 33.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.286, 33.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.269, 33.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28, 33.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.267, 33.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.198, 33.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.222, 33.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.306, 33.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.209, 33.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.213, 33.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.188, 33.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2, 33.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.169, 33.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.185, 33.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.195, 33.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.236, 33.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.174, 33.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.22, 33.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.119, 33.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.121, 33.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.119, 33.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.146, 33.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.225, 33.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.02, 33.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.339, 33.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.456, 33.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.366, 33.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.44, 33.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.451, 33.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.295, 33.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.222, 33.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.235, 33.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.104, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.974, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.119, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.219, 34.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.114, 34.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.105, 34.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.663, 34.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.291, 34.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.215, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.269, 34.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.042, 34.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.194, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.152, 34.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.137, 34.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.241, 34.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.782, 34.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.224, 34.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.026, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.087, 34.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.17, 34.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.304, 34.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.165, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.178, 33.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.87, 34.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.31, 34.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.927, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.005, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.303, 34.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.604, 34.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.646, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.571, 34.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.647, 34.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.592, 34.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.51, 34.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.328, 34.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.384, 34.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.907, 34.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.018, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.828, 34.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.437, 34.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.567, 34.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.586, 34.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.41, 34.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.126, 33.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.029, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.984, 34.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.699, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.73, 34.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.451, 34.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.123, 33.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.074, 33.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04, 33.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.134, 33.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.918, 33.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.922, 33.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.754, 33.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.195, 33.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.176, 33.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.43, 32.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.244, 32.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.253, 32.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.023, 32.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.867, 31.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.839, 31.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.854, 31.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.803, 31.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.736, 31.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.813, 31.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.83, 31.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.857, 31.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.879, 31.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.843, 31.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.84, 31.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.97, 31.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.936, 31.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.874, 31.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.764, 31.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.892, 31.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.816, 31.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.81, 31.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.75, 31.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.627, 31.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.491, 30.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.37, 30.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.345, 30.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.39, 30.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.35, 30.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.222, 30.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.43, 30.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.252, 30.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.256, 30.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.302, 30.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.425, 30.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.496, 27.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.619, 27.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.475, 27.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.311, 27.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.285, 27.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.422, 27.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.488, 27.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.447, 27.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.53, 27.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.23, 27.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.966, 27.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.603, 27.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.604, 27.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.434, 27.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.569, 27.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.247, 27.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.189, 27.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.566, 27.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.415, 27.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.392, 27.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.114, 27.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.483, 27.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.472, 27.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.337, 27.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.353, 27.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.551, 27.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.589, 27.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.6, 27.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.431, 27.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.424, 27.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.614, 27.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.463, 28.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.37, 27.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.602, 27.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.399, 27.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.38, 27.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.094, 27.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.845, 27.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.678, 25.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.625, 24.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.658, 24.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.527, 23.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.386, 22.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.612, 22.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.758, 22.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.726, 22.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.73, 22.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.631, 22.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.838, 21.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.025, 22.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.935, 21.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.639, 21.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.943, 20.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.611, 21.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.59, 21.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.591, 21.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.643, 21.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.739, 21.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.598, 21.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.893, 21.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.83, 21.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.024, 21.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.51, 21.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.499, 21.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.869, 19.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.539, 19.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.248, 18.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.709, 17.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.59, 17.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.411, 16.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.193, 16.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.191, 16.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.701, 15.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.557, 15.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.372, 15.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.679, 14.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.87, 14.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.491, 11.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.425, 10.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.672, 10.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.198, 10.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.828, 10.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.692, 9.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.978, 9.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.845, 8.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.596, 9.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.558, 9.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.799, 9.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.557, 8.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.631, 9.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.668, 9.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.595, 5.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.684, 9.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.546, 9.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.703, 9.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.115, 9.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.104, 9.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.795, 9.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.094, 9.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.908, 9.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.519, 8.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.615, 9.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.875, 9.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.664, 9.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.446, 9.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.533, 9.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.512, 9.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.517, 8.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.639, 8.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.767, 9.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.945, 8.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.813, 8.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.766, 8.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.77, 9.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.165, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.062, 34.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.062, 34.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.202, 33.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.193, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.928, 32.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.437, 28.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.178, 33.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.538, 34.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.075, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64, 34.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.548, 34.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.562, 34.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.518, 34.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.587, 34.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59, 34.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.081, 33.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.677, 33.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.612, 33.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.574, 34.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.943, 34.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.825, 34.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.251, 34.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.787, 34.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.521, 34.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.648, 34.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.285, 34.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.779, 34.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.966, 34.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.788, 34.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.777, 34.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.488, 34.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.528, 34.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.375, 33.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57, 34.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.906, 34.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.895, 34.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.374, 34.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.623, 35.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.758, 34.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.538, 34.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.632, 33.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.886, 33.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.312, 33.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.807, 33.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8, 33.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.592, 33.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.726, 33.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.413, 32.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.465, 34.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.485, 34.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.398, 34.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.402, 34.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.437, 34.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.416, 34.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.125, 34.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.294, 34.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.633, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.557, 34.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.666, 34.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.066, 35.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.178, 34.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.684, 35.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.204, 36.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.414, 36.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5, 37.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.465, 37.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.515, 37.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.699, 37.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.437, 37.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.447, 37.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.331, 37.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.316, 37.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.967, 37.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.364, 37.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.238, 37.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.398, 38.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.467, 38.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.698, 38.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.645, 38.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.753, 38.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.797, 39.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.588, 38.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.519, 38.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.312, 38.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.342, 38.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.421, 38.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.276, 37.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.28, 37.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.446, 37.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.443, 37.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.064, 38.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.258, 37.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.297, 37.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.903, 37.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.641, 31.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.526, 37.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.414, 37.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.245, 38.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.48, 37.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.447, 37.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.385, 37.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.34, 37.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.417, 38.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.401, 38.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.544, 38.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.525, 38.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.728, 37.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.042, 36.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.385, 38.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.402, 38.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.436, 38.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.434, 38.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.409, 38.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.467, 38.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.293, 38.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.884, 37.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.298, 37.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.022, 37.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.763, 38.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.439, 38.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.38, 38.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.678, 38.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.751, 37.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.417, 37.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.948, 37.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.155, 38.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.263, 37.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.343, 37.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.281, 37.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.631, 37.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.52, 37.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.431, 37.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.398, 37.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.553, 38.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.379, 38.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5, 38.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.332, 37.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.617, 38.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.479, 38.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.762, 38.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.485, 39.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.187, 39.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.14, 39.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.612, 40.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.394, 40.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.789, 40.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.623, 41.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.124, 41.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.147, 42.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.907, 42.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.786, 43.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -142.275, 43.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -142.428, 43.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -142.811, 43.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -143.579, 43.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -143.968, 42.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.154, 42.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.038, 42.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.394, 42.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.686, 42.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.79, 42.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.703, 42.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.336, 41.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.959, 40.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.102, 40.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.796, 40.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.0, 38.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -145.877, 38.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -143.959, 35.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -141.607, 34.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -141.061, 34.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.957, 34.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -140.024, 33.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.844, 33.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.85, 33.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.562, 33.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.569, 32.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.422, 32.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.462, 32.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.733, 32.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.512, 31.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.497, 31.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.881, 31.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.041, 31.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.024, 31.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.826, 31.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.38, 31.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.894, 30.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.381, 31.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.904, 31.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.856, 31.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.411, 30.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -135.341, 30.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.947, 30.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.66, 29.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.622, 29.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.213, 28.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.2, 28.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.884, 28.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.066, 28.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.155, 28.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.514, 28.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.105, 27.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.033, 27.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.369, 26.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.507, 25.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.244, 25.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.156, 25.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.937, 24.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.667, 24.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.37, 24.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.316, 24.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.271, 24.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.094, 24.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.307, 24.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.582, 24.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.202, 24.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.244, 24.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.058, 25.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.656, 24.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.519, 24.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.271, 24.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.387, 25.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.498, 25.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.84, 25.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.865, 25.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.287, 25.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.729, 25.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.817, 25.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.193, 24.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.099, 24.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.998, 24.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.699, 24.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.678, 24.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.546, 23.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.372, 23.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.914, 24.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.082, 23.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.683, 23.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.744, 23.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.528, 22.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.87, 22.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.821, 22.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.862, 22.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.808, 22.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.71, 22.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.662, 22.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.682, 22.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.783, 22.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.383, 22.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.528, 22.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.513, 22.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.004, 22.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.918, 22.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.757, 22.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.046, 22.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.829, 22.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.582, 21.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.436, 21.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.359, 21.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.108, 21.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.145, 21.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.411, 21.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.35, 21.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.071, 21.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.047, 21.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.66, 20.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.663, 20.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.726, 20.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.606, 20.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.961, 20.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.247, 20.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.895, 21.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.21, 20.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.919, 21.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.747, 20.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.86, 20.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.162, 20.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.023, 20.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.99, 20.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.988, 20.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.156, 20.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.019, 21.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.809, 20.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.744, 20.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.101, 21.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.148, 21.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.575, 22.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.18, 21.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.279, 22.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.346, 22.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.646, 22.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.9, 23.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.108, 23.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.141, 23.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.403, 23.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.347, 23.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.717, 24.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.632, 25.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.701, 25.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.908, 25.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.951, 25.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.958, 25.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.802, 25.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.994, 25.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.282, 26.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.278, 26.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.334, 26.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.428, 26.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.279, 26.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.191, 25.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.325, 25.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.283, 25.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.946, 25.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.057, 25.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.945, 25.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.265, 26.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.17, 25.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.241, 25.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.211, 25.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.083, 25.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.762, 24.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.937, 23.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.624, 24.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.864, 24.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.664, 24.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.651, 24.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.612, 24.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.61, 24.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.814, 23.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.002, 24.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.001, 24.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.063, 24.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.282, 24.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.196, 24.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.279, 24.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.675, 24.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.731, 24.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.545, 24.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.914, 24.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.411, 25.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.578, 26.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.573, 26.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.195, 26.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.838, 26.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.859, 26.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.043, 27.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.829, 27.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.828, 27.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.872, 26.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.933, 25.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.937, 25.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.933, 25.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.884, 25.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.899, 26.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.636, 26.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.841, 26.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.844, 26.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.239, 26.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.042, 26.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.139, 26.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.242, 26.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.172, 26.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.262, 26.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.284, 26.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.125, 26.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.267, 26.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.277, 26.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.086, 26.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.187, 26.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.938, 26.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.18, 26.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.181, 26.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.133, 26.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.09, 26.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.825, 26.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.098, 26.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.093, 26.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.2, 26.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.115, 26.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.332, 26.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.401, 26.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.186, 26.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.26, 26.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.269, 26.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.253, 26.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.382, 26.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.274, 26.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.007, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.912, 34.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.099, 34.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.393, 34.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.476, 34.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.201, 34.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.437, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.133, 34.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.391, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.55, 34.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.531, 34.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.613, 34.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.947, 33.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.528, 34.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.293, 33.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.372, 32.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.784, 33.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.765, 33.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99, 33.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.873, 32.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.892, 32.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.43, 32.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.413, 32.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.346, 32.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.058, 32.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.637, 31.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.743, 31.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.215, 31.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.581, 31.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.396, 31.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.072, 31.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.125, 31.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.688, 31.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.001, 30.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.558, 30.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.34, 30.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.779, 30.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.049, 30.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.194, 30.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.023, 30.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.859, 30.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.151, 31.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.45, 31.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.413, 31.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.368, 31.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.605, 31.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.696, 31.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.693, 31.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.441, 31.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.652, 31.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.616, 31.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9, 32.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.797, 32.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.776, 32.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.771, 32.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.899, 32.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.65, 32.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.679, 32.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.722, 32.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.81, 32.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.904, 32.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.508, 32.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.378, 32.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.773, 31.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.54, 32.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.716, 32.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.486, 32.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.248, 32.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.786, 33.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.939, 32.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.026, 32.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.911, 31.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.072, 31.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.447, 31.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.789, 31.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.807, 31.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.012, 31.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.938, 31.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.195, 31.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.141, 31.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.297, 31.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.78, 31.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.335, 31.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.753, 31.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.712, 31.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.833, 31.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74, 31.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73, 31.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.709, 31.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.575, 31.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.551, 31.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.466, 31.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.395, 31.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.557, 31.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.878, 31.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.273, 31.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.701, 31.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.659, 31.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.492, 30.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.77, 30.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.261, 30.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.448, 29.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.779, 29.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.312, 28.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.19, 28.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.165, 28.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.307, 28.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.207, 29.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.319, 28.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.647, 28.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.346, 29.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.307, 29.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.837, 28.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.26, 28.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.332, 28.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.214, 29.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.246, 28.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.45, 27.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.581, 28.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.254, 27.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.983, 26.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.781, 26.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.809, 25.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.069, 24.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.96, 24.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.462, 24.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.579, 24.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.646, 23.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.491, 23.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.368, 23.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.532, 23.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.437, 23.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.496, 23.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.695, 24.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.218, 22.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.226, 23.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.118, 23.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.635, 23.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.254, 23.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.888, 24.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.14, 24.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.603, 24.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.263, 24.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.363, 24.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.18, 24.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.468, 25.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.332, 25.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.25, 25.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.509, 25.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.578, 25.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.178, 25.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.109, 27.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.181, 27.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.432, 28.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.171, 28.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.123, 28.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.695, 28.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.045, 29.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.031, 29.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.303, 29.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.817, 29.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.948, 29.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.957, 29.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.891, 29.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.914, 29.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.891, 29.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.635, 29.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.815, 29.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.115, 30.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.312, 30.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.362, 31.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.478, 31.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.774, 31.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.361, 32.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.077, 32.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.676, 33.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.519, 33.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.815, 33.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.814, 31.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.641, 33.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.851, 33.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.912, 33.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.591, 33.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.804, 33.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.144, 33.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.486, 34.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.23, 33.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.559, 34.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.48, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.248, 34.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.166, 33.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.226, 33.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.183, 33.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.861, 33.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.78, 33.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.868, 33.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.819, 33.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.498, 34.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.788, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.795, 34.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.531, 34.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.611, 34.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.445, 34.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.618, 34.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.638, 34.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.287, 33.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.392, 34.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.939, 34.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.602, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.605, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.858, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.872, 31.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.555, 34.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.564, 34.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.633, 34.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.477, 33.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.577, 34.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.982, 33.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.324, 30.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.038, 34.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.792, 33.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.318, 34.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.655, 34.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.653, 34.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.44, 33.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.175, 33.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.713, 33.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.431, 33.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.322, 33.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.498, 33.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.562, 33.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.126, 33.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.05, 33.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.523, 33.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.475, 33.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.444, 33.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35, 33.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.303, 32.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.373, 32.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37, 32.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.285, 32.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.406, 32.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.383, 32.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.419, 32.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.438, 32.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.355, 32.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.64, 32.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.385, 32.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.362, 32.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.347, 32.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.256, 32.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.222, 32.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.243, 32.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.381, 32.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.374, 32.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.319, 32.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.366, 32.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.375, 32.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.321, 32.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.317, 32.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.353, 32.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.297, 32.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.336, 32.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.299, 32.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.147, 32.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.449, 32.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.553, 32.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.504, 32.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45, 32.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.42, 32.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.365, 32.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.919, 32.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.82, 32.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.019, 33.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.564, 33.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6, 33.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.608, 33.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.471, 33.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.473, 33.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5, 33.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.488, 33.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.429, 33.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.399, 33.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.392, 33.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.662, 33.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.484, 33.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.534, 33.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.701, 33.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.454, 33.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.468, 33.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.387, 33.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.184, 33.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.335, 33.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.437, 33.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.441, 33.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.441, 33.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.444, 33.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.384, 33.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.341, 33.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.483, 33.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.497, 33.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.45, 33.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.522, 33.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.465, 33.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.511, 33.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.502, 33.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.509, 33.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.485, 33.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.465, 33.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.36, 33.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.46, 33.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.413, 33.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.508, 33.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.637, 33.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.56, 33.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.603, 33.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.603, 33.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.592, 33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.404, 33.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.316, 33.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.298, 33.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.565, 33.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.657, 33.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.678, 33.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66, 33.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.689, 33.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.571, 33.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.589, 33.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.599, 33.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.728, 33.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.672, 33.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.746, 33.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8, 33.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.08, 33.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.984, 33.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.116, 33.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.099, 33.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.975, 33.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.189, 34.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.029, 33.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.905, 34.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97, 33.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.974, 33.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.915, 34.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.996, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.678, 33.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.876, 33.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.029, 33.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.948, 33.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.787, 32.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.989, 32.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.75, 32.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.302, 32.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.659, 33.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.848, 33.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.859, 33.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.06, 33.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.892, 33.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.027, 33.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.201, 33.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.228, 33.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.427, 33.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.41, 33.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.321, 33.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.783, 33.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.431, 33.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.984, 33.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.757, 32.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.393, 31.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.205, 31.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.583, 31.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.672, 31.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.943, 31.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.06, 31.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.95, 31.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.249, 31.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.017, 31.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.956, 31.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.297, 30.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.526, 31.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.736, 31.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.738, 30.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.111, 30.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.161, 30.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.714, 30.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.034, 29.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.584, 29.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.376, 29.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.524, 29.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.762, 29.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.849, 29.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.834, 29.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.992, 29.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.724, 29.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.447, 27.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.019, 34.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.038, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.12, 34.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.898, 34.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.09, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.815, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.041, 34.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.049, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.093, 34.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.115, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.217, 34.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.194, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.191, 34.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.231, 34.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.985, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.142, 34.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.098, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.053, 34.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.321, 33.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.229, 34.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.221, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.944, 34.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.089, 34.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.119, 34.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.077, 34.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.168, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.116, 33.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.212, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.17, 34.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.186, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.148, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.184, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.271, 34.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.906, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.912, 34.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.925, 34.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.079, 34.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.943, 34.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.933, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.95, 34.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.074, 34.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.123, 34.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.901, 34.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.978, 34.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.87, 34.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.905, 34.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.822, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.778, 34.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.631, 34.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.584, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.874, 34.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.707, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.635, 34.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.583, 34.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.585, 34.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.581, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.518, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.442, 34.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.646, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.486, 34.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.535, 34.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.663, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.868, 33.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.668, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.039, 33.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.051, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.233, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.322, 34.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.697, 34.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.842, 34.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.815, 34.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.78, 34.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.777, 34.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.797, 34.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.954, 34.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.812, 34.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.799, 34.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.813, 34.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.889, 34.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.91, 35.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.918, 35.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.119, 35.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.934, 35.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.31, 35.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.353, 36.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.383, 36.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.895, 37.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.996, 34.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.292, 38.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.385, 38.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.359, 38.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.251, 38.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.391, 38.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.317, 38.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.411, 38.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.48, 38.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.632, 38.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.615, 38.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.693, 38.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.894, 38.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.489, 38.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.426, 38.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.431, 38.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.422, 38.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.452, 38.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.317, 38.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.082, 38.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.123, 38.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.051, 37.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.317, 37.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.235, 37.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.203, 37.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.334, 37.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.27, 38.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.315, 38.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.408, 38.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.357, 38.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.149, 38.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.307, 38.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.354, 38.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.297, 38.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.247, 38.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.33, 38.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.273, 38.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.438, 38.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.369, 38.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.376, 38.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.426, 38.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.392, 38.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.397, 38.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.034, 38.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.292, 38.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.423, 37.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.334, 38.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.441, 37.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.442, 37.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.398, 37.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.407, 37.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.439, 37.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.307, 37.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.64, 38.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.351, 38.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.538, 38.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.336, 38.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.379, 38.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.35, 38.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.367, 38.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.307, 38.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.309, 38.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.307, 38.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.39, 38.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.484, 38.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.48, 38.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.094, 37.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.38, 38.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.692, 37.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.281, 38.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.445, 38.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.396, 38.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.863, 37.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.397, 38.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.455, 38.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.453, 38.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.397, 38.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.367, 38.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.476, 38.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.488, 38.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.451, 38.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.456, 37.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.485, 37.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.428, 37.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2, 37.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.52, 37.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.213, 37.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.571, 37.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.136, 38.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.245, 37.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.236, 37.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.442, 38.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.182, 37.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.39, 37.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.435, 37.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.388, 37.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.428, 37.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.526, 38.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.415, 38.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.314, 38.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.406, 37.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.242, 37.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.476, 38.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.473, 37.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.475, 37.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.62, 38.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.395, 37.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.491, 37.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.111, 38.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.435, 37.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.527, 38.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.601, 38.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.492, 37.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.516, 38.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.498, 38.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.504, 38.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.149, 38.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.879, 37.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.517, 38.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.473, 38.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.498, 38.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.33, 38.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.662, 38.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.93, 37.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.429, 37.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.399, 37.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.424, 37.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.364, 38.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.599, 38.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.336, 38.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.413, 37.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.496, 37.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.437, 38.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.447, 38.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.522, 38.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.487, 38.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.522, 38.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.424, 37.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.538, 37.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.318, 37.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.571, 38.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.436, 37.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.426, 37.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.448, 38.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.223, 38.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.31, 37.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.279, 37.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.817, 37.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.451, 37.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.897, 37.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.668, 37.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.678, 36.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.655, 37.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.693, 37.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.618, 37.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.972, 37.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.898, 37.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.756, 37.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.719, 37.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.716, 37.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.701, 37.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.719, 37.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.505, 37.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.587, 37.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.423, 36.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.416, 36.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.567, 37.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.474, 37.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.632, 37.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.493, 37.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.526, 37.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.526, 37.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.742, 37.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.746, 37.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.724, 37.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.868, 37.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48, 37.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.205, 37.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.825, 37.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8, 37.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.87, 37.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.859, 36.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.503, 35.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.139, 34.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.311, 32.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.083, 32.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.54, 30.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.638, 29.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.703, 29.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.734, 29.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.878, 30.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.063, 30.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.445, 31.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.88, 34.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -136.107, 37.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.491, 37.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.938, 35.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.283, 33.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.236, 33.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.641, 31.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.73, 31.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.463, 31.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.301, 25.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.475, 25.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.324, 25.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.113, 24.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.573, 23.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.072, 21.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.912, 21.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.939, 21.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.967, 21.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.451, 21.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.691, 20.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.599, 18.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.672, 18.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.15, 18.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.815, 17.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.645, 17.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.643, 17.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.467, 17.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.742, 17.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.135, 17.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.859, 18.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.788, 18.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.289, 18.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.99, 20.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.048, 20.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.07, 21.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.335, 21.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.279, 22.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.238, 22.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.498, 24.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.0, 24.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.357, 24.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.005, 25.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.213, 25.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.221, 25.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.437, 25.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.583, 26.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.266, 26.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.22, 26.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.251, 26.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.118, 27.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.627, 28.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.376, 28.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.367, 28.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.448, 27.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.49, 28.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.187, 28.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.236, 28.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.018, 28.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.64, 28.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.645, 28.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.438, 30.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.001, 30.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.65, 30.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.209, 30.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.873, 29.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.744, 34.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.044, 34.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.606, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.146, 33.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.003, 31.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.21, 31.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.739, 30.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.225, 31.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.398, 31.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.256, 31.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.338, 31.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.336, 31.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.141, 31.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.037, 31.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.973, 31.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.972, 31.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.006, 31.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.173, 31.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.072, 31.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.098, 31.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.252, 31.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.235, 31.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.252, 31.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.203, 31.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.136, 31.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.001, 31.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.802, 31.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.463, 31.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.484, 31.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.467, 32.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.431, 32.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.407, 32.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.398, 32.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.417, 32.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.714, 32.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.52, 32.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.354, 32.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.335, 32.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.262, 32.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.274, 32.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.306, 32.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.013, 32.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.255, 32.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.172, 32.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.142, 32.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.377, 32.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27, 32.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.383, 32.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.495, 32.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.266, 32.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27, 32.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.262, 32.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.286, 32.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.293, 32.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.996, 32.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.897, 32.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.944, 32.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.906, 32.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.054, 32.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.658, 32.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.571, 32.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.861, 32.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.27, 32.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.021, 33.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.685, 33.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.36, 34.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.341, 35.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32, 35.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.078, 35.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.995, 35.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.913, 36.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.986, 36.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.065, 36.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1, 36.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.886, 37.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.917, 37.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.59, 37.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.908, 37.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.032, 37.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.109, 38.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.171, 38.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.822, 38.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.736, 39.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.458, 38.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.062, 37.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.103, 37.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.177, 35.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.306, 35.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.329, 34.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.207, 34.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.263, 34.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.261, 34.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.444, 34.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.087, 34.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.485, 33.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.199, 33.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.103, 32.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.935, 32.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.816, 32.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.649, 32.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.715, 32.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.679, 32.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.587, 32.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73, 31.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.571, 32.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.418, 32.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.451, 32.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.511, 32.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.397, 32.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.121, 32.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.536, 32.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.699, 32.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.585, 32.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.03, 31.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.673, 32.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.57, 32.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.473, 32.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.621, 32.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.703, 32.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.746, 32.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.93, 32.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.029, 31.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.172, 32.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.783, 32.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.07, 32.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59, 32.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.721, 32.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8, 32.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.727, 32.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.042, 32.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.719, 32.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.064, 32.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.946, 32.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.712, 32.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.216, 32.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.154, 31.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.139, 31.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.187, 31.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.691, 31.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.672, 31.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.453, 31.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.274, 31.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.261, 31.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.821, 31.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.794, 31.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.729, 31.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.852, 31.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.585, 31.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.452, 31.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.571, 30.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.579, 30.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.531, 30.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.407, 30.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.423, 30.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.353, 30.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.479, 30.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.679, 30.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.237, 30.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.196, 30.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.102, 30.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.506, 29.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.583, 29.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.107, 29.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.672, 28.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.809, 28.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.506, 28.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.485, 28.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.03, 28.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.847, 28.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.176, 28.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.165, 29.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.601, 29.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.723, 27.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.091, 29.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.58, 30.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.849, 30.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.028, 30.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.089, 30.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.883, 30.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.897, 31.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.432, 31.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.809, 31.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.643, 31.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.184, 31.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.756, 31.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.985, 31.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.215, 31.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.28, 31.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.733, 31.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.86, 31.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.888, 31.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.882, 31.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.86, 31.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.891, 30.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.046, 31.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.843, 31.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.068, 31.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.057, 31.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.129, 31.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.725, 31.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.832, 31.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.141, 31.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.127, 31.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.151, 31.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.055, 31.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.084, 31.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.117, 31.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.917, 31.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.603, 32.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2, 32.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.051, 32.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.935, 32.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.985, 32.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.304, 31.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.138, 31.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.374, 32.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.376, 33.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.995, 35.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.97, 36.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -137.635, 40.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.385, 42.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -143.187, 45.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.479, 44.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -145.921, 39.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.012, 36.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -145.933, 36.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -145.318, 35.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -149.3, 35.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -150.188, 27.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -149.144, 26.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -149.268, 25.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -149.169, 25.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -146.285, 22.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -145.444, 21.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -145.264, 20.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.281, 19.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.223, 19.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.089, 19.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -142.46, 18.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -141.768, 17.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -141.99, 17.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.305, 15.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -138.578, 14.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.712, 12.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.677, 12.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.226, 12.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -133.956, 12.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.896, 12.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -132.505, 11.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.422, 11.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -129.724, 11.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.334, 10.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.994, 12.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.296, 12.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.398, 14.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.364, 14.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.686, 16.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.786, 17.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.673, 18.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.814, 18.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.309, 18.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.873, 22.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.729, 23.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.171, 23.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.727, 24.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.714, 23.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.847, 24.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.684, 24.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.685, 24.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.881, 24.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.675, 24.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.675, 24.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.028, 24.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.985, 24.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.398, 24.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.097, 24.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.942, 24.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.366, 24.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.932, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.997, 34.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.01, 34.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33, 34.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.167, 34.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.862, 34.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.856, 34.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.929, 34.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.102, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.782, 34.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.239, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.307, 34.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.049, 32.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.455, 34.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.754, 33.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.436, 34.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.311, 34.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.427, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.647, 34.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.113, 34.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.472, 34.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.105, 34.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.074, 34.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.161, 34.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.098, 34.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.194, 34.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.28, 34.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.26, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.417, 34.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.416, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1, 34.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.933, 34.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.052, 34.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.082, 34.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.082, 34.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.997, 35.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.191, 34.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.239, 34.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.595, 34.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.824, 34.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.628, 34.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.331, 34.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.643, 34.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.025, 34.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.188, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.477, 34.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.408, 34.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.709, 34.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.712, 34.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.605, 35.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.751, 34.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.153, 35.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.85, 35.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.002, 35.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.262, 36.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.324, 37.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.975, 37.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.072, 37.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.004, 37.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.987, 37.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.334, 36.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.174, 38.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.088, 38.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.174, 38.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.046, 37.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.676, 37.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.546, 37.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.268, 36.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.832, 36.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.571, 35.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.568, 35.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.274, 34.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.109, 34.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.161, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.988, 34.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.61, 34.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.039, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.921, 34.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.893, 34.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.478, 34.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.617, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.609, 34.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.521, 34.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.077, 34.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.569, 34.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.535, 34.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.555, 34.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.525, 34.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.577, 34.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.547, 34.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.405, 34.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.094, 34.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.82, 33.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.15, 34.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.164, 34.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.064, 34.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.127, 34.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.217, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.362, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.296, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.254, 34.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.304, 34.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.247, 34.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.382, 34.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.992, 34.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.597, 34.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.598, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.343, 34.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.297, 34.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.302, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.924, 34.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.014, 34.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.393, 34.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.035, 34.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.228, 34.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.173, 32.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.621, 34.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.562, 34.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.566, 34.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.929, 34.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.567, 34.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.505, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.317, 34.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.285, 33.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.344, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.827, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.216, 33.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.446, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.974, 33.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.939, 34.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.017, 33.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.994, 33.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.084, 33.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.082, 33.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.11, 34.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.066, 33.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.37, 33.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.471, 29.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.291, 34.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.182, 34.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.07, 34.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.244, 34.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.284, 34.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.365, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.211, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.192, 34.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.15, 33.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.218, 33.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.796, 33.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4, 33.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.503, 33.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.419, 33.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.992, 32.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.447, 32.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.916, 32.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.936, 32.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.862, 32.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.946, 34.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.206, 32.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.017, 32.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.715, 32.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.109, 32.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.84, 32.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.328, 33.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65, 32.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.664, 32.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.581, 32.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.411, 32.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.255, 32.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.314, 32.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.334, 32.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.386, 32.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.424, 32.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.383, 32.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.313, 32.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.289, 32.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.034, 32.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.212, 32.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.808, 31.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.915, 31.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.726, 31.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.83, 31.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.893, 31.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.886, 31.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.02, 31.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.758, 31.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.664, 31.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.699, 30.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.93, 31.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.634, 31.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.691, 31.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.49, 28.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.811, 31.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.787, 31.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.935, 31.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.038, 31.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.351, 31.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.054, 31.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.287, 31.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.39, 31.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.836, 31.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.563, 31.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.439, 30.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.369, 30.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.239, 30.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.984, 30.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.979, 29.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.955, 29.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.017, 29.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.415, 29.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.959, 29.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.987, 29.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.809, 29.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.695, 29.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.683, 29.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.686, 29.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.667, 29.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.292, 29.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.045, 28.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.469, 28.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.464, 28.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.525, 28.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.477, 28.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.632, 28.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.782, 25.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.361, 34.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.202, 34.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.449, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.446, 34.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.42, 34.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.562, 34.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.551, 34.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.521, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.484, 34.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.649, 34.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.752, 33.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.125, 33.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.835, 33.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.61, 34.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.061, 34.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.22, 34.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.299, 33.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.268, 33.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.104, 34.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.409, 34.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.006, 34.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.096, 35.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.117, 35.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.028, 35.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.927, 36.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.873, 35.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.246, 35.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.241, 35.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.984, 35.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.116, 35.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.733, 35.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.634, 35.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.705, 35.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.495, 35.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.654, 35.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.017, 34.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.193, 34.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.412, 34.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.379, 34.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.079, 34.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.264, 33.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.214, 33.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.424, 34.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.036, 32.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.379, 32.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.553, 32.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.974, 32.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.657, 32.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.012, 32.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.01, 32.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.899, 32.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.866, 32.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.371, 31.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.208, 31.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.358, 31.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.092, 31.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.402, 31.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.769, 31.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.609, 30.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.313, 31.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.272, 31.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.097, 34.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.039, 34.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.072, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.576, 34.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.232, 34.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.402, 34.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.781, 34.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.898, 33.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.184, 34.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.227, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.611, 34.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.499, 34.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.459, 34.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.395, 34.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.497, 34.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.493, 34.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.817, 34.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.826, 34.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.931, 34.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.079, 34.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.165, 34.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.769, 35.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.734, 35.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.251, 36.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.201, 36.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.507, 36.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.488, 36.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.786, 37.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.835, 37.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.63, 37.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.92, 37.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.566, 37.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.486, 37.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.383, 37.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.471, 37.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.381, 37.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.451, 37.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.121, 34.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.068, 34.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.386, 34.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.376, 34.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.813, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.045, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.137, 34.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.084, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.085, 34.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.666, 34.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.946, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.019, 34.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.925, 34.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.077, 34.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.922, 34.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.053, 34.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.049, 34.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.123, 34.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.252, 34.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.334, 34.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.579, 33.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.694, 34.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.68, 34.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.205, 35.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.071, 35.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.678, 35.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.066, 36.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.061, 36.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.975, 36.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.52, 37.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.789, 37.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.031, 37.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.191, 38.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.126, 38.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.179, 38.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.269, 38.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.137, 38.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.162, 37.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.105, 38.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.194, 38.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.264, 38.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.735, 38.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.002, 38.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.183, 38.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.317, 37.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.147, 37.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.238, 37.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.368, 37.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.947, 37.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.951, 37.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.959, 37.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.949, 37.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.12, 37.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.761, 37.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.928, 36.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.731, 37.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.22, 37.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.147, 37.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.586, 38.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.838, 39.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.529, 40.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.533, 40.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.136, 39.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.443, 39.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.226, 39.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.373, 39.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.704, 39.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.604, 39.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.3, 38.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.471, 38.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.376, 38.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.178, 38.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.253, 38.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.512, 38.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.066, 38.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.266, 38.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.934, 38.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.652, 37.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.927, 37.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.123, 37.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.54, 37.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.092, 37.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.201, 37.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.318, 37.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.651, 36.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.939, 36.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.097, 37.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.816, 37.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.154, 36.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.259, 37.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.12, 37.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.857, 35.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.734, 36.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.439, 36.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.001, 36.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.013, 36.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.921, 37.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.826, 37.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.991, 38.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.144, 38.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.139, 38.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.205, 39.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.037, 39.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.042, 39.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.86, 39.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.478, 39.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.743, 39.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.775, 39.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.615, 39.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.619, 40.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.543, 40.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.458, 40.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.14, 40.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.522, 40.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.788, 40.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.823, 40.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.105, 41.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.101, 41.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.926, 41.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.666, 42.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.674, 42.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.58, 42.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.711, 43.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.537, 43.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.569, 44.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.704, 44.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.84, 44.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.911, 44.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.021, 45.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.803, 45.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.95, 45.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.482, 46.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.463, 47.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.35, 48.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.215, 47.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.977, 47.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.794, 47.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.147, 47.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.364, 47.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.515, 47.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.56, 48.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.123, 47.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.149, 47.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.792, 47.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.362, 46.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.392, 47.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.909, 46.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.89, 46.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.89, 46.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.945, 46.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.974, 34.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.867, 34.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.499, 34.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.489, 34.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.726, 33.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.765, 33.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.546, 33.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.989, 33.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.378, 36.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.099, 33.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.797, 33.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.507, 33.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.77, 33.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.05, 33.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.116, 33.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.688, 33.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.001, 33.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96, 33.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.17, 33.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.395, 33.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.235, 33.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.697, 33.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.206, 33.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.14, 33.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.084, 33.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.776, 33.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.846, 33.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.898, 33.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.991, 33.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.047, 33.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.056, 33.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.922, 33.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.885, 33.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.889, 33.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.125, 32.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.293, 32.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.755, 32.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.268, 31.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.076, 32.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.514, 32.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.139, 32.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.917, 33.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.018, 33.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.239, 33.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.067, 33.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.038, 33.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.115, 33.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.499, 32.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.182, 35.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.559, 32.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.747, 33.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.269, 33.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.587, 34.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.453, 34.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.218, 34.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3, 33.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.633, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.987, 33.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.774, 33.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.274, 33.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.677, 33.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.106, 34.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.064, 29.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.874, 34.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.059, 34.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.525, 30.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.921, 35.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.317, 34.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.851, 34.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.694, 34.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.419, 34.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.291, 34.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.934, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.868, 34.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.847, 34.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.916, 34.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.334, 34.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.159, 33.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.694, 33.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.714, 33.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.504, 33.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.974, 34.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.667, 33.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.188, 33.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.882, 33.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.083, 33.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.855, 33.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.556, 33.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.581, 33.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.837, 33.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.732, 33.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.543, 33.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.551, 33.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.362, 33.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.514, 33.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.12, 33.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.714, 32.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.113, 33.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.46, 33.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.269, 33.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.989, 33.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.207, 33.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.167, 33.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.425, 33.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.041, 33.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.865, 33.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.148, 34.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.176, 33.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99, 34.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.035, 33.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.009, 33.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.265, 34.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99, 34.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.117, 33.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.246, 34.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.181, 33.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -128.85, 38.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.094, 33.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.884, 33.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.687, 33.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.325, 33.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.348, 33.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.512, 33.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.342, 33.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.019, 33.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.319, 33.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.591, 33.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.532, 33.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.744, 33.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.345, 34.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.161, 34.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.166, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.714, 34.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.929, 34.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.895, 34.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.377, 34.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.253, 34.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.87, 34.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.237, 9.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.44, 9.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.103, 9.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.179, 9.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.158, 9.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.099, 9.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.27, 9.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.214, 9.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.319, 9.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.256, 9.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.547, 8.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.394, 9.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.599, 9.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.2, 9.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.076, 9.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.377, 9.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.641, 8.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.575, 8.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.721, 8.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.718, 8.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.552, 8.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.56, 8.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.544, 8.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.485, 8.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.709, 8.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.152, 8.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.596, 8.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.623, 8.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.562, 8.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.543, 7.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.774, 8.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.715, 8.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.678, 8.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.718, 8.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.681, 8.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.606, 8.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.622, 7.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.59, 7.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.601, 8.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.451, 8.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.647, 8.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.223, 7.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.428, 7.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.446, 7.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.413, 7.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.384, 7.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.485, 7.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.275, 7.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.964, 7.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.854, 7.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.814, 7.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.817, 7.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.866, 7.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.591, 7.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.359, 7.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.259, 7.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.645, 8.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.387, 8.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.432, 8.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.523, 7.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.407, 8.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.476, 8.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.528, 8.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.364, 8.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.273, 8.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.655, 8.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.309, 8.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.284, 8.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.251, 8.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.308, 8.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.283, 8.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.144, 8.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.149, 8.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.229, 8.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.222, 8.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.266, 8.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.416, 8.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.279, 8.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.103, 8.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.142, 7.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.963, 8.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.131, 8.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.165, 8.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.117, 8.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.009, 8.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.942, 8.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.027, 8.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.86, 8.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.449, 8.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.014, 8.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.042, 8.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.029, 8.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.054, 8.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.087, 8.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.402, 8.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.082, 8.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.13, 8.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.117, 8.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.108, 8.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.208, 8.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.149, 8.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.071, 8.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.102, 8.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.018, 8.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.929, 8.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.788, 8.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.924, 8.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.31, 7.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.794, 8.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.858, 7.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.79, 7.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.564, 7.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.495, 7.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.52, 7.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.879, 7.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.303, 7.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.325, 7.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.066, 7.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.1, 7.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.012, 7.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.484, 6.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.561, 7.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.991, 7.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.052, 7.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.89, 7.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.906, 7.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.914, 7.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.097, 7.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.155, 7.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.099, 7.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.098, 7.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.018, 7.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.45, 7.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.039, 7.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.952, 7.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.827, 7.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.262, 7.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.21, 7.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.302, 6.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.877, 7.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.009, 6.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.135, 7.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.892, 7.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.942, 7.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.04, 7.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.097, 7.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.188, 8.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.935, 7.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.813, 7.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.827, 7.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.822, 7.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.024, 7.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.694, 7.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.015, 7.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.01, 7.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.033, 7.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.158, 7.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.263, 7.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.028, 7.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.971, 7.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.008, 7.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.961, 7.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.075, 8.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.935, 7.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.897, 8.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.001, 8.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.827, 7.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.033, 8.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.994, 8.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.152, 8.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.458, 7.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.143, 8.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.189, 8.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.998, 7.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.879, 8.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.959, 8.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.001, 8.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.976, 8.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.097, 8.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.137, 8.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.152, 8.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.191, 8.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.352, 9.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.439, 9.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.425, 9.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.474, 9.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.578, 9.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.305, 9.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.401, 9.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.699, 9.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.677, 9.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.948, 9.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.815, 9.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.78, 9.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.874, 9.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.889, 9.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.721, 9.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.364, 9.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.011, 9.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.921, 9.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.049, 9.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.83, 9.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.024, 9.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.08, 9.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.085, 9.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.055, 9.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.331, 9.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.347, 9.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.32, 9.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.156, 9.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.382, 8.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.595, 8.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.751, 8.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.561, 9.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.348, 9.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.172, 8.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.13, 9.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.352, 9.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.074, 9.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.982, 9.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.202, 9.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.151, 9.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.169, 9.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.248, 9.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.128, 9.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.151, 9.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.103, 8.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.079, 8.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.154, 8.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.16, 8.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.103, 7.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.043, 7.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.953, 7.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.073, 7.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.741, 7.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.008, 7.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.988, 7.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.007, 7.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.131, 7.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.898, 6.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.008, 6.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.954, 7.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.794, 7.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.878, 7.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.739, 7.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.936, 7.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.751, 7.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.721, 7.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.637, 7.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.672, 7.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.354, 7.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.776, 8.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.206, 10.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.332, 11.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.3, 11.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.807, 11.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.443, 13.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.56, 14.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.557, 15.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.516, 17.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.631, 18.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.691, 18.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.709, 18.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.561, 19.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.848, 19.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.114, 22.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.608, 26.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.196, 28.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.062, 29.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.032, 29.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.151, 29.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.908, 24.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.899, 24.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.28, 23.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.849, 22.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.8, 22.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.698, 22.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.854, 22.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.734, 22.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.947, 23.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.153, 22.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.131, 22.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.555, 22.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.832, 22.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.861, 22.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.853, 21.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.515, 21.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.068, 22.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.176, 21.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.355, 21.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.444, 21.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.664, 21.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.799, 21.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.486, 21.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.332, 20.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.485, 20.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.092, 20.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.595, 20.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.514, 20.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.554, 20.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.547, 20.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.102, 20.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.454, 20.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.525, 21.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.485, 20.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.387, 20.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.259, 21.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.282, 21.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.126, 22.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.424, 22.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.681, 23.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.775, 23.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.805, 23.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.847, 23.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.829, 23.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.872, 23.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.843, 23.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.351, 23.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.639, 26.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.657, 26.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.678, 26.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.945, 26.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.703, 26.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.945, 26.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.129, 26.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.187, 26.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.459, 27.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.689, 27.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.886, 27.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.079, 27.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.91, 27.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.78, 27.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.8, 27.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.737, 27.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.787, 27.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.481, 27.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.898, 27.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.481, 27.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.406, 27.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.596, 27.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.816, 27.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.565, 28.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.697, 28.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.58, 28.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.516, 28.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.696, 28.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.095, 28.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.716, 28.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.54, 28.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.684, 28.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.31, 28.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.698, 8.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.577, 8.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.623, 9.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.712, 9.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.81, 8.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.841, 8.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.995, 9.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.144, 9.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.291, 9.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.29, 9.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.311, 9.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.348, 9.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.393, 9.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.332, 9.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.382, 9.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.367, 9.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.294, 9.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.462, 9.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.898, 9.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.207, 9.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.228, 9.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.278, 9.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.218, 9.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.119, 9.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.133, 9.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.005, 9.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.988, 9.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.103, 9.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.233, 9.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.356, 9.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.341, 9.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.355, 9.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.355, 9.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.292, 9.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.357, 9.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.437, 9.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.384, 9.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.401, 9.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.516, 9.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.565, 9.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.588, 9.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.588, 8.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.561, 8.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.096, 8.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.56, 8.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.524, 8.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.501, 8.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.517, 8.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.492, 8.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.511, 8.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.492, 8.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.528, 8.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.583, 8.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.59, 8.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.445, 8.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.394, 8.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.339, 7.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.957, 7.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.825, 7.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.694, 7.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.592, 7.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.774, 7.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.84, 8.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.761, 7.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.804, 8.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.646, 7.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.438, 7.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.367, 7.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.419, 8.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.322, 7.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.334, 7.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.354, 7.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.154, 7.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.18, 7.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.804, 8.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.133, 8.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.105, 8.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.102, 7.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.239, 8.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.085, 8.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.168, 8.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.195, 8.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.233, 7.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.158, 7.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.122, 7.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.235, 7.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.589, 7.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.616, 8.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.593, 8.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.606, 8.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.684, 8.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.585, 9.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.545, 9.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.859, 9.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.737, 9.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.606, 9.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.229, 9.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.168, 9.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.164, 9.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.687, 8.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.926, 9.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.442, 9.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.155, 9.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.376, 9.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.352, 9.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.083, 9.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.07, 8.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.065, 8.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.049, 8.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.055, 8.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.748, 9.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.674, 9.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.49, 10.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.103, 9.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.056, 9.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.064, 9.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.095, 9.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.118, 9.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.099, 9.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.11, 9.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.102, 9.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.087, 9.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.068, 9.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 10.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.085, 9.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.122, 9.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.144, 9.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.082, 9.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.177, 9.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.728, 9.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.018, 9.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.147, 9.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.224, 9.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.576, 9.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.27, 9.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.196, 9.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.187, 9.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.295, 9.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.252, 9.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.122, 9.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.21, 9.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.839, 9.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.188, 9.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.073, 9.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.026, 9.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.294, 9.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.256, 9.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.418, 10.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.295, 10.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.247, 10.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.236, 10.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.08, 10.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.228, 10.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.234, 10.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.272, 10.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.073, 10.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.178, 10.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.432, 10.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.03, 11.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.984, 11.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.993, 11.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.978, 11.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.062, 11.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.887, 11.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.871, 11.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.766, 11.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.749, 11.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.805, 11.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.093, 11.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.471, 11.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.121, 11.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.051, 11.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.856, 11.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 11.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 10.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 10.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 10.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 10.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 10.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.146, 10.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 9.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 9.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 9.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 9.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95, 9.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 9.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.932, 9.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 9.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 8.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.242, 8.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 8.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 9.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 8.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 8.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 8.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.156, 8.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1, 8.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.782, 8.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.611, 8.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.664, 8.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 8.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66, 8.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 9.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 9.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 9.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.956, 26.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.161, 8.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.12, 8.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.149, 8.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.139, 8.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.578, 8.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.56, 8.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.511, 9.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.053, 9.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.497, 9.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.48, 9.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.551, 9.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.637, 9.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.383, 9.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.394, 9.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.375, 9.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.284, 9.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.471, 8.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.144, 9.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.872, 9.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.237, 9.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.27, 9.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.277, 9.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.248, 9.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.289, 9.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.272, 9.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.07, 9.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.769, 9.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.986, 9.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.686, 10.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.591, 10.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 10.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 10.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.527, 9.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.649, 9.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.426, 9.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 9.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 9.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 9.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 9.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 9.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 9.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.095, 9.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.301, 9.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 9.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 9.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 9.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.797, 9.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.478, 9.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.48, 9.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.47, 9.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.045, 8.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.308, 9.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.027, 8.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.206, 9.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.212, 9.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.121, 9.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.226, 9.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.57, 9.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.385, 9.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.381, 9.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.777, 8.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.478, 9.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.471, 9.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.639, 9.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.284, 9.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 9.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.031, 9.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1, 9.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.172, 13.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.941, 9.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.049, 9.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.156, 9.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.219, 9.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.166, 9.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.311, 9.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.276, 9.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.338, 9.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.417, 9.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 9.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.384, 8.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.249, 8.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.198, 8.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 9.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.269, 9.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.975, 9.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.411, 9.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.323, 9.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 9.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.311, 9.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 9.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.664, 9.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.676, 9.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.469, 9.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 9.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.452, 9.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 9.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 10.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.896, 11.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.008, 11.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.105, 11.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.114, 11.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.473, 11.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.755, 12.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.8, 12.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.412, 12.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.059, 13.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.189, 16.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.423, 23.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.366, 25.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.027, 26.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.93, 26.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.121, 30.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.172, 30.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.927, 31.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9885, 34.14913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1174, 34.15689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9794, 34.10178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2419, 34.13614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0031, 34.06798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3035, 34.01422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1941, 34.19523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1461, 34.12507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1559, 34.09061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9306, 34.17285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0546, 34.10446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1165, 34.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3391, 34.08684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1645, 34.12154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3185, 34.16566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9057, 34.10033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3714, 34.21682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6449, 34.11182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5789, 34.17644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3254, 34.11109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.37, 34.22523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0267, 34.21891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9746, 34.07998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4231, 34.21613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4311, 34.16936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5784, 34.17918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3839, 34.10579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0111, 34.12658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9937, 33.98923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0846, 33.9766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0896, 33.96028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9056, 33.90589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9818, 33.3008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3327, 32.23795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9592, 31.93195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8908, 31.64494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7478, 31.52016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8848, 31.68076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8178, 31.37594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9555, 31.52316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8781, 31.63322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8617, 31.48112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6604, 31.24069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.4115, 30.79415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.2913, 30.73322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.2428, 30.73027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.2987, 30.69189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.5041, 30.39283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.144, 29.26513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.5254, 27.97076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.1921, 27.58054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.4098, 27.79227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.4705, 27.88646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.6886, 27.81353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.3136, 27.87853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.3406, 27.7819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.171, 27.68585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.4109, 27.73657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.4578, 27.86015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.4809, 27.81305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.43, 27.8929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.6212, 27.9407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.497, 27.9325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.6508, 27.94521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.4038, 27.92093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.6081, 27.93735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.3073, 27.72257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -115.0998, 27.67894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.8047, 26.94801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.3525, 25.93432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.576, 25.07425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7758, 24.30225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2636, 23.50987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7512, 22.72026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4989, 22.23175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6656, 22.33061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6334, 22.10783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.7693, 21.85071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.0921, 22.0181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.6328, 21.94294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.5447, 21.2042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.6082, 21.53496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.657, 21.2421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.5563, 21.05077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.0758, 21.2947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.5612, 21.63182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.9547, 21.04685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.8326, 19.7738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.7683, 18.1775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -106.0501, 17.39525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.306, 16.86868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.4252, 16.33655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.5767, 15.88203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.7649, 15.32611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -101.8885, 14.84006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.8904, 14.23337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.20278, 13.39903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.55514, 12.44105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.71202, 11.53263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.659, 10.78034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.62232, 10.2543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.96206, 9.795635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.89252, 9.412977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.82836, 8.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.83921, 9.211943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.50646, 9.220568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.81202, 9.240742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.66148, 9.363512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.81416, 9.212676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.67103, 9.315091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.78783, 9.335562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.59317, 9.443141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.85668, 9.361316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.76366, 9.217155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.17566, 9.437918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.76503, 9.428951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.07176, 9.430396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.03343, 9.457669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.34711, 9.404887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.50776, 9.194185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.86674, 9.539499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.79413, 9.526666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.85851, 9.590996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.66682, 9.4822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.65826, 9.452164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.56973, 9.394407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.51623, 9.328351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.51535, 9.040782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.50596, 8.974679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.60756, 8.720664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.58768, 8.999433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.97529, 8.4332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.07414, 8.590251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.9382, 8.5726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.9166, 8.636526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.81426, 8.637401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.82372, 8.710919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.78284, 8.830789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.7969, 8.807275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.76902, 8.831293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.77765, 8.865419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.78091, 8.875974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.76039, 8.905239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.76638, 8.914614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.7654, 8.942267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.77327, 8.976444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.79075, 9.003178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.77751, 9.027009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.77971, 9.062367 ] } } +] +} diff --git a/data/blueWhale.jpg b/data/blueWhale.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c00418608925ba0da90a7b07beb4a08c78bac92 GIT binary patch literal 47983 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 literal 0 HcmV?d00001 diff --git a/data/bowheadWhale.geojson b/data/bowheadWhale.geojson new file mode 100644 index 0000000..0b5a485 --- /dev/null +++ b/data/bowheadWhale.geojson @@ -0,0 +1,90228 @@ +{ +"type": "FeatureCollection", +"name": "bowheadWhale", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.065, 72.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.96, 72.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.299, 72.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.506, 72.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.649, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.699, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 71.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.441, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.276, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.363, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.404, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.456, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.553, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.744, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.357, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.362, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.822, 71.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.433, 71.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.646, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.434, 71.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.377, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.268, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.424, 71.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.308, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.427, 71.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.502, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.155, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.241, 71.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.939, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.282, 71.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.461, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.562, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.407, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.47, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.813, 71.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.224, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.297, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.382, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.534, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.397, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.405, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.448, 72.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.422, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.411, 72.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.374, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.718, 72.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.229, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.349, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.318, 71.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.367, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.38, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.402, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.209, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.178, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.696, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.568, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.844, 71.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.474, 71.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.163, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.465, 71.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.151, 71.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.086, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.833, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.904, 71.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.346, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.365, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.361, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.373, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.431, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.365, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.404, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 72.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.454, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.462, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.438, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.386, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.391, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.334, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.212, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.276, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.289, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.945, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.311, 71.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.121, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.874, 71.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.689, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.705, 71.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.844, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.916, 71.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.787, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.028, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.206, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.202, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.993, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.58, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.432, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.596, 71.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.742, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.024, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.962, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.228, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.284, 71.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.193, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.933, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.252, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.503, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.957, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.945, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.891, 71.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.999, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.102, 71.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.612, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.403, 71.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.122, 71.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.357, 71.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.619, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.547, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.546, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.582, 71.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.471, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.441, 71.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.548, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.2, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.333, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.681, 71.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.25, 71.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.505, 71.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.698, 71.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.618, 71.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.602, 71.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.543, 71.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.887, 71.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.771, 71.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.997, 71.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.37, 71.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.901, 71.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.231, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.553, 71.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.299, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.538, 71.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.702, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.715, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.355, 71.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.979, 71.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.053, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.199, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.004, 72.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.046, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.471, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.752, 72.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.914, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.916, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.839, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.954, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.047, 72.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.021, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.287, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.176, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.605, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.401, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 72.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.506, 72.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.431, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.461, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.463, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.485, 71.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.212, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.482, 72.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.434, 72.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.328, 72.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.399, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.397, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.154, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.349, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.281, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.398, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.47, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.449, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.357, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.136, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.858, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.897, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.964, 71.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.962, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.0, 71.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.566, 71.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.675, 71.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.336, 71.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.341, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.935, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.401, 71.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.53, 71.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.13, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.735, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.406, 71.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.699, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.059, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.985, 71.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.889, 71.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.45, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.631, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.463, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.946, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.68, 71.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.996, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.295, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.114, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.25, 71.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.317, 71.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.106, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.558, 72.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.414, 71.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.515, 71.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23, 71.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.757, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.638, 71.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.748, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.74, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.356, 72.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.01, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.451, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.989, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.968, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.765, 72.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.229, 72.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.164, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.318, 72.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.671, 72.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.419, 72.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.544, 72.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.635, 72.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.85, 72.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.588, 72.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.65, 72.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.232, 73.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.144, 73.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.088, 73.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.392, 73.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.041, 73.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.377, 67.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.954, 73.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.932, 73.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.83, 73.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.456, 73.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.801, 73.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.857, 73.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.328, 73.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.608, 73.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.81, 73.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.992, 73.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.172, 73.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.815, 73.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.002, 73.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.678, 73.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.176, 74.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.185, 74.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.988, 74.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.803, 74.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.076, 73.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.608, 74.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.622, 74.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.451, 74.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.507, 74.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 74.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 74.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.968, 74.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.994, 74.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.383, 74.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.062, 74.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.651, 74.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.935, 74.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.441, 74.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.86, 74.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.883, 74.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.301, 73.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.026, 73.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 73.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.014, 73.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.539, 73.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.105, 73.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.128, 73.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.237, 73.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.92, 71.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.936, 71.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.093, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.922, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.515, 73.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.706, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.158, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.552, 72.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.682, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.878, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.19, 72.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.348, 72.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.675, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.391, 72.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.628, 73.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.067, 73.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.886, 73.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.406, 73.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.392, 73.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.751, 72.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 72.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 72.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.873, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.519, 72.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.406, 72.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.004, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.119, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.917, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.348, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.057, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.491, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.48, 71.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.004, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.973, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.78, 71.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.949, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 71.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.676, 70.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.408, 71.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.737, 71.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.737, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.002, 71.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 71.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.519, 72.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.632, 71.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.15, 71.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.658, 71.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.442, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.11, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.149, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.262, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.575, 72.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.783, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.809, 72.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.343, 72.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.21, 72.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.226, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.918, 72.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.347, 72.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.327, 72.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.118, 73.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.1, 73.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.931, 73.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.822, 73.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.771, 73.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.43, 73.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.841, 73.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.62, 73.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.164, 73.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.301, 73.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.471, 73.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.492, 73.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.055, 73.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.331, 73.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.502, 73.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.443, 72.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.853, 72.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.29, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.133, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 71.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.992, 70.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.283, 70.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.489, 70.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.294, 70.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.723, 70.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 70.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.68, 70.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 70.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.816, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.964, 70.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 71.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.864, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.488, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.978, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.533, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.17, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.487, 71.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.295, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.282, 71.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 70.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.437, 71.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 70.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.076, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.467, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.724, 71.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.826, 71.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.937, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.388, 70.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.443, 70.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 70.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.195, 70.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 70.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.389, 70.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01, 70.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 70.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 70.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 70.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.592, 70.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.611, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.379, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.437, 70.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.636, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.575, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.581, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.127, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.811, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.823, 69.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.569, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.44, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.53, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.247, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.442, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.658, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.276, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.045, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.223, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.762, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.679, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.334, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.344, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.192, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.361, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.019, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.864, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.515, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.739, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.499, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.794, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.039, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.77, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 70.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.171, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.528, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.114, 71.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.036, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.861, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.124, 72.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.315, 72.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.209, 72.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.542, 72.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.629, 72.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.556, 72.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.651, 72.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.6, 72.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.247, 73.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.109, 73.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.149, 73.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.035, 73.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.667, 73.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.666, 73.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.834, 73.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.663, 73.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.153, 73.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.491, 73.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.211, 73.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.574, 73.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.799, 73.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.869, 73.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.809, 73.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.505, 72.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.739, 72.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.432, 72.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 72.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.495, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.263, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.739, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.937, 71.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.798, 70.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.956, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 72.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.718, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 71.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.431, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.985, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.534, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 71.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.781, 71.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.525, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.726, 71.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.542, 71.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.723, 70.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.629, 70.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.011, 70.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 70.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 70.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.484, 70.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 70.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.867, 70.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 70.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 70.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.868, 70.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.089, 70.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 70.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.457, 70.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 70.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 70.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 70.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.966, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.216, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 70.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 70.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.268, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.136, 70.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 70.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.682, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.794, 70.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.985, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.114, 70.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.754, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.958, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.223, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.177, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.935, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.434, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.052, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.857, 70.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.747, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.932, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.544, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.579, 70.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.516, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.766, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.519, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.463, 70.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.375, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.805, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.347, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.933, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.219, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.078, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.781, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.917, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.459, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.109, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.277, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.748, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.294, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.048, 69.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.845, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.213, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.282, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.554, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.809, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.096, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.863, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.748, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.745, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.504, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.434, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.598, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.087, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.126, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.781, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.094, 70.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.264, 70.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 70.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.383, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.371, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.145, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.262, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.106, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.065, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.553, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.497, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.406, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.272, 70.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.399, 70.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.621, 70.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.628, 70.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.752, 70.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.854, 70.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 70.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.586, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.735, 70.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.742, 66.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.552, 70.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.292, 70.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.73, 70.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.883, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.882, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.801, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.387, 70.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.391, 70.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.587, 70.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.364, 70.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.367, 70.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.458, 70.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.403, 70.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 70.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.347, 70.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.528, 70.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.315, 70.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 70.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 70.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.035, 70.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.485, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 70.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 72.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.687, 72.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.673, 72.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.553, 72.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.613, 72.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.527, 72.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.298, 72.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.324, 73.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.331, 73.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.453, 73.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.065, 72.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.96, 72.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.299, 72.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.506, 72.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.649, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.699, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 71.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.441, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.276, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.363, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.404, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.456, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.553, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.744, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.357, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.362, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.822, 71.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.433, 71.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.646, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.434, 71.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.377, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.268, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.424, 71.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.308, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.427, 71.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.502, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.155, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.241, 71.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.939, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.282, 71.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.461, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.562, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.407, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.47, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.813, 71.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.224, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.297, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.382, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.534, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.397, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.405, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.448, 72.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.422, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.411, 72.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.374, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.718, 72.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.229, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.349, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.318, 71.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.367, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.38, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.402, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.209, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.178, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.696, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.568, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.844, 71.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.474, 71.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.163, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.465, 71.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.151, 71.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.086, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.833, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.904, 71.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.346, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.365, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.361, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.373, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.431, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.365, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.404, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 72.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.454, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.462, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.438, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.386, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.391, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.334, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.212, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.276, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.289, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.945, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.311, 71.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.121, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.874, 71.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.689, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.705, 71.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.844, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.916, 71.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.787, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.028, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.206, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.202, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.993, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.58, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.432, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.596, 71.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.742, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.024, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.962, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.228, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.284, 71.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.193, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.933, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.252, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.503, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.957, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.945, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.891, 71.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.999, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.102, 71.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.612, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.403, 71.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.122, 71.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.357, 71.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.619, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.547, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.546, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.582, 71.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.471, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.441, 71.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.548, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.2, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.333, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.681, 71.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.25, 71.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.505, 71.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.698, 71.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.618, 71.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.602, 71.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.543, 71.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.887, 71.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.771, 71.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.997, 71.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.37, 71.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.901, 71.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.231, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.553, 71.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.299, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.538, 71.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.702, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.715, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.355, 71.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.979, 71.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.053, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.199, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.004, 72.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.046, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.471, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.752, 72.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.914, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.916, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.839, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.954, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.047, 72.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.021, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.287, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.176, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.605, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.401, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 72.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.506, 72.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.431, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.461, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.463, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.485, 71.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.212, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.482, 72.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.434, 72.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.328, 72.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.399, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.397, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.154, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.349, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.281, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.398, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.47, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.449, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.357, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.136, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.858, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.897, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.964, 71.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.962, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.0, 71.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.566, 71.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.675, 71.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.336, 71.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.341, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.935, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.401, 71.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.53, 71.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.13, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.735, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.406, 71.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.699, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.059, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.985, 71.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.889, 71.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.45, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.631, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.463, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.946, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.68, 71.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.996, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.295, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.114, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.25, 71.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.317, 71.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.106, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.558, 72.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.414, 71.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.515, 71.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23, 71.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.757, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.638, 71.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.748, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.74, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.356, 72.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.01, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.451, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.989, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.968, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.765, 72.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.229, 72.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.164, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.318, 72.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.671, 72.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.419, 72.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.544, 72.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.635, 72.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.85, 72.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.588, 72.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.65, 72.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.232, 73.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.144, 73.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.088, 73.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.392, 73.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.041, 73.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.377, 67.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.954, 73.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.932, 73.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.83, 73.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.456, 73.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.801, 73.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.857, 73.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.328, 73.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.608, 73.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.81, 73.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.992, 73.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.172, 73.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.815, 73.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.002, 73.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.678, 73.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.176, 74.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.185, 74.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.988, 74.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.803, 74.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.076, 73.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.608, 74.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.622, 74.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.451, 74.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.507, 74.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 74.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 74.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.968, 74.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.994, 74.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.383, 74.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.062, 74.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.651, 74.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.935, 74.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.441, 74.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.86, 74.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.883, 74.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.301, 73.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.026, 73.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 73.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.014, 73.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.539, 73.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.105, 73.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.128, 73.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.237, 73.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.92, 71.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.936, 71.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.093, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.922, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.515, 73.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.706, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.158, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.552, 72.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.682, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.878, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.19, 72.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.348, 72.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.675, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.391, 72.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.628, 73.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.067, 73.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.886, 73.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.406, 73.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.392, 73.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.751, 72.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 72.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 72.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.873, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.519, 72.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.406, 72.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.004, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.119, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.917, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.348, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.057, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.491, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.48, 71.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.004, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.973, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.78, 71.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.949, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 71.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.676, 70.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.408, 71.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.737, 71.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.737, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.002, 71.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 71.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.519, 72.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.632, 71.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.15, 71.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.658, 71.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.442, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.11, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.149, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.262, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.575, 72.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.783, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.809, 72.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.343, 72.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.21, 72.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.226, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.918, 72.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.347, 72.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.327, 72.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.118, 73.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.1, 73.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.931, 73.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.822, 73.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.771, 73.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.43, 73.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.841, 73.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.62, 73.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.164, 73.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.301, 73.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.471, 73.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.492, 73.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.055, 73.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.331, 73.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.502, 73.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.443, 72.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.853, 72.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.29, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.133, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 71.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.992, 70.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.283, 70.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.489, 70.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.294, 70.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.723, 70.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 70.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.68, 70.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 70.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.816, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.964, 70.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 71.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.864, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.488, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.978, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.533, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.17, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.487, 71.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.295, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.282, 71.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 70.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.437, 71.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 70.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.076, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.467, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.724, 71.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.826, 71.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.937, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.388, 70.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.443, 70.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 70.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.195, 70.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 70.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.389, 70.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01, 70.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 70.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 70.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 70.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.592, 70.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.611, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.379, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.437, 70.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.636, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.575, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.581, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.127, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.811, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.823, 69.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.569, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.44, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.53, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.247, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.442, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.658, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.276, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.045, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.223, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.762, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.679, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.334, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.344, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.192, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.361, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.019, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.864, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.515, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.739, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.499, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.794, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.039, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.336, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.916, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.911, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.875, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.725, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.857, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.822, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.838, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.823, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.717, 69.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.771, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.865, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.149, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.998, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.884, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.528, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 69.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.395, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.275, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.46, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.88, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.116, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.311, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.413, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.329, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.216, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.387, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.98, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.949, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.482, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.471, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.583, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.454, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.439, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.478, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.474, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.47, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.2, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.606, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.558, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.553, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.419, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.265, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.523, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.893, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.589, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.885, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.866, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.911, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.533, 69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.035, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.136, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.315, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.31, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.66, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.823, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.694, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.862, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.872, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.177, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.202, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.331, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.406, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.392, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.483, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.483, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.501, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.505, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.604, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.56, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.625, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.63, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.749, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.137, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.088, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.855, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.181, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.981, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.436, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.434, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.495, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.571, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.625, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.607, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.605, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.501, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.616, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.533, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.635, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.839, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.827, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.153, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.851, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.913, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.853, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.103, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.541, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.687, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.414, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.435, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.578, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.786, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.407, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.997, 70.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.193, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.444, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.617, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.597, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.826, 70.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.691, 70.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.077, 70.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.204, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.214, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.366, 70.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.112, 70.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.001, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.197, 70.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.335, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.404, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.483, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.357, 71.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.503, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.771, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.837, 71.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.928, 71.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.831, 71.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.989, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.146, 71.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.754, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.265, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.286, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.443, 72.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 72.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.171, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.266, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 72.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 72.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.795, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 72.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.1, 72.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 72.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.979, 72.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 72.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.391, 72.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 72.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.304, 72.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.309, 72.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.467, 72.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 72.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.435, 72.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.341, 72.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 72.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.502, 72.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 72.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.642, 72.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.449, 72.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 72.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.527, 72.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.514, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.284, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 72.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 72.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 72.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66, 72.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.685, 72.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.821, 72.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 72.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.91, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 72.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.564, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.064, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 71.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.584, 70.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.521, 70.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49, 70.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.461, 70.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.957, 70.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.374, 70.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.296, 70.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.244, 70.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.594, 70.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.613, 70.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.635, 70.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.326, 70.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.969, 70.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.999, 70.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.226, 70.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.127, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.005, 70.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.028, 70.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.971, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.908, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.041, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.882, 70.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.467, 70.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.592, 70.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.526, 70.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.467, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.209, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.506, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.638, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.805, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.643, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.457, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.309, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.238, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.548, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.718, 65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.823, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.789, 65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.851, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.814, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.934, 65.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.77, 65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.763, 65.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.669, 65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.672, 65.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.623, 65.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.725, 65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.632, 65.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.803, 65.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.688, 65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.588, 65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.423, 65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.268, 65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.594, 65.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.552, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.604, 65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.528, 65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.689, 65.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.621, 65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.497, 65.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.471, 65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.448, 65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.384, 65.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.5, 65.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.457, 65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.468, 65.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.089, 65.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.734, 65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.134, 65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.598, 65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.511, 65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.565, 65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.232, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.342, 65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.353, 65.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.362, 65.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.188, 65.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.129, 65.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.095, 65.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.165, 65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 65.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.117, 65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.17, 65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.058, 65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.18, 65.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.066, 65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.223, 65.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.182, 65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.189, 65.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 65.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.628, 65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.293, 65.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 65.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.087, 65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.222, 65.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.965, 65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.15, 65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.091, 65.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.081, 65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.206, 65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.002, 65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.941, 65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 65.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.964, 65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 65.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.079, 65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.307, 65.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.169, 65.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.214, 65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.415, 65.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.143, 65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.077, 65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.969, 65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 65.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.062, 65.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.35, 65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.103, 65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 65.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.102, 65.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.188, 65.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.113, 65.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.533, 65.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.392, 65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.055, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.22, 65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 65.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.196, 65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.245, 65.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.276, 65.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.764, 65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.796, 65.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.062, 65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.24, 65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.186, 65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.503, 65.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.126, 65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.046, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.167, 65.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.937, 65.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.672, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.435, 65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.05, 65.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.327, 65.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 65.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.271, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.392, 65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.384, 65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.003, 65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.641, 65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.455, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.154, 65.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.296, 65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.486, 65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.439, 65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.426, 65.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.402, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.423, 65.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.347, 65.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.335, 65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.479, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.507, 65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.069, 65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.489, 65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.568, 64.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.516, 65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.47, 65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.585, 65.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.253, 65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.292, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.66, 65.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.787, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.311, 65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.589, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.632, 65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.321, 65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.828, 65.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.136, 65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.45, 65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.935, 65.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.109, 65.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.589, 65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.425, 65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.846, 65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.983, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.867, 65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.227, 65.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 65.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.246, 65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.905, 65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.726, 65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.183, 65.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.173, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.401, 65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.16, 65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.347, 65.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.525, 65.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.139, 64.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.106, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.487, 65.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.208, 65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.467, 65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.774, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 65.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.38, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.486, 65.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.562, 65.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.997, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.835, 65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.895, 65.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.864, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.742, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.984, 65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.344, 65.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.451, 65.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.258, 65.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.448, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.358, 65.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 65.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.806, 65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.798, 65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.796, 65.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.38, 65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.792, 65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.542, 65.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.62, 65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.19, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.772, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.669, 65.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.861, 65.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.068, 65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.84, 65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.225, 65.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.084, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.677, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.936, 65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.444, 65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.744, 65.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.903, 65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 65.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 65.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.624, 65.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.691, 66.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.535, 65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.527, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.001, 65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.394, 65.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.671, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.513, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.369, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.52, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.013, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.77, 65.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.516, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.845, 65.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.652, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.314, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.532, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.543, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.076, 65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.485, 65.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 65.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.382, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.613, 65.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.318, 66.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.831, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.79, 65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.772, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.738, 66.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.714, 65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.14, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.682, 65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.542, 66.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.855, 66.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.0, 65.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.685, 65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 65.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.726, 65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.599, 65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.717, 65.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.753, 65.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.564, 65.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.409, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.877, 65.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.684, 65.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.713, 65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.62, 65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.094, 65.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.406, 65.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.466, 65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.259, 65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.083, 65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.511, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.598, 65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.173, 65.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.609, 65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.506, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 65.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.679, 65.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.898, 65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.015, 67.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.723, 67.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.723, 68.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.591, 68.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.675, 68.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.221, 68.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.402, 68.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.308, 69.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.434, 69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.289, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.089, 70.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.112, 69.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -154.95, 83.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.333, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.697, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.465, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.399, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.542, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.722, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.9, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.192, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.646, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.591, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.396, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.766, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.572, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.452, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.518, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.476, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.741, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.653, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.734, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.689, 70.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.259, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.172, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.872, 70.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.804, 70.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.984, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.395, 70.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.44, 70.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.545, 70.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.535, 70.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.522, 70.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.863, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.452, 70.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.231, 70.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.252, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.013, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.411, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.838, 70.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.853, 70.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.948, 70.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.949, 70.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.787, 70.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.968, 70.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.117, 70.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.173, 70.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.223, 70.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.21, 70.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.269, 70.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.296, 70.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.273, 70.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.441, 70.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.356, 70.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.423, 70.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.374, 70.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.487, 70.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.437, 70.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.448, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.452, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.487, 71.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.445, 71.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.455, 71.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.377, 70.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.249, 70.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.384, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.428, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.358, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.399, 70.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.387, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.388, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.407, 70.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.385, 70.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.252, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.423, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.413, 70.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.437, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.383, 70.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.389, 70.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.706, 70.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.506, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.523, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.614, 70.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.447, 70.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.442, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.479, 70.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.441, 70.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.293, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.275, 70.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.29, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.309, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.658, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.512, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.39, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.422, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.429, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.399, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.208, 71.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.378, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.488, 71.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.413, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.434, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.32, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.277, 70.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.343, 70.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.123, 70.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.111, 70.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.398, 70.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47, 70.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.312, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.258, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.258, 70.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.439, 70.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.312, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.354, 70.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.096, 70.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.507, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.378, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.415, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.623, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.494, 71.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.495, 71.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.58, 71.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.383, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.262, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.045, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.131, 71.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.498, 71.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.418, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.613, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.177, 71.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.426, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.437, 71.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.308, 71.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.355, 71.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.202, 71.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.263, 71.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.832, 71.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.074, 71.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.051, 71.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13, 71.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.304, 71.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.339, 71.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.267, 71.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.337, 71.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.321, 71.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.421, 71.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.359, 71.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.566, 71.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.768, 71.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.431, 71.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.372, 71.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.376, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.324, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.209, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.167, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.96, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.951, 71.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.202, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.053, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.025, 70.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.881, 70.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.917, 70.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.959, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03, 70.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.644, 70.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.338, 70.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.828, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.875, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.864, 70.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.108, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.233, 71.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.735, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.023, 71.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.452, 71.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.967, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.904, 71.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.987, 71.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.871, 71.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.316, 71.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.84, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.127, 70.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.365, 71.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.885, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.015, 71.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.486, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.484, 71.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.39, 71.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.898, 71.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.172, 71.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.182, 71.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.54, 71.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.611, 71.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.785, 71.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.698, 71.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.67, 71.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.687, 71.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.019, 71.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.668, 71.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 71.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.656, 71.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.061, 71.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.976, 71.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.601, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.783, 71.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6, 71.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.474, 71.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.666, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.691, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.195, 71.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.534, 71.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.011, 70.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.116, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.416, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.891, 70.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.566, 70.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.575, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.147, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.654, 70.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.071, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.258, 71.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.598, 71.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.028, 70.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.925, 71.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.622, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.705, 71.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.187, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.965, 71.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.117, 70.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.444, 70.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.412, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.241, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.514, 71.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.494, 71.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.723, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09, 71.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.393, 71.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16, 71.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.571, 71.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.173, 70.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.329, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.656, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.954, 71.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.438, 71.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.888, 72.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.34, 71.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.302, 71.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 70.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.984, 70.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.483, 70.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.707, 70.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.031, 70.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.463, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.029, 70.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.442, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.706, 70.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.072, 70.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.368, 70.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.007, 70.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.941, 70.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.762, 70.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.918, 70.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.796, 70.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77, 70.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.654, 70.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.587, 70.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.555, 70.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.052, 70.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.676, 70.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.019, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.877, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.627, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.488, 70.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.274, 70.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.513, 70.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.125, 70.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.542, 70.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.942, 70.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.919, 70.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.917, 70.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.557, 70.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.008, 70.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.044, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.066, 70.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.052, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.013, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.014, 70.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.945, 70.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.588, 70.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.004, 70.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.235, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.961, 70.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.249, 70.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.223, 70.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.393, 70.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.864, 70.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.948, 70.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.962, 70.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.591, 70.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.837, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.314, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.638, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.037, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.555, 69.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.02, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.008, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.52, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.796, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.656, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.418, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.397, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.776, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.829, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.44, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.518, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.745, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.175, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.085, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.637, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.866, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.352, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.172, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.579, 69.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.365, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.097, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.743, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.937, 69.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.09, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.015, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.149, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.346, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.813, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.977, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.994, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.025, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.984, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.818, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.415, 69.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.824, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.261, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.129, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.255, 70.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.438, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.323, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.307, 70.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.108, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.238, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.305, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.461, 70.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.419, 70.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.442, 70.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.205, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.434, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.46, 70.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.73, 70.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.077, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.156, 73.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79, 73.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.795, 73.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.473, 73.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.453, 73.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.836, 73.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.994, 73.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.979, 73.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.891, 74.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.362, 73.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.983, 73.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.237, 73.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.238, 73.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.236, 73.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.645, 73.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 73.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.838, 73.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.668, 73.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.871, 73.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.055, 73.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.744, 73.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.492, 73.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.366, 73.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.009, 73.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.476, 72.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.613, 73.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.834, 73.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.658, 72.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.627, 72.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.579, 72.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.471, 72.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.816, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.654, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.171, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.84, 71.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.998, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.457, 70.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.341, 70.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.174, 70.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.494, 70.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.665, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.605, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.086, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.014, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.993, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.749, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.226, 69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.053, 68.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.337, 69.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.054, 68.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.744, 68.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.922, 68.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 68.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.821, 68.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.291, 68.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.742, 68.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 68.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 68.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.668, 67.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.075, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 68.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.115, 68.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.35, 67.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.299, 67.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.397, 67.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.951, 67.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.781, 67.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.315, 67.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.538, 67.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.668, 67.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.57, 67.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.222, 67.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.606, 67.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.081, 67.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.86, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.387, 67.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.282, 67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.869, 67.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.053, 67.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.206, 67.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.141, 67.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.553, 67.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.198, 67.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.213, 67.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.245, 67.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.16, 67.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.06, 67.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.785, 67.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.866, 67.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.217, 67.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -58.268, 68.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.786, 67.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.406, 67.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.935, 66.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.395, 65.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.242, 65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.133, 64.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.519, 64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.522, 64.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.339, 64.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.856, 64.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.17, 64.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.863, 65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.983, 65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.651, 65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.524, 65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.914, 65.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.931, 65.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.138, 65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.869, 65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.922, 65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.633, 65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.676, 65.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.687, 65.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.848, 65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.416, 65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.137, 64.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.181, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.734, 64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.061, 64.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.843, 64.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.592, 65.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 64.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.427, 64.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.559, 64.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.008, 64.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.918, 64.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 64.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.565, 64.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.558, 64.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.613, 64.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.399, 64.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.456, 63.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.39, 64.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.815, 63.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.953, 63.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.915, 63.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.899, 63.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.057, 63.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.926, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.016, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.927, 62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.148, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.855, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.05, 62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.815, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.389, 63.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.446, 63.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.818, 63.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.533, 63.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.511, 63.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.429, 63.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.44, 63.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.36, 63.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.188, 63.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.777, 63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.485, 62.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.052, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.992, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.04, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.067, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.001, 62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.821, 62.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.802, 62.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.25, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.363, 63.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.033, 63.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.315, 63.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.768, 63.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.049, 64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.357, 64.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 64.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.039, 64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.258, 64.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.456, 65.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.133, 65.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.186, 65.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.744, 66.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.596, 67.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.5, 66.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.561, 66.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.723, 67.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.205, 66.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.228, 67.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.817, 68.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.564, 68.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.64, 68.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.5, 68.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.825, 68.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.795, 68.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 68.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.288, 68.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.011, 68.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.358, 68.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 68.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.034, 68.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.741, 68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.885, 68.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.849, 68.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.349, 68.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.957, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.194, 69.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.402, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.783, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.067, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.348, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.202, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.711, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 70.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.036, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.016, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.189, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.469, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.48, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.078, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.41, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.59, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.056, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.699, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.747, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.84, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.69, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.607, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.645, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.404, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.632, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.181, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.34, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.564, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.772, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.026, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.612, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.697, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.858, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.202, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.428, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.688, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.887, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.035, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.874, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.852, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.799, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.068, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.644, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.227, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.725, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.692, 70.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.961, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.844, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.692, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.373, 70.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.263, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.516, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.836, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.029, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.96, 69.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.298, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.094, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.021, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.956, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.322, 70.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.598, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.863, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.828, 70.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.253, 70.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.053, 70.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.471, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -144.396, 60.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.599, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.887, 70.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.907, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.819, 70.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.091, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.255, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.573, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.704, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.318, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.546, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.707, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.497, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.359, 70.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.562, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.251, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.252, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.736, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.368, 70.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.459, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.192, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.549, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.138, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.943, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.356, 66.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.887, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.632, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.043, 70.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.864, 69.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.948, 70.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.372, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.641, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.553, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.918, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.521, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.914, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.113, 68.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.096, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.627, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.308, 69.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.519, 68.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.587, 69.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.122, 68.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.703, 68.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.867, 69.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.706, 68.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.943, 68.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.807, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.265, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.112, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.647, 70.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.737, 68.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.401, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.01, 68.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 70.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.969, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.639, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.233, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.281, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.904, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.777, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.364, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.37, 70.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.996, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.783, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.551, 70.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.711, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.751, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.886, 71.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.419, 70.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.171, 70.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.175, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.796, 68.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.436, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.644, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.224, 69.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.702, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98, 70.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.562, 70.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.008, 70.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.605, 70.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.323, 70.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.613, 62.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -103.692, 72.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 60.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.043, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.511, 73.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.788, 71.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.935, 69.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.683, 61.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.426, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.327, 70.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.288, 70.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.58, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.225, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.105, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.171, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.133, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.131, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.098, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.116, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.121, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.409, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.683, 70.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.772, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.877, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.918, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.709, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.772, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.868, 69.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.888, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.816, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.891, 69.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.226, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.768, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.769, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.833, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.924, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.994, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.828, 69.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.543, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8, 69.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.767, 69.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.43, 69.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.73, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.533, 68.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.036, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.98, 68.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94, 69.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.867, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.783, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.99, 68.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.786, 68.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21, 69.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.662, 69.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.771, 69.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.787, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.483, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.838, 69.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.679, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.71, 69.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.647, 68.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.897, 69.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.621, 69.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 68.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.284, 68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.882, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.199, 68.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.044, 68.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 68.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.592, 68.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -162.918, 81.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.65, 68.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.106, 69.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.006, 68.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.989, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.771, 69.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.286, 68.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.981, 69.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.873, 68.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.503, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.28, 69.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.146, 70.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.794, 69.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.872, 68.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.546, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.252, 69.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.13, 68.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.696, 69.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.285, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.649, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.579, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.823, 69.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.174, 69.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.864, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.961, 68.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.941, 69.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.713, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.514, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.928, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.409, 69.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.829, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.552, 67.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.835, 68.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.881, 68.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.733, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.306, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.014, 68.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.315, 68.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.963, 68.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.675, 68.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.951, 68.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.165, 68.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.159, 68.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.831, 68.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.892, 68.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.142, 68.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.252, 68.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.153, 68.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.521, 68.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.129, 68.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.607, 68.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.948, 68.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.018, 68.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.097, 68.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.631, 68.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.214, 68.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.186, 68.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.33, 68.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.045, 68.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.601, 68.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.133, 68.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.151, 68.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.144, 68.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.214, 68.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.079, 68.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.165, 68.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.251, 68.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.542, 68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.367, 68.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.357, 68.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.157, 68.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.112, 68.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 68.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.375, 68.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.277, 68.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.19, 68.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.224, 68.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.698, 68.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.219, 68.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.27, 68.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.449, 68.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.254, 68.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.223, 68.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.003, 68.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 68.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.461, 68.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.393, 68.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.867, 68.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.388, 68.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.336, 68.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.471, 68.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.222, 68.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.248, 68.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.973, 68.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36, 68.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.218, 68.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.172, 68.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.977, 68.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.163, 68.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.253, 68.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.137, 68.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.099, 68.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.952, 68.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.9, 68.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.818, 68.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.88, 68.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.047, 68.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.899, 68.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.518, 68.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.22, 68.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.358, 68.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.292, 68.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.595, 68.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.422, 69.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.743, 68.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.549, 67.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.015, 68.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5, 68.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.95, 68.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.863, 68.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.145, 67.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.297, 68.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.184, 68.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.251, 68.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.943, 68.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.895, 68.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.923, 68.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.065, 69.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.115, 69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.348, 69.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.218, 69.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.172, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.908, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.868, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.867, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.787, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.887, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.975, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.134, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.246, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.655, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.404, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.405, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.134, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.053, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.908, 69.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.883, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.004, 69.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.928, 69.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.021, 69.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.727, 69.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.724, 69.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.807, 69.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.162, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.924, 69.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.801, 69.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.009, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.935, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.022, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.811, 69.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.922, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.122, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.175, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.301, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.074, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.03, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.058, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.992, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.943, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.711, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.993, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.977, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.167, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 69.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.316, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.541, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.091, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.997, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.641, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.148, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.122, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.289, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.281, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.087, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.054, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.081, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.051, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.128, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.269, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.109, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.452, 69.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.033, 69.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.837, 69.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 69.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.755, 69.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.776, 68.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.745, 69.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.792, 69.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.821, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 69.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 69.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 69.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.766, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.892, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.764, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.775, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.555, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.734, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.322, 69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.801, 69.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.897, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.851, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.733, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.776, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.763, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.773, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.713, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.184, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.614, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.418, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.669, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.517, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.28, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.12, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.271, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.63, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.423, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.752, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.589, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.917, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.067, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.823, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.746, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.476, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.374, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.307, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.296, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.257, 70.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.426, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.336, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.672, 70.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.542, 70.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37, 70.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.493, 70.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.059, 70.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.521, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.941, 70.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.662, 88.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.376, 72.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.133, 72.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.082, 72.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.862, 73.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.169, 73.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.362, 73.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.639, 73.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.188, 73.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.416, 73.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.901, 73.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.377, 73.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.35, 73.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.99, 73.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.138, 73.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 73.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.411, 73.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.373, 73.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.152, 73.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.653, 74.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.105, 73.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.899, 73.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.275, 73.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.282, 73.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.193, 73.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.128, 73.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.002, 73.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.383, 72.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.728, 72.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.024, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.787, 72.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.88, 72.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.888, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.557, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.592, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.58, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.276, 71.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.773, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.568, 71.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.604, 71.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.463, 71.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.31, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.063, 71.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.858, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.423, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.9, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.99, 70.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.405, 70.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.59, 70.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.834, 70.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.468, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.433, 70.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.457, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.256, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.206, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.259, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.174, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.913, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.152, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.076, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.697, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.51, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.296, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.22, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.196, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.062, 69.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.241, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.158, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.236, 69.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.152, 69.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.085, 69.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.087, 69.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.029, 68.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.003, 68.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.925, 68.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.632, 68.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.133, 68.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.03, 68.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.064, 68.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.246, 68.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.145, 68.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.075, 68.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.085, 68.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.261, 68.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.704, 68.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.52, 68.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.424, 68.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.139, 68.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.917, 68.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.949, 68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.926, 68.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 68.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.927, 68.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.994, 68.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.917, 68.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.193, 68.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.99, 68.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.03, 68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.954, 68.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 68.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 68.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.18, 68.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.198, 68.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.333, 68.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.25, 68.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 68.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 68.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.377, 68.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.836, 68.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.926, 68.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.893, 68.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.795, 68.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.976, 68.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.02, 68.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.019, 68.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.262, 68.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.291, 68.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.331, 68.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.477, 68.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.123, 68.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.047, 68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 68.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.278, 68.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.222, 68.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.876, 68.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.18, 68.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 68.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.977, 68.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.976, 68.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.943, 68.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.909, 68.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.931, 68.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.575, 68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.992, 68.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.596, 67.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.833, 68.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.856, 68.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.838, 68.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.154, 68.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 68.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.093, 68.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.374, 67.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.076, 68.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.517, 67.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.016, 67.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.568, 67.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.145, 67.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.42, 66.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.07, 67.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.598, 68.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -52.596, 65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.135, 67.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.064, 67.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.661, 67.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.781, 67.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.283, 67.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.36, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.724, 66.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.521, 66.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.217, 66.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -58.113, 66.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.62, 65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.971, 65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.556, 63.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.888, 64.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.981, 64.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.005, 64.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.96, 64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.882, 64.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.937, 64.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.057, 64.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.055, 64.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.723, 64.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.749, 64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.742, 64.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.749, 64.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.714, 64.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.676, 64.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.526, 64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.588, 64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.711, 63.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.812, 63.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.723, 63.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.769, 64.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.66, 63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -50.379, 61.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.251, 63.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.542, 64.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.635, 63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.73, 63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.67, 63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.88, 64.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.63, 64.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.477, 64.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.779, 63.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.422, 63.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.456, 63.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.412, 63.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.362, 63.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.54, 63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.915, 64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.002, 63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.97, 63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.905, 63.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.077, 64.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.95, 63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.946, 63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.986, 64.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.521, 64.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.214, 64.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.997, 64.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.98, 64.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.958, 64.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.148, 64.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.999, 64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.98, 64.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.972, 64.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.115, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.941, 64.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.037, 64.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.614, 64.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.375, 64.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.044, 64.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.554, 64.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.725, 64.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.802, 64.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.81, 64.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.035, 64.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.872, 64.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.178, 64.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.863, 65.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.815, 65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.814, 65.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.747, 65.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.636, 65.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.61, 65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.631, 64.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.628, 64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.64, 64.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.568, 64.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.527, 64.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.396, 64.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.426, 64.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.436, 64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.432, 64.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.627, 64.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.52, 64.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 64.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.936, 65.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.977, 65.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.003, 65.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.029, 65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.437, 65.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.226, 65.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 64.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.199, 64.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.214, 64.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.172, 64.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.106, 64.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 64.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 64.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.813, 64.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.129, 65.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.974, 65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.007, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.954, 65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.974, 65.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.035, 65.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.17, 65.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.241, 65.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.419, 65.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.562, 65.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.641, 65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.665, 65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 65.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.995, 65.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 65.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.907, 65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.888, 65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.404, 65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 65.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.741, 65.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.791, 64.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.487, 64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.452, 64.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.489, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.4, 64.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.261, 64.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.277, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.068, 64.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.203, 64.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.921, 64.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.937, 64.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.851, 64.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.911, 64.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.517, 64.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.822, 64.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.571, 64.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.683, 64.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.675, 64.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.71, 64.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.657, 64.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.745, 64.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.598, 64.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.675, 64.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.727, 64.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.766, 64.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.59, 64.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.626, 64.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.817, 64.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.479, 64.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.592, 64.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.524, 64.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.656, 64.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.685, 64.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.868, 64.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.904, 64.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.912, 64.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.126, 64.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.106, 64.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.996, 64.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.017, 64.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.328, 64.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.002, 64.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.478, 64.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.483, 64.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.425, 64.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.51, 64.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.25, 64.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.321, 64.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.266, 64.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.447, 64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.277, 64.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.231, 64.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.172, 64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.816, 64.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.883, 64.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.898, 64.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.909, 64.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.926, 64.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.92, 64.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.954, 64.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.798, 64.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.835, 64.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.782, 64.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.812, 64.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.912, 64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.762, 64.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.786, 64.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.73, 64.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.688, 64.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.193, 64.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.255, 64.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.308, 64.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.326, 64.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.426, 64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.359, 64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.531, 64.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.427, 64.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.515, 64.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.49, 64.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.484, 64.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.476, 64.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.463, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.237, 64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.391, 64.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.336, 64.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.543, 65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.091, 64.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.616, 65.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.576, 64.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.738, 65.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.642, 64.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.657, 65.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.622, 65.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.665, 65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.611, 65.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 65.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 65.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.774, 65.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.863, 65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.92, 65.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.915, 65.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.988, 65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.948, 65.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.948, 65.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.119, 65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.168, 65.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 65.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.731, 65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.273, 65.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.29, 65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.217, 65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.254, 65.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.193, 65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.38, 65.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.536, 65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.965, 65.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.408, 65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.483, 65.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.468, 65.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.471, 65.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 65.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.496, 65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.891, 65.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.486, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.824, 65.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.77, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.524, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.799, 65.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.297, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.865, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.627, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.953, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.228, 65.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.791, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.853, 65.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.783, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.726, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.905, 65.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.218, 65.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.297, 65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.009, 65.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.989, 65.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.836, 65.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.757, 65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.634, 65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.709, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.688, 65.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.504, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.586, 65.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.642, 65.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.658, 65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.636, 65.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.59, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.852, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.641, 65.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.692, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.658, 65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.757, 65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.647, 65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.738, 65.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.8, 65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.721, 65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.624, 65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.668, 65.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.523, 65.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.657, 65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.728, 65.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.626, 65.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.777, 65.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.861, 65.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.634, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.827, 65.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.725, 65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.831, 65.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.337, 65.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.727, 65.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.696, 65.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.735, 65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.639, 65.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.658, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.788, 65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.299, 65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.833, 65.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.849, 65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.784, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.408, 65.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.371, 65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.443, 65.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.418, 65.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.457, 65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.418, 65.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.119, 65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.954, 65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.927, 65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.877, 65.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.878, 65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.885, 65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.772, 65.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.667, 65.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.091, 64.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.011, 64.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.014, 64.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.453, 64.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.148, 65.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.141, 65.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.104, 65.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.211, 65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.256, 65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.252, 65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.416, 65.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.222, 65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.272, 65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.153, 65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.786, 65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.695, 65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.708, 65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.806, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.96, 65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.719, 65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.731, 65.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.812, 65.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.88, 65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.885, 65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.906, 65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.9, 65.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.878, 65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.88, 65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.086, 65.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.876, 65.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.866, 65.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.865, 65.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.838, 65.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.803, 65.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.836, 65.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.668, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.703, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.668, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.677, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.638, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.698, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.712, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.737, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.743, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.735, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.747, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.714, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.73, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.571, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.693, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.67, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.649, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.639, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.707, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.608, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.62, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.486, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.668, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.669, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.688, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.663, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.656, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.681, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.495, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.68, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.212, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.096, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.991, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.058, 65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.215, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.23, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.274, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.276, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.327, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.306, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.309, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.291, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.296, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.288, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.301, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.33, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.339, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.332, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.731, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.705, 65.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.73, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.747, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.74, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.745, 65.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.737, 65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.714, 65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.74, 65.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.541, 65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.431, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.505, 65.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.513, 65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.606, 65.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.578, 65.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.58, 65.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.768, 65.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.768, 65.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.754, 65.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.748, 65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.724, 65.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.718, 65.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.712, 65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.68, 65.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.712, 65.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.72, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.66, 65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.704, 65.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.713, 65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.605, 65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.622, 65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.594, 65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.624, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.676, 65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.652, 65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.619, 65.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.394, 65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.084, 65.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.989, 65.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.932, 65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.949, 65.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.832, 65.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.732, 65.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.618, 65.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.72, 65.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.699, 65.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.805, 65.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.656, 64.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.652, 64.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.671, 64.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.778, 64.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.783, 64.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.773, 64.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.889, 64.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.904, 64.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.896, 64.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.881, 64.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.924, 64.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.967, 64.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.019, 64.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.1, 64.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.104, 64.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.107, 64.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.072, 64.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.089, 64.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.117, 64.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.185, 64.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.127, 64.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.195, 64.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.216, 65.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.485, 65.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.289, 65.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.288, 65.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.239, 65.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.215, 65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.266, 65.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.178, 65.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.234, 65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.177, 65.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.287, 65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.208, 65.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.225, 65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.297, 65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.329, 65.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.334, 65.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.315, 65.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.297, 65.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.309, 65.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.343, 65.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.38, 65.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.364, 65.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.133, 65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.309, 65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.361, 65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.336, 65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.316, 65.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.293, 65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.283, 65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.305, 65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.332, 65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.34, 65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.263, 65.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.328, 65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.343, 65.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.53, 65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.647, 65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.603, 65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.679, 65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.787, 65.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.714, 65.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.519, 65.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.271, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.701, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.574, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.664, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.641, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.651, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.643, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.012, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.662, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.709, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.695, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.686, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.72, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.689, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.78, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.735, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.678, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.746, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.699, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.716, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.74, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.646, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.677, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.687, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.733, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.619, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.63, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.787, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.695, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.657, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.707, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.66, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.707, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.666, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.615, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.649, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.67, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.81, 65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.667, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.598, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.608, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.617, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.573, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.613, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.595, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.598, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.574, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.295, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.521, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.521, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.516, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.516, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.5, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.521, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.525, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.509, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.471, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.598, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.638, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.656, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.637, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.429, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.59, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.618, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.615, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.621, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.65, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.63, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.634, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.639, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.637, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.623, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.641, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.509, 65.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.108, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.733, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.017, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.728, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.749, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.762, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.735, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.633, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.306, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.722, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.666, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.684, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.653, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.719, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.661, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.729, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.676, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.689, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.837, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.753, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.64, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.698, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.711, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.747, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.743, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.765, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.752, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.745, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.741, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.72, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.631, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.093, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.657, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.636, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.731, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.503, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.374, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.653, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.707, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.808, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.78, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.729, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.737, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.82, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.705, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.687, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.675, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.706, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.674, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.696, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.778, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.748, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.536, 65.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.736, 65.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.738, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.793, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.75, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.776, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.798, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.771, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.822, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.861, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.803, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.536, 65.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.91, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.823, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.784, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.836, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.853, 65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.873, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.867, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.933, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.923, 65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.918, 65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.884, 65.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.94, 65.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.785, 65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.353, 65.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.916, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.896, 65.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.876, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.922, 65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.881, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.912, 65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.814, 65.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.791, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.581, 65.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.707, 65.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.8, 65.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.692, 65.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.919, 65.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.72, 65.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.711, 65.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.282, 65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.788, 65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.791, 65.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.853, 65.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.774, 65.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.864, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.824, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.88, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.542, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.896, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.843, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.875, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.865, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.754, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.821, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.905, 65.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.72, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.672, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.867, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.718, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.941, 65.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.817, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.883, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.098, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.783, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.776, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.75, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.801, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.708, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.718, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.953, 65.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.731, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.652, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.679, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.077, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.661, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.663, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.644, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.689, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.794, 65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.103, 65.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.802, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.728, 65.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.753, 65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.757, 65.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.397, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.866, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.821, 65.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.734, 65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.814, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.825, 65.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.797, 65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.808, 65.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.831, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.808, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.802, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.729, 65.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.838, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.636, 65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.736, 65.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.739, 65.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.886, 65.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.73, 65.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.929, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.933, 65.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.17, 65.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.914, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.902, 65.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.835, 65.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.819, 65.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.862, 65.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.899, 65.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.001, 65.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.823, 65.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.931, 65.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.962, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.127, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.976, 65.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.853, 65.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.711, 65.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.804, 65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.985, 65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.946, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.453, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.917, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.907, 65.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.947, 65.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.918, 65.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.009, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.95, 67.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.965, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.95, 65.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.977, 65.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.017, 65.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.087, 65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.903, 65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.982, 65.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.038, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.866, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.858, 65.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.118, 65.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.853, 65.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.684, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.082, 65.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.459, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.787, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.85, 65.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.779, 65.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.595, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.824, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.778, 65.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.789, 65.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.872, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.547, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.732, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.766, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.812, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.737, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.645, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.9, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.753, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.688, 65.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.8, 65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.126, 65.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.919, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.924, 65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.184, 65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.893, 65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.158, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.976, 65.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.964, 65.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.962, 65.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.901, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.887, 65.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.324, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.066, 65.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.867, 65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.717, 65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.779, 65.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.758, 65.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.903, 65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.856, 65.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.94, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.838, 65.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.856, 65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.428, 65.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.884, 65.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.873, 65.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.936, 65.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.168, 65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.868, 65.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.792, 65.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.905, 65.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.97, 65.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.783, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.137, 65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.417, 65.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.951, 65.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.934, 65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.933, 65.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.88, 65.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.753, 65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.921, 65.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.983, 65.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.929, 65.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.895, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.792, 65.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.91, 65.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.871, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.59, 65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.659, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.649, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.875, 66.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.128, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.66, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.662, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.585, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.698, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.655, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.743, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.196, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.646, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.645, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.639, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.666, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.934, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.617, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.313, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.611, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.552, 66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.775, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.658, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.941, 66.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.624, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.629, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.637, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.6, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.658, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.62, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.529, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.592, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.13, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.547, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.55, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.538, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.527, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.478, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.252, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.609, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.398, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.745, 66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.186, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.016, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.435, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.413, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.439, 66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.466, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.213, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.552, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.448, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.186, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.625, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.724, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.803, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.15, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.262, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.441, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.691, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.592, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.385, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.176, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.972, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.897, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.488, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.567, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.465, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.846, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.396, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.331, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.305, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.421, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.302, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.193, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.423, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.274, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.864, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.793, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.796, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.515, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.609, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.426, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.621, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.038, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.127, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.987, 68.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.586, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.456, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.981, 69.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.613, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.144, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.88, 69.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.154, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.068, 69.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.118, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.438, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.443, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.216, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.568, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.131, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.25, 69.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.059, 69.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.804, 69.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.598, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.255, 69.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.329, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.04, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.223, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.107, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.392, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.046, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.166, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.192, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.213, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.21, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.638, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.109, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.203, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.27, 69.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.338, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.131, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.215, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.393, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.041, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.29, 69.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.191, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.399, 69.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.332, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.435, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.422, 69.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.973, 69.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.898, 69.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.188, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.181, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.249, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.192, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.453, 69.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.356, 69.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.237, 69.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.512, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.414, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.218, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.602, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.394, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.379, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.408, 69.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.323, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.342, 69.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.472, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.389, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.519, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.354, 69.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.675, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.491, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.513, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.486, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.316, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.322, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.064, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.371, 69.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.403, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.385, 69.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.429, 69.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.217, 69.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.393, 69.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.044, 68.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.376, 68.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.086, 68.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.998, 68.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.775, 68.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.139, 68.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.832, 68.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.932, 68.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.92, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.339, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.35, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.183, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.092, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.318, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.408, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.391, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.324, 69.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.66, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.489, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.491, 69.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.794, 69.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.13, 69.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.27, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.757, 69.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.322, 69.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.38, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.441, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.309, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.504, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.596, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.628, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.033, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.545, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.754, 69.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.297, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.727, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.996, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.819, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.779, 69.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.365, 69.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.708, 69.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.784, 69.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.569, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.408, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.668, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.747, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.788, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.78, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.275, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.416, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.101, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.764, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.754, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.715, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.729, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.651, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.702, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.714, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.796, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.752, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.741, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.701, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.781, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.398, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.074, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.167, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.085, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.241, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.38, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.463, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.761, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.871, 70.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.383, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.719, 70.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.835, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.989, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.156, 70.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.752, 70.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.885, 70.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.823, 70.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.977, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.623, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.042, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.091, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.42, 67.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.316, 67.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.077, 68.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.945, 68.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.893, 68.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.063, 68.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.252, 68.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 68.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.329, 68.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.833, 68.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.88, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.953, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.722, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.057, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -51.086, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.444, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.432, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.508, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.055, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 70.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 70.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.892, 70.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.897, 70.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.073, 70.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 70.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.345, 70.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 70.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.469, 70.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.574, 70.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 70.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.76, 70.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.786, 70.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.829, 70.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.877, 70.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.824, 70.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.786, 70.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.906, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 70.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 70.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 70.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88, 70.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 70.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.945, 70.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 70.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.912, 70.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.891, 70.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.123, 70.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.232, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.859, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.507, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 70.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.482, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.202, 70.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.713, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.171, 70.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.694, 70.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.928, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.62, 70.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 70.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.412, 70.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.429, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.466, 69.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.139, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 70.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.645, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.54, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.618, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.735, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.525, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.851, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.926, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.31, 70.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.443, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.436, 69.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.952, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.061, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.938, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.42, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.133, 70.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.313, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.635, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.254, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.228, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.485, 69.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.359, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.905, 69.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.644, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.573, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.179, 69.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.28, 68.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.04, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.149, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.791, 69.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.196, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.296, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.603, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.256, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.094, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.849, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.431, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.008, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.562, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.542, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.443, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.561, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.272, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.554, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.255, 70.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.185, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.206, 70.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.237, 70.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.435, 70.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.573, 70.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.605, 70.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.715, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.737, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.796, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.78, 70.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86, 70.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.543, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.668, 70.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.687, 70.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.569, 70.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.794, 70.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.884, 70.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.864, 70.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.927, 70.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.874, 70.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.939, 70.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.095, 70.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.941, 70.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.202, 70.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.356, 71.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.381, 71.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.845, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.828, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.802, 71.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.893, 71.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.176, 71.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.315, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.48, 71.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.538, 71.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.876, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.006, 71.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.327, 70.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.196, 70.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.774, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.264, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.837, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.84, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.852, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.793, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.85, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.686, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.653, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.603, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.026, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.027, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.159, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.136, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.338, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.784, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.752, 70.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.715, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.779, 70.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.416, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.819, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.832, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.091, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.228, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.266, 70.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.809, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.826, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.917, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.935, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.939, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.967, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.011, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.049, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.514, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.492, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.254, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.078, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 70.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.691, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.683, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.716, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.561, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.619, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.509, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.532, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.488, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.405, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.568, 70.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.184, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.427, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.299, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.756, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.245, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.342, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.262, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.267, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.154, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.16, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.125, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.912, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.926, 70.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.888, 70.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.875, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.849, 70.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.923, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.746, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.484, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.349, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.478, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.445, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.795, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.014, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.968, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.09, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.04, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.074, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.192, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.029, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.073, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.816, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.932, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.785, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.837, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.859, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.805, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.838, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.177, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.105, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.819, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.771, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.812, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.854, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.969, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.13, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.692, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.936, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.985, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.008, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.071, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.004, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.935, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.851, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.863, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.868, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.856, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.82, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.891, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.884, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.866, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.727, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.751, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.783, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.755, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.756, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.752, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.753, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.756, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.77, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.761, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.758, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.757, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.822, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.88, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.83, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.797, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.767, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.111, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.79, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.816, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.056, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.838, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.799, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.981, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.916, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.9, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.901, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.8, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.885, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.892, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.9, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.885, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.832, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.895, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.894, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.837, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.937, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.787, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.819, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.801, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.902, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.801, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.813, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.805, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.738, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.739, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.785, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.825, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.751, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.773, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.84, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.776, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.787, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.817, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.901, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.843, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.836, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.807, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.819, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.946, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.228, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.863, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.858, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.759, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.853, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.548, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.948, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.86, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.834, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.464, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.907, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.793, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.786, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.823, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.89, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.588, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.856, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.862, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.888, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.9, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.863, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.832, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.79, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.756, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.756, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.765, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.782, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.883, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.793, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.743, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.849, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.789, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.374, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.797, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.93, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.814, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.829, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.731, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.85, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.852, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.816, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.846, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.864, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.676, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.655, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.244, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.783, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.775, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.741, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.781, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.737, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.817, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.428, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.964, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.909, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.847, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.901, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.967, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.698, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.775, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.929, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.96, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.245, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.848, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.838, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.781, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.654, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.789, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.776, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.785, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.815, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.811, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.805, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.84, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.709, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.792, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.828, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.82, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.984, 69.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.998, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.744, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.776, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.891, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.694, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.391, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.281, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.358, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.182, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.893, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.764, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.731, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.781, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.39, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.677, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.881, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.535, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.57, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.539, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.215, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.235, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.221, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.257, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.807, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.203, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.331, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.351, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.868, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.689, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.628, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.735, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.621, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.517, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.613, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.356, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.404, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.54, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.539, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.087, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.028, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.055, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.059, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.177, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.122, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.203, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.249, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.849, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.911, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.826, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.836, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.773, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.581, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.51, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.575, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.057, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.982, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.749, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.655, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.582, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.556, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.549, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.263, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.298, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.275, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.133, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.661, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.191, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.164, 69.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.107, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 68.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 68.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 68.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.315, 67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.703, 67.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.213, 67.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.389, 66.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.422, 66.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.465, 66.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.484, 66.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.097, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.13, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.199, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.18, 65.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.179, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.16, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.289, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.237, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.227, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.282, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.188, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.878, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.402, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.072, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.1, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.102, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.19, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.263, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.177, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.058, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.359, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.24, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.241, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.179, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.997, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.236, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.134, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.105, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.155, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.99, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.236, 65.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.27, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.063, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.187, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.212, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.298, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.275, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.297, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.377, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.211, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.197, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.101, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.107, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.215, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.263, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.28, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.359, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.414, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.337, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.823, 66.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.402, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.638, 66.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.357, 66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.343, 66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.285, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.398, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.339, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.741, 65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.246, 66.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.356, 66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.368, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.549, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.366, 66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.845, 66.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.518, 66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.922, 65.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.132, 65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.633, 65.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.555, 65.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.869, 65.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.809, 65.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.812, 65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.714, 65.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.799, 65.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.742, 65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.676, 65.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.978, 65.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.827, 65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.903, 65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.878, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.988, 65.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.839, 65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.006, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.99, 65.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.949, 65.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.324, 66.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.141, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.005, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.766, 65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.499, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.253, 65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.505, 65.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.321, 65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.717, 65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.684, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.748, 65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.768, 65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.73, 65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.798, 65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.859, 65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.847, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.883, 65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.916, 65.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.772, 65.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.929, 65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.921, 65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.809, 65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.198, 71.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.121, 71.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.838, 71.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 71.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 71.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.928, 71.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.77, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.961, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.998, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.036, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.113, 70.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.064, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 70.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.172, 70.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.695, 70.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.323, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.475, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.493, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.538, 70.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.67, 70.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.907, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.733, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 70.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.005, 70.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.284, 70.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.305, 70.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 70.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 70.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.142, 70.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.558, 70.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 70.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.161, 70.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.188, 70.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.73, 70.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.773, 70.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.695, 70.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.545, 70.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.537, 70.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45, 70.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.316, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.285, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.295, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.023, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.68, 70.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.699, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.943, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.935, 70.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.646, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.555, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.774, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.809, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.662, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.672, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.653, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.518, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.335, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.185, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.228, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.082, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.787, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.918, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.281, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.217, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.077, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.322, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.268, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.876, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.51, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.289, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.405, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.376, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.35, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.506, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.5, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.849, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.51, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.973, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.673, 70.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.297, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.501, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.355, 69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.882, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.781, 70.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.709, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.148, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.037, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.84, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.73, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.573, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.106, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.009, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.228, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.871, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.898, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.864, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.112, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.441, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.9, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.867, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.919, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.877, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.778, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.718, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.915, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.041, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.865, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.135, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.878, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.938, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.929, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.012, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.316, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.004, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.542, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.866, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.756, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.56, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.94, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.11, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.871, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.907, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.766, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.959, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.877, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.849, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.839, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.227, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.039, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.737, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.873, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.827, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.282, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.149, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.249, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.267, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.939, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.407, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.45, 69.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.542, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.431, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.176, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.348, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.214, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.176, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.356, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.332, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.301, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.136, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.233, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.284, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.325, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.12, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.141, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.27, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.306, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.451, 69.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.314, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.533, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.005, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.355, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.661, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.985, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.486, 69.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.346, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.119, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.428, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.336, 68.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.202, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.038, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.752, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.693, 69.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.788, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.067, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.063, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.155, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.773, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.008, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.043, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.086, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.048, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.046, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.044, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.007, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.017, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.993, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.132, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.27, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.976, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.956, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.828, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.997, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.025, 69.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.001, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.848, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.018, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.848, 69.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.002, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.668, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.839, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.493, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.687, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.089, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.877, 69.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.984, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.456, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.065, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.301, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.827, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.968, 69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.986, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.667, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.561, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.05, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.813, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.288, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.281, 69.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.174, 69.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.411, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.292, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.125, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.022, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.141, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.243, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.308, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.026, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.287, 69.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.359, 69.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.476, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.49, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.666, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.991, 69.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.561, 69.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.264, 69.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.142, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.229, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.295, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.106, 69.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.259, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.143, 69.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.491, 69.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.283, 69.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.26, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.522, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.563, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.299, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.334, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.542, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.662, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.572, 69.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.401, 69.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.646, 69.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.263, 68.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.681, 69.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.887, 68.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.358, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46, 69.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.482, 69.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.391, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.651, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.353, 69.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.361, 69.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.377, 69.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.169, 69.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.321, 69.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.289, 69.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.317, 69.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.275, 69.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.301, 69.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.303, 69.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.294, 69.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6, 69.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.366, 69.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.972, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.333, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.038, 69.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.018, 69.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.187, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.042, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.235, 69.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.322, 69.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.07, 69.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.298, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.133, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.67, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.04, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.367, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.163, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.135, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.456, 69.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.836, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.979, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.111, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.932, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.199, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.88, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.317, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.314, 69.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.644, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.949, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.855, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.92, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.997, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.222, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.019, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.713, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.412, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.536, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.463, 69.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.582, 69.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.946, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.849, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.79, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.931, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.824, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.65, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.938, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.066, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.523, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.925, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.044, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.246, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.091, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.941, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.87, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.828, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.571, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.9, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.573, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.832, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.61, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.6, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.492, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.491, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.461, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.442, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.549, 69.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.415, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 69.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.31, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.456, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.284, 69.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.073, 68.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.317, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.366, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.407, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.442, 69.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.481, 69.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.317, 69.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.602, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.063, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.054, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.607, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.604, 69.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.627, 69.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.571, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.553, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.857, 69.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.322, 69.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.691, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.845, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.827, 69.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.668, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.637, 69.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.432, 69.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.419, 68.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.312, 68.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.896, 68.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.464, 69.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.492, 69.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.432, 69.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.877, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.588, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.707, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.622, 69.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.87, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.014, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.075, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.919, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.201, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.341, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.989, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.654, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.754, 72.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.752, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.311, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.203, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.702, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.481, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.093, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.654, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.864, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.92, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.773, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.965, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.113, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.659, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.826, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.821, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.968, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.91, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.046, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.074, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.265, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.894, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.039, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.464, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.095, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.181, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.439, 70.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.616, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.801, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.643, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.767, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.745, 70.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.879, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.959, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.952, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.862, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.055, 70.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.028, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.645, 70.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.945, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.705, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.288, 70.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.557, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.369, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.269, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.997, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.513, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.876, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.848, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.394, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.657, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.293, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.137, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.837, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.348, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.449, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.137, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.501, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.415, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.407, 69.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.528, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.452, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.283, 68.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42, 67.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.251, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.221, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.563, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.265, 69.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.281, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.544, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.483, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.85, 70.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.697, 70.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.641, 70.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.372, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.416, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.306, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.368, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.326, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.517, 68.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.375, 68.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.489, 68.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.573, 68.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.569, 68.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54, 68.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.604, 68.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.955, 68.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.609, 68.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.713, 68.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.185, 68.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.137, 68.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.162, 68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.022, 68.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.034, 67.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.724, 67.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.72, 67.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.731, 67.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.733, 67.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.818, 67.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.63, 67.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.604, 67.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.907, 67.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.044, 67.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.867, 68.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.81, 67.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.805, 67.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.527, 67.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.306, 67.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.263, 67.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.846, 68.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89, 68.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.27, 67.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.514, 68.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.796, 68.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.906, 68.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.087, 68.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.877, 68.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.941, 68.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.916, 68.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.814, 68.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.775, 68.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.733, 68.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.623, 68.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.241, 68.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.237, 68.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.045, 68.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.955, 68.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.979, 68.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.984, 68.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.027, 68.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.034, 69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.014, 69.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.039, 69.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.252, 69.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.135, 69.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.225, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.39, 69.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.63, 69.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.912, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.068, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.212, 69.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.274, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.071, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.079, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.013, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.968, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.268, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.856, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.939, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.993, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.232, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.023, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.972, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.959, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.823, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.111, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.878, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.91, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.729, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.239, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.879, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.505, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.765, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.637, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.306, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.313, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.335, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.28, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.369, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.322, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.399, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.368, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.386, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.359, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.201, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.346, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.32, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.174, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.484, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.184, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.065, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.192, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.151, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.144, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.162, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.162, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.168, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.508, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.187, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.405, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.201, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.262, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.26, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.273, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.217, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.52, 68.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.207, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.148, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.522, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.685, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.722, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.689, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.638, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.821, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.638, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.836, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.771, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.599, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.748, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.752, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.016, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.217, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.078, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.253, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.684, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.327, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.267, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.312, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.164, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.128, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.263, 69.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.246, 69.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.174, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.205, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.169, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.353, 70.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.418, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.411, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.459, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.333, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.696, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.624, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.657, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.557, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.694, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.616, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.612, 68.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.854, 68.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.718, 68.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.581, 68.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.245, 68.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.474, 68.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.343, 68.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.274, 68.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.379, 68.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.338, 68.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.365, 68.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.381, 68.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.277, 68.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.249, 68.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.25, 68.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.326, 68.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.511, 68.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.332, 68.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.359, 68.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.348, 68.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.356, 68.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.329, 68.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.299, 68.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.333, 68.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.464, 68.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.287, 68.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.28, 68.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.335, 68.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.375, 68.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.157, 68.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.013, 68.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.2, 68.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.168, 68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.135, 68.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.161, 68.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.482, 68.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.045, 68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.104, 68.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.224, 68.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.179, 68.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.182, 68.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.219, 68.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.179, 68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.155, 68.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.119, 68.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.09, 68.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.017, 68.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.073, 68.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.088, 68.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.85, 68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.013, 68.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.052, 68.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.034, 68.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.016, 68.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.633, 68.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.804, 68.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.854, 68.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.878, 68.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.845, 68.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.882, 68.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.898, 68.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.955, 68.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.875, 68.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.33, 68.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.947, 68.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.9, 68.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.904, 68.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.96, 68.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.662, 68.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.979, 68.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.195, 68.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.024, 68.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.729, 68.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.922, 68.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.142, 68.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.896, 68.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.614, 68.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.317, 68.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.15, 68.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.252, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.322, 68.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.022, 68.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.086, 68.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.108, 68.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.067, 68.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.031, 68.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.817, 68.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.06, 68.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.986, 68.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.058, 68.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.215, 68.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.898, 68.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.766, 68.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.884, 68.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.937, 68.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.022, 68.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.157, 68.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.155, 68.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.13, 68.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.025, 68.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.666, 68.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.933, 68.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.976, 68.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.114, 67.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.957, 68.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.973, 68.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.957, 68.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.085, 68.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.008, 68.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.919, 68.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.985, 68.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.987, 68.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.954, 68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.893, 68.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.886, 68.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.922, 68.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.973, 68.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.935, 68.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.987, 68.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.211, 68.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.235, 68.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.137, 68.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.255, 68.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 68.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.254, 68.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.282, 68.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.273, 68.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.158, 68.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.182, 68.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.345, 68.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.28, 68.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3, 68.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.313, 68.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.339, 68.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.479, 68.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.359, 68.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.344, 68.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 68.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.221, 68.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.421, 68.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.342, 68.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23, 68.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.242, 68.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.491, 68.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.257, 68.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.264, 68.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.261, 68.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.472, 68.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 68.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.387, 68.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.723, 68.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.526, 68.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.374, 68.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.305, 68.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.225, 68.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.242, 68.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.25, 68.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.569, 68.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.269, 68.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.16, 68.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.065, 68.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.332, 68.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 68.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.267, 68.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.313, 68.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.479, 68.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.534, 68.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.697, 68.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.513, 68.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.709, 68.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.706, 68.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.818, 68.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.845, 68.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.994, 68.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.024, 68.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.018, 68.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.312, 69.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.423, 69.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.31, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.257, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.294, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.236, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.302, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.301, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.275, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.247, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.194, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.439, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.341, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.291, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.116, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.203, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.249, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.467, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.469, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.517, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.296, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.187, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.655, 69.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.164, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.467, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.845, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.336, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.303, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.177, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.708, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.663, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.68, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.668, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.091, 70.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.606, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.815, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.834, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.655, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.528, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.583, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.654, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.749, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.571, 70.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.672, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.682, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.812, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.686, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.742, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.965, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.765, 70.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.762, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.614, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.711, 69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.639, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.687, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.623, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.806, 70.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.751, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.564, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.544, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.093, 70.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.649, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.903, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.969, 70.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.456, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.392, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.593, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.683, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.737, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.971, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.715, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.864, 70.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.326, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.109, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.618, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.231, 70.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.823, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.012, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.902, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.106, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.024, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.139, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.843, 70.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.969, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.139, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.441, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.595, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.495, 70.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.1, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.546, 69.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.059, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.157, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.005, 69.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.952, 69.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.305, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.94, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.998, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.983, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.613, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.451, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.739, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.436, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.545, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.611, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.557, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.656, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.694, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.779, 69.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.652, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.682, 69.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.412, 68.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.644, 68.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.736, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.734, 68.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.912, 68.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.713, 68.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.602, 68.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.528, 69.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.645, 68.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.664, 68.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.773, 68.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.983, 68.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.035, 68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.065, 68.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.196, 68.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.039, 68.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.269, 68.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.882, 68.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.969, 68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.755, 68.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.789, 68.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.865, 68.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.001, 68.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.954, 68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.976, 68.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.826, 68.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.809, 68.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.913, 68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.86, 68.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.952, 68.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.93, 68.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.817, 68.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.794, 68.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.84, 68.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.857, 68.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.301, 69.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.749, 68.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.84, 68.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.373, 68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.8, 68.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.691, 68.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.711, 68.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.849, 69.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.621, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.694, 68.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.78, 69.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.576, 69.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.537, 69.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.626, 69.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.722, 69.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.731, 69.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.765, 69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.739, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.716, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.765, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.776, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.899, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.916, 69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.859, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.06, 69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.646, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.358, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.527, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.663, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.053, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.662, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.477, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.427, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.795, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.959, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.761, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.836, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.792, 69.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.015, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.066, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.978, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.008, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.601, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.858, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.748, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.735, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.935, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.764, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.239, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.809, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.869, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.813, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.988, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.234, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.226, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.099, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.259, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.245, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.007, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.281, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.353, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.114, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.169, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.409, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.344, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.264, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.255, 70.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.818, 70.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.704, 70.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.055, 71.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.023, 71.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.149, 71.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.151, 71.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.483, 71.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.022, 71.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.078, 71.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.056, 71.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.088, 71.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.052, 71.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.168, 71.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.174, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.27, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.226, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 72.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.54, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.27, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.672, 72.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.328, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.367, 72.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.364, 72.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.344, 72.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.237, 72.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.34, 72.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.093, 72.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.12, 72.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.103, 72.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.023, 72.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 72.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.935, 72.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.407, 72.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.674, 72.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.941, 73.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.638, 73.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.466, 73.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.174, 73.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.464, 73.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.119, 73.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.018, 73.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99, 73.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.945, 73.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.781, 73.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.721, 73.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.537, 73.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.421, 73.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.63, 73.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.14, 73.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.98, 73.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.68, 73.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.376, 73.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.287, 73.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.328, 73.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.122, 73.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.271, 73.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.259, 73.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.005, 73.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.969, 73.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.821, 73.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 73.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 73.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.205, 73.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.228, 73.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.201, 73.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.938, 73.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.794, 73.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.203, 73.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.392, 73.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.301, 73.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.449, 73.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.753, 73.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.722, 73.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.679, 73.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.522, 73.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.997, 73.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.081, 73.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.894, 73.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.802, 73.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.743, 73.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.752, 73.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.36, 73.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.543, 73.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.494, 73.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.124, 73.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.381, 73.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.014, 73.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.811, 72.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.821, 72.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.671, 72.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.52, 72.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.27, 72.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.318, 72.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.161, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.098, 72.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.118, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.26, 72.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.89, 72.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.379, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.547, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.509, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.357, 71.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.768, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.067, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.892, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.852, 71.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.746, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.662, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.516, 71.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.464, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.274, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.355, 71.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.343, 71.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.27, 71.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.144, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.043, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.922, 71.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.841, 71.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.272, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.81, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.835, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.778, 70.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.078, 70.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.25, 70.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.453, 70.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.222, 70.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.721, 70.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.028, 70.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.855, 70.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.656, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.437, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.948, 70.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.281, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.383, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.337, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.874, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.103, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.052, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.678, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.008, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.988, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.914, 69.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.692, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.768, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.859, 69.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.501, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.217, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.167, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.949, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.018, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.49, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.262, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.303, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.987, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.026, 69.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.314, 69.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.418, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.31, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.324, 69.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.213, 69.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.51, 69.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.059, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.175, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.255, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.472, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.698, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.682, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.321, 68.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.806, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.426, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.684, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.806, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.081, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.297, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.141, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.095, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.934, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.894, 69.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.011, 69.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.84, 68.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.996, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.928, 69.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.942, 68.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.805, 68.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.525, 68.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 68.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.426, 68.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.069, 68.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 68.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.384, 68.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.036, 68.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.077, 68.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.548, 68.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.524, 64.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.042, 68.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 68.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.07, 68.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.051, 68.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.78, 68.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.146, 68.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.894, 68.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.805, 68.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.732, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.592, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.306, 67.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.015, 68.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.199, 67.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.793, 68.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 68.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.425, 68.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.807, 68.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 68.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.259, 68.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.995, 68.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.367, 68.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.249, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 68.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.767, 68.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.02, 65.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.34, 68.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.911, 69.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.416, 68.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.143, 68.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.555, 68.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 68.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.573, 68.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 68.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.96, 68.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -58.302, 68.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.655, 68.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 68.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.018, 68.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 68.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.095, 68.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.514, 68.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.143, 68.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.78, 68.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.026, 68.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.004, 68.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.163, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.537, 68.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.445, 68.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.976, 68.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 68.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 68.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.622, 68.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.428, 68.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.996, 68.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.151, 68.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 68.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.145, 68.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.264, 68.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.123, 68.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.114, 68.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.797, 68.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.155, 68.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.378, 68.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.748, 67.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.112, 68.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.114, 68.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.393, 67.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.047, 68.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.134, 68.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.023, 68.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.236, 68.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.1, 68.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.546, 68.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.036, 68.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.972, 68.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 68.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.96, 68.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.467, 68.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.254, 68.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.555, 68.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.629, 68.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.278, 68.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 68.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 68.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.335, 68.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 68.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.061, 68.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.533, 67.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.379, 68.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.97, 68.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.981, 68.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.037, 67.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.097, 68.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.868, 68.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.976, 68.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.129, 68.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 68.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.004, 68.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 68.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.797, 68.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.08, 69.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.92, 68.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.402, 68.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.912, 68.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.621, 68.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.981, 68.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.986, 68.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.714, 68.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.738, 68.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.562, 68.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.924, 68.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.736, 68.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.703, 68.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.947, 68.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.783, 68.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.881, 68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.915, 68.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.857, 68.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.649, 68.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.945, 68.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.385, 68.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.963, 68.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.802, 68.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 68.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.65, 68.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.313, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.861, 68.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.986, 68.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.17, 68.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.189, 67.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.242, 68.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 68.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.023, 68.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.206, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.399, 68.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.131, 68.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.468, 68.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 68.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.207, 68.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.037, 68.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.978, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.607, 68.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.215, 68.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.115, 68.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.337, 68.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.571, 68.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.19, 68.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.71, 68.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.635, 68.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.76, 68.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.476, 67.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.248, 67.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.271, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.062, 67.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.091, 67.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.061, 67.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.787, 67.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.412, 67.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.967, 67.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.426, 67.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.18, 67.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.992, 67.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.113, 67.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.085, 67.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.066, 67.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.011, 67.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.833, 66.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.707, 66.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.711, 66.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.612, 67.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.393, 66.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.427, 66.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.283, 66.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.213, 66.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.224, 66.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.257, 66.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.43, 66.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.315, 66.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.27, 66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.385, 66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.274, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.183, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.355, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.423, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.275, 65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.459, 65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.814, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.861, 64.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.21, 64.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.91, 64.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.677, 64.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.888, 64.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.243, 64.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.665, 64.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.464, 70.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.279, 64.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.117, 64.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.436, 64.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.777, 64.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.022, 64.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.341, 64.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.643, 65.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.114, 68.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.432, 63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.269, 64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.121, 64.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.069, 64.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 64.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.403, 64.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.804, 64.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -59.399, 64.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.295, 64.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.242, 64.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -57.727, 63.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.805, 64.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.578, 64.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.276, 64.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.421, 64.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.332, 64.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.372, 64.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.361, 64.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.2, 64.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.729, 64.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -59.731, 65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.247, 64.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.827, 64.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.85, 64.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.568, 64.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.574, 64.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.901, 64.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.877, 64.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.861, 64.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.895, 64.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.894, 64.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.034, 64.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.853, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.385, 64.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.591, 64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.2, 64.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.393, 64.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.385, 64.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.261, 64.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.531, 64.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.464, 63.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.313, 64.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.132, 65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.108, 64.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.808, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.465, 64.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.057, 64.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.353, 64.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.463, 64.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.817, 64.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.098, 64.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.925, 64.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.561, 64.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.768, 64.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.348, 64.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.678, 64.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.312, 64.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.41, 64.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.307, 64.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.934, 64.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.825, 64.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.011, 64.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.653, 64.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.101, 64.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.492, 64.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.318, 64.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.009, 64.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.665, 65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.953, 64.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.958, 64.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.625, 64.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.535, 64.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.096, 64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.401, 64.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.51, 64.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.354, 64.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.412, 64.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.326, 64.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.026, 64.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.469, 64.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.173, 64.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.762, 63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.656, 64.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.559, 64.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.832, 64.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.357, 64.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.378, 64.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.214, 64.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.981, 64.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.726, 64.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.226, 64.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.85, 64.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.577, 64.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.121, 64.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.736, 64.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.219, 64.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.176, 64.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.246, 64.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.487, 64.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.198, 64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.679, 64.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.901, 64.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.418, 64.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.565, 64.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.93, 64.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.946, 63.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.437, 63.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.891, 64.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.301, 64.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.763, 64.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.546, 64.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.793, 64.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.806, 64.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.735, 64.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.602, 64.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.126, 64.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.299, 64.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.218, 64.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.377, 64.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.395, 64.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.551, 64.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.378, 64.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.538, 64.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.499, 64.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.688, 64.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.956, 64.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.294, 64.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.39, 64.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.083, 64.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.627, 63.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.935, 64.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.876, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.981, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.031, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.143, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.264, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.071, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.177, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.881, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.639, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.704, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.109, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.218, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.327, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.192, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.862, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.119, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.024, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.142, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.147, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.115, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.749, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.249, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.712, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.771, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.797, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.755, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.744, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.787, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.772, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.808, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.674, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.677, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.824, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.857, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.015, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.79, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.206, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.228, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.974, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.894, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.89, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.05, 69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.462, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.419, 69.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.229, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.039, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.075, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.188, 69.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.968, 69.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.199, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.015, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.974, 70.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.258, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.061, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.358, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.026, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.043, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.923, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.004, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.695, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.013, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.045, 69.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.518, 69.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.826, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.217, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.504, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.495, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.446, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.804, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.399, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.276, 69.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.268, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.034, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.09, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.145, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.482, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.492, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.476, 69.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.476, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.486, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.486, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 69.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.459, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.482, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.501, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.482, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.476, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.519, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.47, 69.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.485, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.489, 69.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.468, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.458, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.401, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.463, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.47, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.47, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.508, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.491, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.459, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.482, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.485, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.472, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.44, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.409, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.451, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.44, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.416, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.489, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.432, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.403, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.499, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.486, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.496, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.489, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.768, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.2, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.471, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.476, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.502, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.449, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.82, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.814, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.821, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.81, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.08, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.915, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.847, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.861, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.811, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07, 67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.861, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.835, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.823, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.846, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.866, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.832, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.533, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.523, 63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.537, 63.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.532, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.493, 63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.538, 63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.588, 63.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.535, 63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.541, 63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.533, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.532, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.528, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.53, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.536, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.552, 63.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.534, 63.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.539, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.534, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.537, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.546, 63.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.553, 63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.534, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.531, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.563, 63.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.507, 63.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.505, 63.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.535, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.536, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.533, 63.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.535, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.534, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.442, 63.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.53, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.529, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.582, 63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.535, 63.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.531, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.506, 63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.549, 63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.508, 63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.524, 63.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.531, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.533, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.61, 63.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.528, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.541, 63.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.536, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.536, 63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.491, 63.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.529, 63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.537, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.538, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.703, 66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.772, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.748, 66.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.724, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.707, 66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.712, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.698, 66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.689, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.86, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.789, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.807, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.708, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.795, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.455, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.47, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.503, 69.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.282, 69.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.405, 69.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.38, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.486, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.49, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.454, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.463, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.413, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.491, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.486, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.138, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.048, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.145, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.236, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.495, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.482, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.476, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.476, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.482, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.472, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.482, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.33, 69.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.471, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.476, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.536, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.46, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.462, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.489, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.439, 69.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.472, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.453, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.471, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.468, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.493, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.333, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.465, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.491, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.491, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.907, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.557, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.455, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.427, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.459, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.438, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.461, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.374, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.455, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.52, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.489, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.413, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.937, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.486, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.519, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.747, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.498, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.383, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.556, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.817, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.6, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.821, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.815, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.804, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.814, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.824, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.818, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.833, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.815, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.826, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.791, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.759, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.818, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.811, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.068, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.937, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.815, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.828, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.824, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.779, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.828, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.74, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.906, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.823, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.829, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.83, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.521, 63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.528, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.539, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.622, 63.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.539, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.537, 63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.538, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.53, 63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.531, 63.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.615, 63.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.534, 63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.532, 63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.532, 63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.546, 63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.548, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.532, 63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.517, 63.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.509, 63.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.535, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.537, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.541, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.526, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.532, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.524, 63.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.477, 63.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.542, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.536, 63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.511, 63.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.505, 63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.536, 63.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.533, 63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.522, 63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.315, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.171, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.712, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.714, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.7, 66.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.542, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.709, 66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.662, 65.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.572, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.381, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.38, 65.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.433, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.671, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 65.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.454, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.482, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 65.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.414, 65.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.302, 66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.404, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.623, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.432, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.404, 65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.603, 65.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.325, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 65.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.608, 65.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.561, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.539, 65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.57, 65.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.483, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.702, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.365, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.389, 66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.515, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.996, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.48, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.153, 66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.449, 66.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.927, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.35, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.878, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.24, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.16, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.654, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.338, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.59, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.191, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.999, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.075, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.981, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.168, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.828, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.255, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.466, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.859, 66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.488, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.268, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.428, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.562, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.548, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.73, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.406, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.502, 66.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9.931, 75.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.461, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.054, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.396, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.001, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.061, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.744, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.667, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.878, 66.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.866, 66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.0, 66.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.1, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.475, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.034, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.762, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.546, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.43, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.07, 66.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.871, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.928, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.212, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.364, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.414, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.056, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.41, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.666, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.175, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.0, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.089, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.02, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.045, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.077, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.96, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.91, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.772, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.89, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.984, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.06, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.241, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.204, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.523, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.071, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.183, 65.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.32, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.329, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.518, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.231, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.363, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.419, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.429, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.522, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.526, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.195, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.32, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.199, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.164, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.935, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.156, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.179, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.292, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.325, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.588, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.547, 65.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.194, 65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.588, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.542, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.393, 65.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.412, 65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.428, 65.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.6, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.169, 65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.543, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.376, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.157, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.485, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.461, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.426, 65.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.622, 65.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.493, 66.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.702, 65.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.412, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.451, 65.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.484, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.45, 65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.516, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.55, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.51, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.67, 66.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.535, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.264, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.315, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.383, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.359, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.485, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.575, 65.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.117, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.439, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.159, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.271, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.12, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.115, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.91, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.049, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.685, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.776, 66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.769, 66.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.928, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.819, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.832, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.88, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.874, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.389, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.79, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.822, 66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.883, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.837, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.861, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.864, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.753, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.05, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.097, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.953, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.752, 66.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.506, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.345, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.356, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.338, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.314, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.336, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.496, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.133, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.876, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.769, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.749, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 66.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 66.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.837, 66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.736, 66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.851, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.894, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.222, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.718, 66.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.936, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.858, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.084, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.934, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.986, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.91, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.847, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.907, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.163, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.948, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.976, 66.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.952, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.947, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.964, 66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.715, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.909, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.15, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.219, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.203, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.262, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.972, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.778, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.057, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.147, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.27, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.119, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.355, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.284, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.213, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.498, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.265, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.526, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.924, 65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.356, 65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.455, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.35, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.39, 66.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.329, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.67, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.376, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.325, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.303, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.241, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.145, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.063, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.119, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.941, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.016, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.089, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.102, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.913, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.198, 65.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.091, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.069, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.175, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.164, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.147, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.297, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.112, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.153, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.158, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.052, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.089, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.058, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.106, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.213, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.231, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.571, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.096, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.135, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.179, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.196, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.319, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.446, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.848, 65.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.588, 65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.82, 65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.915, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.966, 65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.402, 65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.933, 65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.697, 65.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.559, 65.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.627, 65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.67, 65.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.694, 65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.736, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.604, 65.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.671, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.692, 65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.712, 65.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.721, 65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.773, 65.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.773, 65.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.669, 65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.391, 65.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.244, 65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.145, 65.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.459, 65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.143, 65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.207, 65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.26, 65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.129, 65.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.153, 65.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.127, 65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.101, 65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.106, 65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.105, 65.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.097, 65.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.116, 65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.122, 65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.102, 65.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.074, 65.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.043, 65.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.263, 65.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.077, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.122, 65.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 65.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.094, 65.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.357, 65.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.548, 65.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 65.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.563, 65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.783, 65.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.63, 65.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.594, 65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.615, 65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.969, 65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.109, 65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.432, 65.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.409, 65.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.367, 65.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.423, 65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.417, 65.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.409, 65.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.297, 65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.194, 65.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.044, 65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.446, 65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.109, 65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.409, 65.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.409, 65.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.222, 65.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.265, 65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.158, 65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.085, 65.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.091, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.122, 65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.183, 65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.151, 65.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.338, 65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.203, 65.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.291, 65.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.215, 65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.012, 65.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.302, 65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.094, 65.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.196, 65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.217, 65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.163, 65.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.148, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.131, 65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.244, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.288, 65.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.268, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.328, 65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.365, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.322, 65.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.377, 65.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.355, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.384, 65.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.738, 65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.457, 65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.522, 65.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.466, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.479, 65.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.551, 65.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.444, 65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.746, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.474, 65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.463, 65.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.537, 65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.39, 65.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.504, 65.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.332, 65.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.365, 65.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.266, 65.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.482, 65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.513, 65.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.85, 65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.024, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.045, 65.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.859, 65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.031, 65.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.692, 65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.93, 65.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.621, 65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.595, 65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.585, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.641, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.657, 65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.834, 65.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.475, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.701, 65.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.475, 65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.58, 65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.454, 65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.412, 65.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.297, 65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.402, 65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.453, 65.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.425, 65.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.755, 65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 65.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 65.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.384, 65.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 65.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.301, 65.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.064, 64.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.246, 65.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 65.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.241, 65.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 65.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.213, 65.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -54.558, 67.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.059, 65.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 65.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.377, 65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.3, 65.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.203, 65.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.226, 65.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 65.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.18, 65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.104, 65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.097, 65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 65.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.188, 65.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.341, 65.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.365, 65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 65.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.349, 65.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 65.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.093, 65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.398, 65.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.435, 65.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.385, 65.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.539, 65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.51, 65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.542, 65.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.574, 65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.439, 65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.63, 65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.795, 65.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.461, 65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.497, 65.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.463, 65.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.874, 65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.613, 65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.694, 65.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.52, 65.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.894, 65.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.784, 65.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.753, 65.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.95, 65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.917, 65.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.043, 65.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.009, 65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.997, 65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.087, 65.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.069, 65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.058, 65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.069, 65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.051, 65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.278, 65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.359, 65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.17, 65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.433, 65.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.274, 65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.114, 65.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.495, 65.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.1, 65.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.252, 65.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.229, 65.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.248, 65.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.274, 65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.25, 65.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.254, 65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.969, 65.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.261, 65.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.197, 65.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.172, 65.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.154, 65.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.243, 65.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.185, 65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.118, 65.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.11, 65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.176, 65.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.122, 65.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.167, 65.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.143, 65.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.154, 65.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.227, 65.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.257, 65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.196, 65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.851, 64.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.755, 64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.265, 65.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.472, 65.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.065, 65.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.221, 65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.207, 65.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.142, 65.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.125, 65.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.04, 65.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.082, 65.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.082, 65.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.973, 64.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.054, 64.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.033, 65.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.043, 65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.154, 65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.085, 65.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.048, 65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.052, 65.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.257, 65.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.262, 65.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.249, 65.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.267, 65.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.255, 65.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.269, 65.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.235, 65.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.198, 65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.174, 65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.157, 65.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.187, 65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.154, 65.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.308, 65.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.183, 65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.233, 65.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.172, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.457, 65.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.445, 65.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.341, 65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.205, 65.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.305, 65.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.484, 65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.456, 65.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.377, 65.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.749, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.947, 65.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.668, 65.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.784, 65.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.394, 65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.584, 65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.337, 65.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.407, 65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.398, 65.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.386, 65.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.377, 65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.306, 65.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.267, 65.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.117, 65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.066, 65.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.983, 65.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.129, 65.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.034, 65.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.191, 65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.075, 65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.065, 65.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.046, 65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.027, 65.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.089, 65.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.054, 65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.01, 65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.121, 65.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.198, 65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.004, 65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.126, 65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.194, 65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.056, 65.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.956, 65.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.041, 65.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.052, 65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.03, 65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.095, 65.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.096, 65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.164, 65.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.133, 65.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.217, 65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.836, 65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.11, 65.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.066, 65.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.313, 65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.317, 65.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.024, 65.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.066, 65.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.066, 65.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.111, 65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.967, 65.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.164, 65.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.078, 65.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.121, 65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.948, 65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.936, 65.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.207, 65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.108, 65.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.227, 65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.079, 65.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.502, 65.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.183, 65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.118, 65.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.986, 65.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.036, 65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.235, 65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.903, 65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.884, 65.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.807, 65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.865, 65.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.003, 65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.202, 65.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.855, 65.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.973, 65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.889, 65.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.547, 65.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.478, 65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.138, 65.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.368, 65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.789, 65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.797, 65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.793, 65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.637, 65.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.521, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.497, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.512, 65.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.423, 65.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.543, 65.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.363, 65.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.222, 65.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.214, 65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.175, 65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.172, 65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.175, 65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.131, 65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.163, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.138, 65.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.122, 65.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.04, 65.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 65.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.003, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 65.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.929, 65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.018, 65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.996, 65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.97, 65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.926, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.063, 65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.057, 65.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.293, 65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.059, 65.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.063, 65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.06, 65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.098, 65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.121, 65.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.953, 65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.111, 65.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.278, 65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.157, 65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.163, 65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.15, 65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.142, 65.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.151, 65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 65.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.141, 65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 65.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 65.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.169, 65.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.177, 65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.278, 65.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.9, 65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.148, 65.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.837, 65.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.226, 65.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.127, 65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.113, 65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 65.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.134, 65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.166, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.081, 65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.248, 65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.191, 65.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.175, 65.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.181, 65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.245, 65.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.221, 65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.291, 65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.319, 65.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 65.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.154, 65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.639, 65.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.611, 65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.45, 65.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.419, 65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.358, 65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.62, 66.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.527, 65.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.668, 65.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.66, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.955, 65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.885, 65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.431, 65.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.66, 65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.74, 65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.721, 65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.155, 65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.11, 65.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.39, 65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.574, 65.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.54, 65.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.38, 65.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.327, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.223, 65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.209, 65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.781, 65.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 65.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 65.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.293, 65.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.501, 65.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.458, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.325, 65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.144, 65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.148, 65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 65.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.47, 65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.411, 65.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.095, 65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.458, 65.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.276, 65.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.869, 65.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.666, 65.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.396, 65.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.036, 65.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.116, 65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.0, 65.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.996, 65.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.97, 65.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.994, 65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.009, 65.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.214, 65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.106, 65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.999, 65.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.755, 65.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.921, 65.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.853, 65.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.89, 65.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.816, 65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.809, 65.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.821, 65.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.787, 65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.714, 65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.737, 65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.813, 65.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.789, 65.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.95, 65.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.766, 65.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.797, 65.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.724, 65.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 65.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.854, 65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.001, 65.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.699, 65.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.706, 65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.704, 65.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.833, 65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.707, 65.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.69, 65.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.653, 64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.642, 65.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.676, 64.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.674, 64.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.461, 64.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.71, 64.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 64.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.455, 64.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.689, 64.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.566, 64.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 64.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.558, 64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 64.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.49, 64.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.556, 64.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.576, 64.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.496, 64.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.483, 64.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.529, 64.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.396, 64.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.084, 64.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.058, 64.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.14, 64.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.04, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.331, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.738, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.479, 65.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.501, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.488, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.385, 65.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.49, 65.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.565, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.319, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.49, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.511, 65.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.026, 65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.593, 65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.609, 65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.504, 65.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.564, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.983, 65.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.254, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.653, 65.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.378, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.683, 65.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.73, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.71, 65.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 65.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.588, 65.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.706, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.742, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.785, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.687, 65.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.657, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.643, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.594, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.533, 65.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.645, 65.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.691, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.676, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.608, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.768, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.593, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.632, 65.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.837, 65.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.847, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.649, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.705, 65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.888, 65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.779, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.543, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.855, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.725, 65.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.414, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.69, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.833, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.843, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.598, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.732, 65.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.592, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.586, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.577, 65.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.536, 65.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.506, 65.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.669, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.648, 65.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.945, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.56, 65.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.661, 65.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.869, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.965, 65.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.69, 65.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.675, 65.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.879, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.802, 65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.66, 65.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.722, 65.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.652, 65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.746, 65.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.764, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.812, 65.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.952, 65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.67, 65.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.701, 65.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.802, 65.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.83, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.742, 65.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.864, 65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.693, 65.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.625, 65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.563, 65.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.737, 65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.754, 65.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.976, 65.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.975, 65.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.993, 65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.834, 65.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.174, 65.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.128, 65.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.138, 65.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.094, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.147, 65.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.204, 65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.229, 65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.342, 65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.374, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.326, 65.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.489, 65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.509, 65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.414, 65.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.446, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.322, 65.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.389, 65.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.406, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.326, 65.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.392, 65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.505, 65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.542, 65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.523, 65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.637, 65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.526, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.523, 65.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.518, 65.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.553, 65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.444, 65.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.477, 65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.516, 65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.443, 65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.551, 65.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.571, 65.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.576, 65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.545, 65.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.486, 65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.464, 65.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.462, 65.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.598, 65.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.41, 65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.812, 65.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.1, 65.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.591, 65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.457, 65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.918, 65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.625, 65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.877, 65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.553, 65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.446, 65.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.565, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.564, 65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.649, 65.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.263, 65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.12, 65.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.408, 65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.371, 65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.714, 65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.947, 65.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.213, 65.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.608, 65.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.532, 65.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.613, 65.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.702, 65.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.707, 65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.824, 65.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.648, 65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.544, 65.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.65, 65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.424, 65.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.521, 65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.414, 65.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.541, 65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.584, 65.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.726, 65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.341, 65.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.557, 65.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.354, 65.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.386, 65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.497, 65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.52, 65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.584, 65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.482, 65.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.514, 65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.79, 65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.293, 65.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.362, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.024, 65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.907, 65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.027, 65.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.552, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.588, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.539, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.586, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.119, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.411, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.501, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.369, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.461, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.389, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.276, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.261, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.358, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.82, 62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.043, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.61, 62.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.025, 62.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.105, 62.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.081, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.083, 62.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.732, 62.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.735, 62.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.787, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.944, 62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.165, 62.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.188, 62.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.156, 62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.166, 62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.985, 62.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.026, 62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.732, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.832, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.88, 62.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.763, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.611, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.56, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.409, 62.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.275, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.863, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.448, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.487, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.614, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.552, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.547, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.555, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.626, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.68, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.566, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.152, 62.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.153, 62.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.258, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.351, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.557, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.353, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.41, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.332, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.287, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.3, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.356, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.306, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.539, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.326, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.504, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.479, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.499, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.384, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.209, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.648, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.594, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.669, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.337, 62.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.425, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.129, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.087, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.112, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.67, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.633, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.633, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.667, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.669, 62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.635, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.528, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.371, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.489, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.895, 63.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.721, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.397, 63.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.88, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.227, 63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.141, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.904, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.927, 62.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.453, 62.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.758, 62.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.476, 62.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.379, 62.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.475, 62.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.59, 62.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.522, 62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.311, 63.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.279, 63.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.234, 63.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.932, 63.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.062, 63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.12, 63.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.12, 63.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.148, 64.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.13, 64.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.01, 64.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.072, 64.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.123, 64.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.143, 64.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.174, 65.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.414, 64.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.899, 64.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.45, 64.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.505, 64.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.991, 64.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.1, 65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.661, 65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.737, 65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.762, 65.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.953, 65.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.047, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.968, 65.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.939, 65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.717, 65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.761, 65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.748, 65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.882, 65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.191, 65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.875, 65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.838, 65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.836, 65.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.574, 65.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.664, 65.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.947, 65.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.786, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.087, 67.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.073, 67.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.23, 67.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.171, 66.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.381, 67.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.356, 67.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.021, 66.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.062, 66.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.052, 66.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.04, 66.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.451, 66.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.234, 66.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.178, 67.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.362, 67.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.357, 67.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.514, 67.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.402, 67.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.643, 67.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.402, 67.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.695, 67.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.613, 67.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.75, 67.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.11, 67.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.139, 67.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.471, 67.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.969, 67.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.257, 67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.899, 68.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.948, 68.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.889, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.062, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.186, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.439, 70.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.799, 70.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.818, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.751, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.822, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.413, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.879, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.845, 69.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.705, 68.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.721, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.94, 68.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.91, 68.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.789, 67.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.402, 68.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.964, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.159, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.403, 67.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.908, 67.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.545, 67.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.875, 67.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.537, 67.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.288, 67.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.714, 67.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.065, 66.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.509, 67.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.896, 67.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 68.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.225, 67.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.257, 67.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.635, 68.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 67.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.054, 67.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.988, 76.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.997, 67.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 67.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.521, 66.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 67.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.012, 67.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.769, 67.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.737, 67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.805, 67.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.756, 67.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.797, 67.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.977, 66.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.847, 66.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.896, 66.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.867, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.443, 65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.739, 65.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.806, 65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.022, 65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.839, 65.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.339, 65.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.403, 65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.525, 65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.496, 65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.851, 64.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 64.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.63, 64.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.502, 64.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.632, 64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.622, 64.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.345, 64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.225, 64.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.227, 64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.641, 63.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.631, 63.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.048, 63.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.064, 63.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.733, 62.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.908, 63.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.693, 63.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.944, 63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.67, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.957, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.873, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.856, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.83, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.907, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.955, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.177, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.832, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.765, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.866, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.371, 62.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.93, 62.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.953, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.775, 62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.803, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.685, 62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.513, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.297, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.592, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.527, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.574, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.613, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.55, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.665, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.207, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.996, 62.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.957, 62.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.789, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.769, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.927, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.716, 62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.327, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.254, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.34, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.885, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.834, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.375, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.927, 62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.825, 62.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.764, 62.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.131, 62.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.195, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.668, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.073, 62.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.587, 62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.126, 62.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.177, 63.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.214, 63.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.94, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.85, 63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.045, 63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.309, 63.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.309, 63.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.358, 65.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.513, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.575, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.342, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.401, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.624, 66.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.398, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.113, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.657, 66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.35, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.115, 66.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.147, 66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.504, 66.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.277, 66.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.952, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.026, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.255, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.888, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.892, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.101, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.995, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.214, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.182, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.158, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.238, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.384, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.459, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.425, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 13.03, 52.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.427, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.407, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.396, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.11, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.15, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.44, 66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.469, 66.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.077, 66.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.177, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.033, 66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.793, 66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.721, 66.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.749, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.345, 66.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.76, 66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.879, 66.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.763, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.491, 65.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.74, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.341, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.182, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.379, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.109, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.246, 66.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.78, 66.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.581, 66.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.677, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.522, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.338, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.025, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.406, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.213, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.155, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.473, 65.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.255, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.255, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.009, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.215, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.236, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.928, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.837, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.684, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 66.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.885, 66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.844, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.951, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.991, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.008, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.47, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.384, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.673, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.442, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.34, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.22, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.029, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.653, 66.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.202, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.752, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.044, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.158, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.051, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.888, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 66.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.964, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.043, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.823, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.089, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.293, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.202, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.292, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.29, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.507, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.325, 65.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.179, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.396, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.327, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.532, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.475, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.196, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.596, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.265, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.329, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.231, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.325, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.32, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.319, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.333, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.589, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.446, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.532, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.369, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.494, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.622, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.807, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.303, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.651, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.291, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.337, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.001, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.752, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.867, 66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.838, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.05, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.142, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.083, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.078, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.019, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.997, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.04, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.188, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.11, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.864, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.162, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.909, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.693, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.172, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.11, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.186, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.975, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.121, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.793, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.902, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.922, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.133, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.193, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.209, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.314, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.22, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.358, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.183, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.144, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.517, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.625, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.822, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.275, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.394, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.121, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.367, 65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.132, 65.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.353, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.356, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.498, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.536, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.499, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.521, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.032, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.175, 66.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.292, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.131, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.551, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.813, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.829, 66.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.521, 66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.356, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.532, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.48, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.194, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.356, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.15, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.415, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.045, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.349, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.363, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.33, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.23, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.75, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.915, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.851, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.807, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.849, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.851, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.4, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.212, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.303, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.154, 65.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.209, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.355, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.432, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.204, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.39, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.741, 66.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.105, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.151, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.172, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.112, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.123, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.193, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.26, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.019, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.896, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.919, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.619, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.312, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.56, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.07, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.137, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.0, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.463, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.871, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.883, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.841, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.778, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.818, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.035, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.131, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.025, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.515, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.355, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.88, 66.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.008, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.997, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 66.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.851, 66.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.806, 66.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.77, 66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.82, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.018, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.177, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.141, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.196, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.16, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.113, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.097, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.138, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.971, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.846, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.876, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.07, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.835, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.78, 66.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.797, 66.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.814, 66.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.963, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.9, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.011, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.129, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.221, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.529, 65.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.618, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.444, 65.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.547, 65.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.177, 65.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 65.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.961, 65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.006, 65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 65.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.924, 65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.237, 65.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.774, 65.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.744, 65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.58, 65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.743, 65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.8, 65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.751, 65.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.546, 65.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.857, 65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.734, 65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.459, 65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.785, 65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.634, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.732, 65.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.697, 65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.467, 65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.733, 65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.474, 65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.753, 65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 65.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.8, 65.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.797, 65.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.783, 65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.295, 65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.583, 65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.473, 65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.657, 65.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.821, 65.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.514, 65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.745, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.03, 65.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.585, 65.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.725, 65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.665, 65.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.192, 65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.693, 64.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.586, 64.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.591, 64.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.971, 64.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.409, 64.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.154, 64.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.119, 64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.107, 64.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.204, 64.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.347, 64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.816, 64.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.764, 64.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.653, 64.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.78, 64.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.626, 64.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.641, 64.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.48, 64.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.703, 65.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.722, 65.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.766, 65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.738, 65.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.394, 65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.708, 65.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.891, 65.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.946, 65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.927, 65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.763, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.739, 65.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.744, 65.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.591, 65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.618, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.618, 65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.771, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.637, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.698, 65.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.77, 65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.761, 65.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.756, 65.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.689, 65.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.744, 65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.821, 65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.773, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.756, 65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.844, 65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.892, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.871, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.947, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.924, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.937, 65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.935, 65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.947, 65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.345, 65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.079, 65.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.9, 65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.574, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.927, 65.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.051, 65.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.048, 65.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.044, 65.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.046, 65.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.013, 65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.019, 65.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.023, 65.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.067, 65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.114, 65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.317, 65.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.019, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.924, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.21, 65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.878, 65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.842, 65.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.761, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.917, 65.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.891, 65.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.884, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.907, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.656, 65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.621, 65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.559, 65.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.486, 65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.681, 65.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.581, 65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.446, 65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.498, 65.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.81, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.498, 65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.479, 65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.804, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.558, 65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.405, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.524, 65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.451, 65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.429, 65.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.517, 65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.427, 65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.437, 65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.409, 65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.454, 65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.482, 65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.451, 65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.442, 65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.453, 65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 65.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.365, 65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.356, 65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.297, 65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.533, 65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.478, 65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.486, 65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.497, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.513, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.545, 65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.759, 65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.602, 65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.572, 65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.606, 65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.581, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.549, 65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 65.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.534, 65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.56, 65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.37, 65.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.539, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.564, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.559, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 65.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.524, 65.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.543, 65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.596, 65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.601, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.625, 65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.581, 65.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.596, 65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.579, 65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.655, 65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.578, 65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.57, 65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.567, 65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.593, 65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.627, 65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.613, 65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.634, 65.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.521, 65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.47, 65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.593, 65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.454, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 65.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.397, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.366, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.437, 65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.385, 65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.327, 65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.424, 65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.444, 65.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.422, 65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.398, 65.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.548, 65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.502, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.498, 65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.51, 65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.357, 65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.481, 65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.468, 65.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.507, 65.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.626, 65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.422, 65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.481, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.77, 65.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.51, 65.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.448, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.51, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.522, 65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.501, 65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.612, 65.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.531, 65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.522, 65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.513, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.515, 65.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.405, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.458, 65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.459, 65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.393, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.487, 65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.514, 65.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.608, 65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.366, 65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.357, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.597, 65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.585, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.588, 65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.514, 65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.658, 65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.545, 65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.624, 65.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.586, 65.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.59, 65.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.648, 65.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.636, 65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.637, 65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.61, 65.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.6, 65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.509, 65.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.458, 65.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.454, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.337, 65.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.448, 65.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.291, 65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 65.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.222, 65.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.206, 65.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.105, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.217, 65.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.192, 65.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.214, 65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.209, 65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.165, 65.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.209, 65.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.189, 65.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.177, 65.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.259, 65.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.284, 65.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.854, 65.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.471, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.556, 65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.477, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.455, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.518, 65.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.422, 65.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.43, 65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.429, 65.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.384, 65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 65.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.471, 65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.373, 65.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.677, 65.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.622, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.683, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.68, 65.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.779, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.742, 65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.745, 65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.98, 65.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.024, 65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.02, 65.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.053, 65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.119, 65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.034, 65.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.026, 65.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.105, 65.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.977, 65.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.964, 65.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.057, 65.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.137, 65.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.736, 65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.175, 65.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.904, 65.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.866, 65.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.861, 65.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.501, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.555, 65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.503, 65.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.486, 65.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.776, 65.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.763, 65.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.718, 65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.019, 65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.892, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.353, 65.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.271, 65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.539, 65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.236, 65.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.248, 65.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.215, 65.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.243, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.14, 65.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.939, 65.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.073, 65.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.941, 65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.979, 65.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.721, 65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.076, 65.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.035, 65.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.21, 65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.156, 65.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.359, 65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.369, 65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.326, 65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.369, 65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.11, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.444, 65.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.477, 65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.433, 65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.225, 65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.223, 65.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.241, 65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.242, 65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.17, 65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.071, 65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.225, 65.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.112, 65.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.036, 65.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.217, 65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.176, 65.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.101, 65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.063, 65.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.086, 65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.026, 65.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.351, 65.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.245, 65.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.356, 65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.194, 65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.934, 65.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.002, 65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.878, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.888, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.02, 65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.982, 65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.64, 65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.012, 65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.011, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.002, 65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.735, 65.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.977, 65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.81, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.029, 65.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.882, 65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.006, 65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.891, 65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.959, 65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.947, 65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.036, 65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.74, 65.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.722, 65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.377, 65.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.738, 65.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.835, 65.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.678, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.631, 65.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.884, 65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.818, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.694, 65.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.815, 65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.09, 65.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.172, 65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.309, 65.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.355, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.935, 65.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.853, 65.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.856, 65.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.864, 65.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.85, 65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.892, 65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.77, 65.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.842, 65.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 65.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.52, 65.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.341, 65.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.502, 65.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.537, 65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 65.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.925, 65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.762, 65.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.762, 65.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.992, 65.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.797, 65.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.77, 65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.745, 65.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.704, 65.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.638, 65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.715, 65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.599, 65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.638, 65.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.801, 65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.132, 65.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.499, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.749, 65.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.711, 65.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.848, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.649, 65.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.128, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.15, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.204, 65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.566, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.549, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.609, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.512, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.827, 65.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.177, 65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.771, 65.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.032, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.545, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.4, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.608, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.315, 64.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.773, 65.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.284, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.058, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.965, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.487, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.15, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.264, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.232, 66.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.668, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.973, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.439, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.98, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.4, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.293, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.769, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.452, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.571, 65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.686, 66.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.668, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.545, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.708, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.385, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.46, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.465, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.481, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.8, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.069, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.778, 65.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.734, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.744, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.921, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.751, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.734, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.821, 65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.759, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.81, 66.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.728, 65.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.825, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.518, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.491, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.733, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.014, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.978, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.623, 65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.144, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.131, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.085, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.022, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.194, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.215, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.148, 65.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.199, 65.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.722, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.929, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.261, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.797, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.284, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.249, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.568, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.401, 65.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.253, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.437, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.356, 65.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.449, 65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.554, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.062, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.609, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.83, 66.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.832, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.707, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.601, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.915, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.796, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.099, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.399, 65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.908, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.934, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.901, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.293, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.811, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.346, 67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.652, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.363, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.018, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.933, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.89, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.918, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.271, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.787, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.758, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.74, 65.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.576, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.478, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.29, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.077, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.151, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.688, 66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.281, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.191, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.127, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.019, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.998, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.046, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.778, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.92, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.439, 64.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.052, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.989, 66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.881, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.791, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.929, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.606, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.947, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.697, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.898, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.952, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.343, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.006, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.735, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.917, 65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.163, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.598, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.182, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.13, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.133, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.344, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.188, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.054, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.81, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.253, 65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.365, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.552, 66.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.374, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.426, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.431, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.394, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.149, 65.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.529, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.619, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.746, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.437, 65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.899, 66.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.417, 65.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 65.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.524, 65.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.432, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.335, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.405, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.425, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.914, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.538, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.399, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.328, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.661, 65.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.902, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.309, 65.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.976, 67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.074, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.061, 66.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.401, 66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.122, 66.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.557, 66.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.436, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 65.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -47.538, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.143, 66.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.878, 66.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.487, 66.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.418, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.173, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.764, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.7, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.297, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.932, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.911, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.871, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.304, 65.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.768, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.025, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.451, 66.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.317, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.951, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.404, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.75, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.202, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.498, 65.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.379, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.268, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.459, 65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.16, 65.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.016, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.138, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.116, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.998, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.816, 66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.318, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.243, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.364, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.409, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.559, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.186, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.45, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.43, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.714, 65.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.661, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.445, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.04, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.0, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.382, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.54, 66.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.51, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.411, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.45, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.099, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.15, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.478, 65.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.753, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.056, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.303, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.171, 66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.861, 65.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.48, 65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.538, 65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.601, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.571, 65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.546, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.245, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.193, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.056, 65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.406, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.392, 65.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.681, 65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.897, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.17, 65.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 65.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.574, 65.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.48, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.547, 65.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.66, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.707, 65.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.491, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.437, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.414, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.543, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.369, 65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.853, 65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.962, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.172, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.146, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.169, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.099, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.766, 66.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.402, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.024, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.074, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.373, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.543, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.406, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.473, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.416, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.41, 65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.453, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.665, 65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.76, 65.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.864, 65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.063, 65.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 65.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.352, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.25, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.481, 65.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.111, 66.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.058, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.541, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.552, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.169, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.137, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.107, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.137, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.268, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.91, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.054, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.02, 66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.74, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.818, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 66.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.834, 66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.72, 66.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.776, 66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.719, 66.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.678, 66.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.701, 66.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.861, 66.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.784, 66.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.562, 66.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.825, 66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.744, 66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.764, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.839, 66.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.7, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.802, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.943, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.415, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.009, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.634, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.731, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.315, 66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.953, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.892, 65.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.986, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.668, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.936, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.113, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.202, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.11, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.249, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.156, 65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.18, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.218, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.311, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.258, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.386, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.946, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.985, 65.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.374, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.101, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.246, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.123, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.133, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.936, 65.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.075, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.937, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.093, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.093, 66.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.163, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.024, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.018, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.87, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.97, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.963, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.085, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.008, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.97, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.889, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.876, 66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.692, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.052, 66.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.838, 66.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.839, 66.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.753, 66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.762, 66.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 66.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.03, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.812, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.833, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.895, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.926, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.719, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.928, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.108, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.341, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.222, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.416, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.566, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 65.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.417, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.48, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.172, 66.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.495, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.445, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.772, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.076, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.33, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.737, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.074, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.855, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.899, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.055, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.031, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.144, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.265, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.241, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.26, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.165, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.192, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.406, 65.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.503, 65.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.156, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.726, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.07, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.008, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.834, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.918, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.948, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.03, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.981, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.946, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.367, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.222, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.266, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.208, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.924, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.263, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.088, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.246, 65.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.214, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.899, 65.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.267, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.29, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.367, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.233, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.92, 65.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.248, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.25, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.642, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.373, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.756, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.391, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.281, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.742, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.258, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.08, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.154, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.904, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.347, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.116, 66.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.5, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.881, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.264, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.112, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.73, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.637, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.41, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.342, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.195, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.144, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.172, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.117, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.661, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.868, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.807, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.662, 66.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.744, 66.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.909, 66.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.79, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.811, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.083, 65.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.889, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.839, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.816, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.982, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.872, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.813, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.781, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.735, 66.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.867, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.641, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.746, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.811, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.246, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.958, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.977, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.965, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.529, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.844, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.955, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.016, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.058, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.042, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.075, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.128, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.206, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.217, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.069, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.045, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.473, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.145, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.428, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.43, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.458, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.468, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 65.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.095, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.094, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.107, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.053, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.094, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.034, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.941, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.14, 66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.932, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.891, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.878, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.8, 66.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.75, 66.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.87, 66.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.762, 66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.872, 66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.779, 66.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.791, 66.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.73, 66.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.742, 66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.747, 66.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.743, 66.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.102, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.187, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.611, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 65.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.468, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.249, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.293, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.32, 66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.401, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.545, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 65.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.524, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.411, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.38, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.293, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.416, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.391, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.183, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.159, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.108, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.213, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.087, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.254, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.209, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.651, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.33, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.422, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.253, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.231, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.219, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.189, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.148, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.978, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.055, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.057, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.024, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.975, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.954, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.858, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.384, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.793, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.814, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.848, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.821, 66.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.838, 66.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.095, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.143, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.192, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.869, 65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.226, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.281, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.35, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.235, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.157, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.135, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.13, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.129, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.12, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.075, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.996, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.908, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.0, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.647, 66.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.816, 66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.806, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.816, 66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.844, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.835, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.789, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.876, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.91, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.084, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.212, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.264, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.214, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.267, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.186, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.27, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.271, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.244, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.19, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.183, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.181, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.217, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.091, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.204, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.258, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.163, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.086, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.384, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.142, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.052, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.0, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.965, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.046, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.944, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.041, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.044, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.057, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.099, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.198, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.049, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.884, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.16, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.51, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.338, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.435, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.463, 65.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 65.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 65.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.459, 65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.416, 65.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.539, 65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.578, 65.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.552, 65.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.061, 65.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.153, 65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.41, 65.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.271, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.641, 65.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.535, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.373, 65.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.49, 65.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.517, 65.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.607, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.637, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.625, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.034, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.033, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.931, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.535, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.172, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.246, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.399, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.774, 65.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.774, 65.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.774, 65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.988, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.764, 65.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.914, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.755, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.823, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.912, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.093, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.121, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.722, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.685, 65.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.621, 65.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.754, 65.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.768, 65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.838, 65.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.838, 65.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.881, 65.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.755, 65.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.415, 64.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.758, 65.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.761, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.563, 65.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.72, 65.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 64.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 64.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.527, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.501, 64.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.555, 64.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.499, 64.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.586, 64.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.507, 64.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.493, 64.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.744, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 64.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.688, 64.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.574, 64.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.445, 64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.487, 64.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.632, 64.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.172, 64.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.576, 64.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.644, 64.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.628, 64.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.509, 64.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.629, 64.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.644, 64.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.661, 64.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.446, 64.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.192, 64.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.465, 64.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.202, 63.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.217, 63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.208, 63.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.248, 63.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.275, 63.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.359, 63.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.221, 63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.223, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.233, 64.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.294, 63.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.218, 63.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.215, 63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.452, 63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.21, 63.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.203, 64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.202, 64.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.192, 63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.236, 63.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.233, 63.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.245, 64.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.224, 63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.201, 63.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.197, 63.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.211, 63.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.176, 63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.112, 63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.022, 63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.926, 64.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.141, 63.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.133, 64.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.149, 63.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.36, 63.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.302, 63.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.259, 64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.254, 64.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.19, 63.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.885, 63.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.313, 63.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.75, 63.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.895, 63.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.776, 63.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.765, 63.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.823, 63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.597, 63.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.701, 63.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.85, 63.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.33, 63.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.661, 63.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.662, 63.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.633, 63.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.13, 63.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.979, 63.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.004, 63.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.018, 63.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.977, 63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.936, 63.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.873, 63.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.827, 63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.815, 63.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.892, 63.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.79, 63.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.718, 63.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.896, 63.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.887, 63.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.813, 63.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.266, 63.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.905, 63.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.139, 63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.883, 63.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.878, 63.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.564, 63.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.605, 63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.769, 63.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.793, 63.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.767, 63.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.78, 63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.836, 63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.765, 63.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.87, 63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.721, 63.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.804, 63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.821, 63.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.998, 63.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.757, 63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.778, 63.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.803, 63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.77, 63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.822, 63.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.901, 63.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.924, 63.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.781, 63.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.838, 63.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.972, 63.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.071, 63.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.533, 63.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.483, 63.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.387, 63.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.684, 62.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.355, 63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.585, 63.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.455, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.419, 62.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.427, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.516, 62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.831, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.827, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.904, 62.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.141, 62.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.595, 62.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.77, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.006, 62.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.898, 62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.915, 62.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.891, 62.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.9, 62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.879, 62.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.815, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.365, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.554, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.468, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.459, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.72, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.655, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.737, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.628, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.724, 62.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.692, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.635, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.415, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.393, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.372, 62.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.294, 62.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.638, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.335, 62.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.163, 62.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.646, 62.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.64, 62.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.632, 62.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.597, 62.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.638, 62.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.564, 62.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.6, 61.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.635, 61.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.612, 61.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.451, 61.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.72, 61.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.941, 61.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.0, 61.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.025, 61.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.98, 61.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.986, 61.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.849, 61.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.448, 61.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.614, 61.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.811, 61.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.119, 61.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.277, 61.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.452, 61.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.455, 61.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.508, 61.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.603, 61.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.489, 61.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.471, 61.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.529, 61.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.494, 61.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.497, 61.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.522, 61.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.219, 61.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.0, 61.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.114, 61.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.031, 61.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.841, 61.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.933, 61.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.081, 61.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.971, 61.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.05, 61.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.222, 61.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.032, 61.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.066, 61.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.047, 61.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.034, 61.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.149, 61.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.936, 61.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.823, 61.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.823, 61.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.785, 61.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.843, 61.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.688, 61.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.341, 61.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.66, 61.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.743, 61.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.665, 61.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.356, 61.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.666, 61.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.8, 61.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.763, 61.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.866, 61.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.285, 61.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.348, 61.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.253, 61.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.314, 61.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.546, 61.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.557, 61.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.516, 61.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.602, 61.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.639, 61.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.532, 61.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.369, 61.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.405, 61.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.527, 61.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.422, 61.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.662, 61.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.639, 61.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.689, 61.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.636, 61.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.822, 61.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.944, 61.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.844, 61.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.808, 61.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.834, 61.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.892, 61.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.91, 61.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.918, 61.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.943, 61.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.953, 61.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.947, 61.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.416, 62.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.4, 62.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.478, 62.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.451, 62.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.474, 62.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.496, 62.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.595, 62.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.449, 62.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.208, 62.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.277, 62.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.025, 62.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.269, 62.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.236, 62.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.393, 61.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.417, 61.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.402, 61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.406, 62.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.332, 61.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.642, 61.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.939, 61.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.85, 61.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.861, 61.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.947, 61.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.885, 61.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.794, 61.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.955, 61.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.934, 61.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.067, 61.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.947, 62.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.99, 61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.988, 61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.964, 61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.035, 61.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.178, 62.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.172, 62.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.188, 62.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.026, 62.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.17, 62.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.171, 62.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.278, 62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.272, 62.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.25, 62.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.403, 62.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.244, 62.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.406, 62.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.62, 62.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.633, 62.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.228, 62.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.57, 62.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.691, 62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.769, 61.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.65, 62.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.747, 61.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.615, 61.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.67, 61.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.683, 61.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.624, 62.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.623, 61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.873, 62.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.163, 62.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.2, 62.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.164, 62.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.143, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.024, 62.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.426, 62.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.593, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.599, 62.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.555, 62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.668, 62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.635, 62.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.624, 62.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.671, 62.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.703, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.769, 62.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.778, 62.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.817, 62.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.844, 62.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.874, 62.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.115, 62.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.127, 61.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.169, 62.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.165, 62.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.676, 62.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.759, 62.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.789, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.809, 62.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.731, 62.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.593, 62.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.605, 62.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.599, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.605, 62.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.604, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.612, 62.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.684, 62.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.602, 62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.44, 62.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.47, 62.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.492, 62.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.228, 62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.542, 62.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.596, 62.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.543, 62.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.565, 62.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.578, 62.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.632, 62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.634, 62.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.597, 62.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.454, 62.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.449, 62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.393, 62.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.579, 62.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.326, 62.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.201, 62.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.402, 62.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.34, 62.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.446, 62.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.474, 62.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.834, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.704, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.66, 62.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.792, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.749, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.872, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.992, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.743, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.519, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.84, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.857, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.846, 62.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.923, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.899, 62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.936, 62.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.912, 62.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.458, 63.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.74, 63.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.786, 63.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.51, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.737, 63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.716, 63.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.65, 63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.76, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.786, 63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.838, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.772, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.796, 63.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.849, 63.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.461, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.573, 63.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.958, 63.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.254, 63.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.695, 63.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.66, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.63, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.7, 63.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.724, 63.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.014, 63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.852, 63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.054, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.882, 63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.894, 63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.623, 63.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.554, 63.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.683, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.599, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.602, 63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.583, 63.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.518, 63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.648, 63.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.65, 63.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.752, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.72, 63.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.723, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.799, 63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.784, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.421, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.46, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.265, 63.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.327, 63.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.354, 63.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.218, 63.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.347, 63.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.56, 63.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.864, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.96, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.726, 63.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.73, 63.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.711, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.747, 63.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.733, 62.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.856, 62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.94, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.106, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.095, 62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.241, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.231, 62.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.302, 62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.003, 62.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.163, 63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.258, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.23, 62.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.228, 62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.342, 62.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.273, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.953, 62.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.955, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.169, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.192, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.215, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.306, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.392, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.386, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.151, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.513, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.683, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.544, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.765, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.196, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.234, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.212, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.394, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.368, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.364, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.395, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.387, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.426, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.636, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.415, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.368, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.872, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.238, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.232, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.232, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.169, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.323, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.315, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.319, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.357, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.218, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.247, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.463, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.445, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.455, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.47, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.445, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.468, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.631, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.727, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.67, 62.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.764, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.784, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.198, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.663, 62.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.852, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.68, 62.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.707, 62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.768, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.736, 62.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.743, 62.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.484, 62.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.699, 62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.726, 62.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.593, 62.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.626, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.972, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.194, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.504, 62.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.246, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.176, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.19, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.194, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.15, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.987, 62.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.296, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.215, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.989, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.075, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.17, 62.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.118, 62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.153, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.334, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.342, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.512, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.555, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.399, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.328, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.274, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.302, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.276, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.264, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.231, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.387, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.336, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.278, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.302, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.328, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.3, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.382, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.313, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.246, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.457, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.495, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.545, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.956, 62.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.571, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.446, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.259, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.546, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.511, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.662, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.423, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.756, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.579, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.64, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.659, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.471, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.546, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.479, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.428, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.437, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.486, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.435, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.87, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.856, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.687, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.689, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.645, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.606, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.933, 62.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.146, 62.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.018, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.012, 62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.193, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.842, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.773, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.934, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.96, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.099, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.047, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.831, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.744, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.282, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.359, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.206, 62.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.932, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.697, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.436, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.451, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.431, 62.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.35, 62.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.199, 62.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.107, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.965, 62.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.943, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.859, 63.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.906, 63.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.993, 63.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.889, 63.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.609, 63.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.356, 63.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.333, 63.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.314, 63.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.295, 63.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.272, 63.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.197, 63.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.54, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.279, 62.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.577, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.986, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.971, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.442, 62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.417, 62.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.962, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.279, 62.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.193, 62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.001, 61.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.602, 62.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.696, 61.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.615, 61.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.654, 61.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.557, 61.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.663, 61.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.102, 61.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.925, 61.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.014, 61.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.143, 61.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.145, 61.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.425, 62.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.499, 62.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.679, 62.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.268, 62.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.554, 62.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.6, 62.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.439, 62.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.58, 62.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.587, 62.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.627, 62.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.636, 62.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.88, 62.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.588, 62.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.577, 62.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.578, 62.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.774, 62.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.665, 62.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.756, 62.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.185, 62.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.268, 62.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.109, 62.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.42, 62.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.247, 62.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.602, 62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.383, 62.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.526, 62.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.597, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.0, 62.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.968, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.995, 62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.955, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.866, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.806, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.445, 63.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.483, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.834, 63.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.922, 63.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.96, 63.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.856, 63.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.041, 63.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.951, 63.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.064, 63.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.15, 63.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.025, 63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.983, 63.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.276, 63.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.534, 63.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.446, 63.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.327, 63.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.29, 63.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.62, 64.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.213, 63.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.504, 63.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.513, 63.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.751, 63.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.862, 63.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.512, 63.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.458, 63.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.525, 63.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.316, 63.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.421, 63.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.546, 63.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.49, 63.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.528, 63.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.616, 63.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.53, 63.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.437, 63.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.468, 63.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.489, 63.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.474, 63.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.428, 63.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.322, 63.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.369, 63.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.342, 63.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.4, 63.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.408, 63.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.046, 63.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.436, 63.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.373, 63.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.413, 63.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.439, 63.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.419, 63.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.279, 63.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.388, 63.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.257, 63.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.193, 63.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.356, 63.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.537, 63.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.591, 63.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.514, 63.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.395, 63.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.429, 63.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.768, 63.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.525, 63.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.482, 63.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.504, 63.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.701, 63.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.415, 63.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.039, 63.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.418, 63.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.196, 63.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.727, 63.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.921, 63.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.412, 63.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.05, 63.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.198, 63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.417, 63.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.7, 63.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.097, 63.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.782, 63.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.665, 63.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.557, 63.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.614, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.871, 63.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.547, 63.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.629, 63.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.302, 63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.082, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.513, 63.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.614, 63.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.572, 63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.595, 63.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.68, 63.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.884, 63.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.857, 63.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.605, 63.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.529, 63.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.537, 63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.69, 63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.645, 63.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.687, 63.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.856, 63.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.604, 63.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.629, 63.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.33, 63.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.297, 63.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.936, 63.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.102, 63.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.76, 63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.377, 63.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.489, 63.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.859, 63.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.641, 63.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.719, 63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.505, 63.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.593, 63.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.905, 63.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.932, 63.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.639, 63.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.07, 63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.111, 63.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.331, 63.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.956, 63.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.027, 63.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.041, 63.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.877, 63.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.787, 63.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.797, 63.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.226, 63.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.652, 63.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.213, 63.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.188, 63.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.753, 63.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.801, 63.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.874, 63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.069, 64.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.462, 64.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.896, 64.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.358, 64.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.361, 64.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.588, 64.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.476, 64.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.583, 64.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.817, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.574, 65.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.105, 65.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.992, 65.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.985, 65.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.967, 65.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.282, 65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.307, 65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.299, 65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 65.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.425, 65.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.466, 65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.519, 65.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.516, 65.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.632, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.707, 66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 66.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.281, 66.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.399, 66.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.852, 66.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.909, 67.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.094, 67.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.592, 68.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 67.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.351, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.441, 67.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.328, 67.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 67.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.352, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.382, 68.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.409, 68.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.526, 68.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.544, 68.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.499, 68.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.989, 68.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.78, 68.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.638, 68.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.493, 68.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 68.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.944, 68.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 68.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.932, 68.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 68.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 68.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.865, 68.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.896, 68.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 69.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 69.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.838, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.829, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.802, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.813, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.042, 69.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.813, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.886, 69.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.725, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.826, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 69.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.57, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.093, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.208, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.186, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.013, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.977, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.94, 69.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.803, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.418, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.52, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.354, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.375, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.305, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.839, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.876, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.573, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.652, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.568, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.574, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.647, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.497, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.678, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.36, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.809, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.251, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.257, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.632, 69.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.749, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.279, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.058, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.935, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.031, 69.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.038, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.116, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.178, 69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.296, 69.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.249, 69.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.986, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.49, 68.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.532, 68.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.44, 68.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.456, 68.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.447, 68.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.393, 68.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.456, 68.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.576, 68.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.604, 68.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.406, 68.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.454, 67.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.418, 67.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.305, 67.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.113, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.132, 67.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.485, 67.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.352, 67.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.51, 67.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.55, 67.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.588, 67.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.861, 67.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.059, 67.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.091, 65.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.641, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.692, 65.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.721, 65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.733, 65.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.807, 65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.786, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.733, 65.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.667, 65.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.705, 65.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.738, 65.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.756, 65.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.832, 65.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.736, 65.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.839, 65.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.034, 65.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.86, 65.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.725, 65.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.781, 65.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.733, 65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.726, 65.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.646, 65.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.822, 65.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.74, 65.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.769, 65.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.709, 65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.775, 65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.792, 65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.839, 65.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.811, 65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.818, 65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.766, 65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.78, 65.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.812, 65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.739, 65.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.772, 65.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.856, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.513, 65.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.408, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.948, 66.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.168, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.606, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.643, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.771, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.548, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.618, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.682, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.345, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.353, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.355, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.219, 65.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.404, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.513, 66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.259, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.726, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.814, 65.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.253, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.018, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.979, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.719, 65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.66, 65.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.027, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.401, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.859, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.5, 65.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.376, 65.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.945, 65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.581, 65.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.706, 65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 65.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.885, 65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.886, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.765, 65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.964, 65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.733, 65.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.871, 65.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.768, 65.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.674, 65.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.674, 65.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.971, 65.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.886, 65.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.868, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.753, 65.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.733, 65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.728, 65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.784, 65.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.781, 65.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.681, 65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.027, 65.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.877, 65.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.074, 65.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.451, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.547, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.815, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.22, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.473, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.591, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.687, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.545, 66.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.056, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.99, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.054, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.928, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.11, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.868, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.003, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.603, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.989, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.966, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.821, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.897, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.928, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.869, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.892, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.22, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.978, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.929, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.145, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.59, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.529, 66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.136, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.246, 65.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.293, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.39, 65.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.565, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.45, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.788, 65.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 65.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.481, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 65.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.785, 65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.529, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.751, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.56, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.408, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.738, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.108, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.178, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.154, 65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.436, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.826, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.153, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.717, 65.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.058, 66.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.955, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.559, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.175, 65.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.13, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.677, 65.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.969, 66.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.045, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.485, 66.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.57, 65.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.663, 65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.416, 65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.412, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.343, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.369, 65.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.353, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.312, 66.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.12, 65.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.287, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.3, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.258, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.138, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.52, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.699, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.115, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.522, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.55, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.558, 67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.917, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.447, 65.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.592, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.487, 65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.972, 67.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.372, 66.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.431, 65.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -55.262, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.228, 66.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.307, 64.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.902, 65.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -56.885, 64.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 65.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.839, 67.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -56.82, 65.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.461, 66.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.521, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.192, 65.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.734, 64.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -54.486, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.545, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.742, 65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.681, 65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.825, 65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.695, 65.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.223, 65.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 65.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.801, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.579, 65.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.359, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.673, 65.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.603, 65.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.507, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.055, 65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.551, 65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.237, 66.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.966, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.844, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.826, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.915, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.637, 65.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.885, 65.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.065, 66.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.872, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.83, 66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.593, 65.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.818, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.738, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.489, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.817, 65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.769, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.858, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.911, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.845, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.925, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.12, 66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.223, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.426, 66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.407, 66.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.857, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.1, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.635, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.003, 66.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.999, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.114, 65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.091, 65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.268, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.091, 66.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.19, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.713, 66.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.911, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.549, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.424, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.799, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.656, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.647, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.207, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.137, 67.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.704, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.483, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.11, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.718, 65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.765, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.099, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.614, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.269, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.253, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.691, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.221, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.424, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.784, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.066, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.318, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.683, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.875, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.633, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.576, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.677, 66.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.417, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.837, 66.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.422, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.602, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.155, 65.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.49, 65.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.303, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.544, 65.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.43, 65.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.234, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.829, 66.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.314, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.72, 66.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.41, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.666, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.907, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.363, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.089, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.3, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.832, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.643, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.75, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.581, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.635, 66.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.006, 66.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.173, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 65.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.666, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.756, 66.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.644, 65.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.802, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.541, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.698, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.714, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.683, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.412, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.419, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.405, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.405, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.405, 65.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.548, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.755, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.317, 66.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.811, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.897, 66.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.948, 66.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.756, 66.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.811, 66.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.636, 66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.819, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.45, 66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.663, 66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.985, 66.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.74, 66.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.853, 66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.789, 66.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.847, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.122, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.101, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.714, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.163, 66.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.342, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.499, 66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.296, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.627, 65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.273, 66.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.408, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.429, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.693, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.582, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.556, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.399, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.059, 65.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.3, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.191, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.136, 65.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.693, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.659, 65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.406, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.142, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.59, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.314, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.881, 66.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.865, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.968, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.883, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.657, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.876, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.268, 65.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.855, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.874, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.911, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.969, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.136, 65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.105, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.942, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.252, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.185, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.123, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.138, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.143, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.085, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.916, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.896, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.934, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.128, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.84, 65.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.05, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.12, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.977, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.064, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.834, 65.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.813, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.013, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.033, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.718, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.98, 65.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.116, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.119, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.14, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.195, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.01, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.684, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.977, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.122, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.214, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.325, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.825, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.244, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.094, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.935, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.193, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.065, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.81, 65.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.68, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.542, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.39, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.469, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.502, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.463, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.611, 65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.39, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.687, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.636, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.435, 65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.825, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.154, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.582, 65.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.968, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.542, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 65.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.037, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.708, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.675, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.59, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.002, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.627, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.931, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.173, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.934, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.706, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.116, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.26, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.151, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.513, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.105, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.643, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.47, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.444, 65.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.59, 65.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.311, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.865, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.494, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.067, 65.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.484, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.293, 65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.021, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.253, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.145, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.951, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 65.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.928, 65.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.409, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.436, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.327, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.309, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.199, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.104, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.3, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.681, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.22, 66.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.252, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.549, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.145, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.289, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.302, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.098, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.124, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.112, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.012, 65.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.369, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.705, 65.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.406, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.812, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.246, 66.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.717, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.634, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.629, 66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.89, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.875, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.095, 66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.315, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.862, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.988, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.294, 66.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.037, 66.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.918, 66.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.895, 66.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.528, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.635, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.305, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.041, 67.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.966, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.735, 66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.953, 66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.202, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.387, 66.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.976, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.238, 65.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.598, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.242, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.401, 66.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.601, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.015, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.111, 65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.358, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.367, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.984, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.267, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.201, 65.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.502, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.364, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.128, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.405, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.386, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.93, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.998, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.128, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.964, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.044, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.01, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.997, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.931, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.121, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 66.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.705, 66.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.381, 66.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.833, 66.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.602, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.121, 66.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.795, 66.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.76, 66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.769, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.394, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.18, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.67, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.931, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.765, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.98, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.24, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.88, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.261, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.404, 66.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.3, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.461, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.479, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.254, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.12, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.226, 65.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.259, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.25, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.008, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.487, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.416, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.796, 67.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.632, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.139, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.512, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.463, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.806, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.271, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.815, 65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.991, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.684, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.19, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.795, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.571, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.567, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 65.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.369, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.517, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.343, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.491, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.481, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.443, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.34, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.357, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.445, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.217, 65.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.956, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.402, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.484, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.333, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.346, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.165, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.9, 66.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.043, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.08, 66.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.526, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.996, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.086, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.154, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.005, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.13, 66.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.785, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.135, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.998, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.198, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.04, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.723, 66.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 66.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.17, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.839, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.687, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.919, 66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.797, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.882, 66.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.68, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.768, 66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.856, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.828, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.934, 65.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.846, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.881, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.877, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.849, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.878, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.901, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.863, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.932, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.88, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.785, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.864, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.872, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.82, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.194, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.769, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.831, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.59, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.738, 66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.221, 66.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.605, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.669, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.942, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.758, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.835, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.993, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.778, 66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.0, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.858, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.919, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.918, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.981, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.944, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.933, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.954, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.896, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.951, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.91, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.995, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.05, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.08, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.878, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.062, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.139, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.117, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.874, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.023, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.105, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.051, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.261, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.718, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.19, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.29, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.065, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.137, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.079, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.134, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.029, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.191, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.311, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.151, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.268, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.187, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.229, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.163, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.853, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.188, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.046, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.139, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.643, 65.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.091, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.26, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.09, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.517, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.756, 65.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.229, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.209, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.119, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.178, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.177, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.138, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.133, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.412, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.096, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.2, 66.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.005, 66.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.064, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.208, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.918, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.173, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.126, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.156, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.016, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.974, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.025, 66.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.835, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.812, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.768, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.811, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.766, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.898, 66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.711, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.973, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.74, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.741, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.533, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.756, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.861, 66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.802, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.716, 66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.948, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.942, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.713, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.637, 66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.01, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.688, 66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.816, 66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.877, 66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.599, 66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.759, 66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.721, 66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.901, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.81, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.825, 66.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.875, 66.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.898, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.812, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.11, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.807, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.622, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.824, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.807, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.945, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.861, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.783, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.877, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.82, 66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.991, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.858, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.991, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.124, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.107, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.004, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.053, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.984, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.881, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.913, 66.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.77, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.749, 66.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.895, 66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.607, 66.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.743, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.755, 66.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.759, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.677, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.922, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.631, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.945, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.93, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.929, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.669, 66.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.909, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.913, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.932, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.748, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.822, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.997, 66.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.783, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.545, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.716, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.778, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.71, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.792, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.969, 66.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.421, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.009, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.768, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.526, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.814, 66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.724, 66.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.892, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 66.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.543, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.58, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.834, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.775, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.619, 66.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.839, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.805, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.79, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.999, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.691, 66.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.917, 66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.928, 66.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.971, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.698, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.972, 66.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.647, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.869, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.811, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.135, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.823, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.112, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.1, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.898, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.771, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.844, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.979, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.828, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.87, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.937, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.743, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.079, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.434, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.776, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.746, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.795, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.781, 66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.22, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.795, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 66.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.789, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.858, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.908, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.859, 66.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.186, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.814, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.954, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.014, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.161, 66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.933, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.953, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.738, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.866, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.568, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.867, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.846, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.939, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.868, 66.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.795, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.833, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.947, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.917, 66.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.753, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 66.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.927, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.962, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.978, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.022, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.134, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.99, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.061, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.088, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.287, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.947, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 66.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.148, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.102, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.513, 66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.628, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.037, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.896, 66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.08, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.968, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.411, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.15, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.258, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.231, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.29, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.212, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.122, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.124, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.227, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.967, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.431, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.192, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.355, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.337, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.347, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.333, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.223, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.239, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.066, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.054, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.316, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.998, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.033, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.034, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.085, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.047, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.056, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.953, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.941, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.723, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.997, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.058, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.893, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.973, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.164, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.977, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.955, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.982, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.941, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.952, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.88, 66.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.782, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.007, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.943, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.943, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.219, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.416, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.262, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.263, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.238, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.209, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.263, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.198, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.194, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.245, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.042, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.196, 66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.092, 65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.227, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.448, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.236, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.24, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.223, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.186, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.196, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.241, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.254, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.183, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.909, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.16, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.377, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.231, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.231, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.563, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.419, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.357, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.233, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.124, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.078, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.902, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.872, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.953, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.995, 66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.893, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.764, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.646, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.795, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.511, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.545, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.775, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.676, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.988, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.766, 66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.723, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.066, 66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.955, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.716, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.867, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.866, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.961, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.909, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.019, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.051, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.027, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.219, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.233, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.144, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.836, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.177, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.942, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.12, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.186, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.126, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.198, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.803, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.935, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.315, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.327, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.978, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.33, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.314, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.939, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.6, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.359, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.232, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.036, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.881, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.811, 66.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.779, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.819, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.835, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.856, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.872, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.79, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.682, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.806, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.806, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.626, 66.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.963, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.68, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.924, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.611, 66.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.373, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.534, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.758, 66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.795, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.789, 66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.934, 66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.76, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.849, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.86, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.867, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.874, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.857, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.914, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.962, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.936, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.893, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.219, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.132, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.918, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.963, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.902, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.919, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.915, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.984, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.026, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.041, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.04, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.156, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.999, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.127, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.469, 65.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.087, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.018, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.919, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.942, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.929, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.962, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.99, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.0, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.942, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.057, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.067, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.023, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.178, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.197, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.864, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.93, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.415, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.035, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.064, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.055, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.097, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.144, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.127, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.124, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.092, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.11, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.097, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.12, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.099, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.09, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.032, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.03, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.104, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.998, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.013, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.08, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.015, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.912, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.9, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.025, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.05, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.109, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.714, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.079, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.032, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.132, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.754, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.402, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.445, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.458, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.409, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.495, 65.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.414, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.432, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.206, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.985, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.138, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.157, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.16, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.179, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.119, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.151, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.026, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.88, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.829, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.79, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.752, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.735, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.673, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.468, 62.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.048, 62.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.307, 61.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.997, 61.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.96, 61.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.444, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.945, 60.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.345, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.52, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.473, 62.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.396, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.57, 62.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.379, 62.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.522, 62.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.448, 62.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.223, 64.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.523, 64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.665, 62.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.538, 62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.864, 62.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.499, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.494, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.399, 62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.463, 62.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.292, 62.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.384, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 62.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.578, 62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 62.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.565, 62.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.581, 62.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.48, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.518, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.179, 62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.973, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.499, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.498, 62.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.501, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.473, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.531, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.566, 62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.34, 62.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.773, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.392, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.514, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.516, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.497, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.432, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.551, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.533, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.512, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.548, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.572, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.466, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.708, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.459, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.463, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.521, 62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.346, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 62.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.518, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.542, 62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.865, 62.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.643, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.522, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.457, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.588, 62.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.425, 62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.533, 62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.537, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.504, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.697, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.473, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.433, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.141, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.641, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.495, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.52, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.512, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.58, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.465, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.302, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.689, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.55, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.58, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.55, 62.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.523, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.551, 62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.405, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.429, 62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.654, 62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.55, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.807, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.668, 62.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.606, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.576, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.663, 62.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.524, 62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.397, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.454, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.381, 62.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 62.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.406, 62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.424, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.108, 62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.396, 62.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.398, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.287, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.581, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.161, 60.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.356, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.407, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.351, 62.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.232, 62.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.248, 62.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 62.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.5, 62.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.426, 62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.38, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.376, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.369, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.359, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 62.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.345, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.463, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.582, 62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.485, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.409, 62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.453, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.465, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.312, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 62.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.489, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.41, 62.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.26, 62.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 62.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 62.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.449, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 62.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.16, 62.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.259, 62.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.363, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.449, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.497, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.402, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.333, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.333, 62.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.303, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.383, 62.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.398, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.7, 62.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.374, 62.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.213, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 62.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.394, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.387, 62.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.219, 62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.199, 62.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.182, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.31, 62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.598, 62.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.246, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.556, 62.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.996, 62.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.232, 62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 62.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.208, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.128, 62.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.202, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.111, 62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.014, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.982, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.912, 62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.124, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.947, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.879, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.895, 62.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 62.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.333, 62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.237, 62.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.095, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.23, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.27, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.088, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.374, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.471, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.366, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.261, 62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.158, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.311, 62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.373, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.194, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.181, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.235, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.303, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.193, 62.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.239, 62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.317, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.276, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 62.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.233, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.265, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.303, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.198, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.104, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.212, 62.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.235, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.229, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.244, 62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.237, 62.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 62.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.499, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.318, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.291, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.378, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.263, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.289, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.105, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.353, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.343, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.418, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.342, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.3, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.244, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.331, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.364, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.365, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.273, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.396, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.275, 62.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.281, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.342, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.128, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.383, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.301, 62.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.358, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.435, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.396, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.139, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 62.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.863, 62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.511, 62.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.324, 62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.646, 62.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.581, 62.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.561, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.497, 62.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.621, 62.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 62.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.342, 62.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.103, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.096, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.215, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.541, 62.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.381, 62.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.731, 62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.733, 62.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.612, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.645, 62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.097, 63.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.803, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.631, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.712, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.55, 62.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.605, 62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.663, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.821, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.558, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.861, 62.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.915, 62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.652, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.734, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.639, 62.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.801, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.907, 63.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.593, 62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.57, 62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.659, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.703, 62.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.952, 62.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.099, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.247, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.441, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.771, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.687, 62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.896, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.738, 62.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.272, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.611, 62.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.955, 63.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.77, 62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.186, 63.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.578, 62.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.612, 62.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.699, 62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.658, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.663, 62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.682, 62.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.752, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.629, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.009, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 62.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.807, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.764, 63.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.075, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.751, 62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 62.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.694, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.3, 63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.568, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.738, 62.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.698, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.608, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.98, 62.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.901, 62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.706, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.752, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.625, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.922, 62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.806, 62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.071, 63.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.707, 62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.949, 62.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.748, 62.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.087, 62.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.515, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 62.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.886, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.609, 62.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.655, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.631, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.584, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.746, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.594, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.533, 63.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.108, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.151, 63.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.474, 62.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.448, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.447, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.264, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.248, 62.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.418, 62.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.451, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.618, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.439, 63.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.545, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.464, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.502, 63.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.396, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.448, 62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.61, 62.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.322, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.528, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.524, 62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.556, 62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.429, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.575, 62.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.322, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.583, 62.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.522, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.447, 62.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.927, 63.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.097, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.446, 62.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.365, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.525, 62.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.563, 62.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.064, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.587, 63.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.587, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.519, 63.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.415, 62.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.555, 62.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.58, 63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.664, 62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.269, 62.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.901, 63.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.493, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.46, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.406, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.172, 62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.261, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.434, 63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.506, 62.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.475, 62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.464, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.53, 62.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.446, 62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.455, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.696, 63.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.444, 62.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.606, 62.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.408, 62.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.355, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.494, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.526, 62.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.393, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.466, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.5, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.512, 62.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.526, 62.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.528, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.402, 62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.791, 62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.564, 62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.199, 62.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.518, 62.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.725, 63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.501, 62.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.471, 62.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.892, 63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.487, 63.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.651, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.645, 63.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.61, 63.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.742, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.472, 62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.823, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.49, 63.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.646, 63.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.62, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.569, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.598, 63.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.631, 63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.732, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.655, 63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.643, 63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.638, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.503, 63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.402, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.59, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.243, 63.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.294, 63.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.747, 63.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.892, 63.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.043, 63.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.206, 63.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.162, 63.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.05, 63.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.031, 63.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.134, 63.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.878, 63.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.918, 63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.806, 63.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.625, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.266, 62.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.242, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.735, 63.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.516, 63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.642, 63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.495, 64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.114, 64.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.174, 64.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.12, 64.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 65.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.187, 65.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.826, 64.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.238, 65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 65.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.6, 65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.765, 65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.803, 65.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.04, 65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.905, 66.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.861, 66.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.007, 66.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.088, 66.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.0, 66.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.179, 66.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.961, 66.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.996, 66.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.876, 66.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.828, 66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.537, 66.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.773, 66.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.402, 67.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.127, 67.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.034, 67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.627, 67.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.059, 67.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.033, 67.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.061, 67.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.457, 68.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.614, 68.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.687, 67.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.24, 68.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.256, 67.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.118, 67.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.319, 67.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.639, 67.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.113, 67.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.243, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.181, 67.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.57, 68.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.171, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.307, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.307, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.674, 67.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.281, 67.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.002, 67.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.544, 67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.095, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.963, 67.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.1, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.387, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.852, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.78, 67.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.548, 67.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.694, 67.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.677, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.865, 67.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.284, 67.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.391, 67.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.576, 67.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.303, 67.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.694, 67.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.382, 68.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.383, 67.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.463, 68.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.356, 67.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.324, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.675, 67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.584, 68.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 68.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.1, 67.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.376, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.57, 67.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.243, 67.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.969, 67.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.747, 68.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.508, 68.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.406, 68.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.342, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.556, 67.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.143, 67.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.164, 67.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.483, 67.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.404, 67.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.448, 67.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.716, 68.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.565, 68.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.348, 67.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.505, 67.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.469, 68.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.638, 68.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.454, 68.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.648, 68.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.858, 68.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.689, 68.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.372, 68.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.707, 67.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.662, 67.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.634, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.587, 68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.417, 68.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.675, 67.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.731, 67.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.244, 68.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.277, 68.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.659, 68.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.507, 68.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.61, 68.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.725, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.64, 68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.611, 67.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.546, 68.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.122, 67.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.816, 68.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.733, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.621, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.699, 68.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.727, 68.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.641, 68.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.62, 68.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.674, 68.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.59, 68.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.787, 68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.448, 68.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.794, 68.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.629, 68.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.541, 67.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.602, 68.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.699, 68.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.608, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.831, 68.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.782, 68.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.745, 68.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.33, 68.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.64, 68.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.885, 67.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.592, 68.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.506, 68.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.585, 68.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.724, 68.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.588, 68.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.698, 68.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.779, 68.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.991, 68.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.745, 68.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.993, 68.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.978, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.257, 68.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.356, 68.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.501, 68.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.509, 68.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.429, 67.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.752, 67.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.689, 68.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.575, 67.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.555, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.718, 68.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.015, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.267, 68.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.632, 68.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.736, 68.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.563, 68.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.605, 68.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 68.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.52, 68.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.709, 68.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.662, 68.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.556, 68.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.447, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.495, 68.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.335, 68.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.11, 67.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.164, 67.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.025, 67.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.158, 67.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.133, 67.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.489, 67.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.579, 67.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.388, 67.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.13, 67.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.278, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.339, 67.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.309, 67.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 67.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.328, 67.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.152, 67.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.422, 67.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.414, 67.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.585, 67.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.268, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.261, 67.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.385, 67.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.271, 67.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.35, 67.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.334, 67.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.993, 67.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.35, 67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.411, 67.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.547, 67.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.298, 67.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.942, 67.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.372, 67.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.619, 67.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.332, 67.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.359, 67.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.296, 68.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.347, 67.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.714, 67.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.583, 68.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.522, 67.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.445, 67.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.862, 68.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.665, 67.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.909, 67.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.571, 67.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.402, 67.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.636, 67.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.499, 67.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.469, 67.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.442, 67.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.49, 67.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.435, 67.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.469, 67.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.567, 67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.91, 67.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.306, 67.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.651, 67.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.441, 67.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.473, 67.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.624, 68.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.411, 67.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.3, 67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.247, 67.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.05, 68.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.375, 67.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.439, 67.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.6, 67.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.398, 67.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.964, 67.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.532, 67.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.569, 67.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.405, 67.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.258, 67.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.453, 67.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.439, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.919, 67.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.364, 67.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.35, 67.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 67.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.536, 67.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.737, 67.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.713, 67.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.734, 67.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.901, 67.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.765, 67.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.342, 67.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.641, 67.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.668, 67.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.394, 67.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.471, 67.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.43, 67.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.397, 67.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.4, 67.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.408, 67.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.842, 67.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.507, 67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.031, 67.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.664, 67.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 67.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.719, 67.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.77, 67.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.833, 67.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.557, 67.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.169, 67.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.826, 67.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.847, 67.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.927, 67.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.975, 67.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.022, 67.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.91, 68.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.038, 67.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 68.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.157, 68.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.179, 68.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.586, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 68.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.912, 67.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.349, 67.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.375, 67.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 67.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.247, 68.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.13, 68.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.714, 68.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.501, 68.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.943, 65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.048, 68.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.365, 68.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.77, 67.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.254, 67.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.705, 67.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.587, 67.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.183, 66.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.308, 67.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.547, 68.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.328, 67.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.916, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.323, 65.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.825, 68.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.562, 68.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.5, 67.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.442, 67.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 68.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.668, 67.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.675, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.511, 68.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.62, 68.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.025, 68.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 67.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.621, 68.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.871, 67.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.653, 68.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.563, 67.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.895, 68.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.736, 68.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.702, 68.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.78, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.836, 68.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.843, 68.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.513, 68.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.869, 68.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.843, 68.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 68.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.955, 68.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.888, 68.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 68.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.755, 68.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.736, 68.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.709, 68.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.791, 68.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.752, 68.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.677, 68.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.156, 68.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.453, 68.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.422, 68.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 68.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.585, 68.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.463, 68.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.39, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 68.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.603, 68.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 68.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.45, 68.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.427, 68.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 68.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.451, 68.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.459, 68.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 68.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.425, 68.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.854, 68.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.288, 67.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 68.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.833, 68.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 68.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 68.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.536, 68.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 68.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.519, 68.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.63, 68.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.622, 68.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.606, 68.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.594, 68.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.545, 68.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.59, 68.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 68.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.666, 68.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.641, 68.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.621, 68.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.697, 68.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.673, 68.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.618, 68.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.657, 68.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.734, 68.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.68, 68.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.705, 68.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.73, 68.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.637, 68.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.713, 68.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.68, 68.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.866, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.002, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.928, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.97, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.793, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.972, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.988, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.997, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.994, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.97, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.938, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.235, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.011, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.017, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.002, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.043, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.0, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.993, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.004, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.998, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.998, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.95, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.059, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.761, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.97, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.057, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.016, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.876, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.877, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.964, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.893, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.815, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.234, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.025, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.997, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.107, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.035, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.148, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.044, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.077, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.05, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.142, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.034, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.004, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.952, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.901, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.831, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.983, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.018, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.918, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.934, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.793, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.739, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.111, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.05, 66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.287, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.232, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.965, 65.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.587, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.461, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.661, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.635, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.525, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.614, 66.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.107, 66.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.104, 66.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.087, 66.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.227, 66.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.091, 66.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.163, 66.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.02, 66.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.052, 66.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.158, 66.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.026, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.801, 85.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.933, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.848, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.824, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.596, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.59, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.843, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.189, 66.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.084, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.862, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.325, 65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.628, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.998, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.997, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.688, 66.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.401, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.32, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.428, 65.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.342, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.602, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.435, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.824, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.106, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.392, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.966, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.297, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.383, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.401, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.249, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.91, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.181, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.992, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.992, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.76, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.116, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.917, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.984, 66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.337, 66.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.087, 66.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.004, 66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.568, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.199, 66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.963, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.119, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.87, 62.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.876, 65.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.279, 66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.603, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.747, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.12, 66.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.824, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.841, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.821, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.844, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.245, 66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.992, 66.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.191, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.793, 66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.474, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.408, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.957, 66.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.369, 66.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.639, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.01, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.203, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.727, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.686, 66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.301, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.26, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.074, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.181, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.169, 66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.365, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.141, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.053, 66.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.239, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.108, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.952, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.019, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.164, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.177, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.886, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.045, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.938, 66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.028, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.373, 66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.346, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 66.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.067, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.115, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.945, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.965, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.717, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.944, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.561, 66.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.076, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.797, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.673, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.756, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 66.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.9, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.269, 66.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.697, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 66.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.948, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.947, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.741, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.923, 66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.867, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.867, 66.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.753, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.05, 66.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.828, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.056, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.054, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.383, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.331, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.74, 66.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.768, 66.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.859, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.553, 66.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.824, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.811, 66.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.748, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.68, 66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.66, 66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.866, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.984, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.877, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.52, 65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.963, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.892, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.094, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.781, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.698, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.675, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.858, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.823, 66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.003, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.24, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.189, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.859, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.886, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.825, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.694, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.841, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.869, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.17, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.969, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.95, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.873, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.831, 66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.953, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.169, 66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.278, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.094, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.5, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.229, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.13, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.098, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.277, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.166, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.941, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.048, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.018, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.957, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.791, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.92, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.895, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.875, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.054, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.872, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.849, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.062, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.791, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.805, 66.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.856, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.929, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.971, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.003, 66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.053, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.071, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.043, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.061, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.134, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.167, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.129, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.92, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.881, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.862, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.712, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.1, 66.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.802, 66.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.104, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.275, 66.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.834, 66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.862, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.903, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.261, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.187, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.937, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.98, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.819, 66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.859, 66.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.757, 66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.734, 66.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.771, 66.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.611, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.784, 66.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.717, 66.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.768, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.927, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.782, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 66.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.874, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.857, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 66.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.897, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.902, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.882, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.893, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.932, 66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.755, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.838, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.367, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.119, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.27, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.529, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.242, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.137, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.548, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.158, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.253, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.167, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.267, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.098, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.11, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.102, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.818, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.025, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.993, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.07, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.488, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.362, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.271, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.164, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.157, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.931, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.141, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.104, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.075, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.049, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.015, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.0, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.812, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.861, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.832, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.87, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.755, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.918, 66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.397, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.349, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.262, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.407, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.531, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.446, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.239, 65.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.264, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.035, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.747, 66.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.386, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.284, 65.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.525, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.146, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.542, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.127, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.495, 66.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.869, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.908, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.822, 66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.197, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.833, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.936, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.106, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.871, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.046, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.316, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.362, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.709, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.639, 65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.623, 65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.574, 65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.845, 65.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.479, 65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.565, 65.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.864, 65.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.664, 65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.494, 65.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.623, 65.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.753, 65.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.699, 61.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.795, 61.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.053, 61.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.931, 61.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.171, 61.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.215, 61.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.127, 62.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.96, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.953, 62.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.454, 62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.475, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.837, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.867, 62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.309, 62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.596, 62.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.591, 62.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.588, 62.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.848, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.871, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.728, 62.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.685, 62.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.78, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.747, 62.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.79, 62.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.759, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.796, 62.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.798, 62.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.742, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.883, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.663, 62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.578, 62.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.729, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.035, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.803, 62.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.78, 62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.695, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.942, 62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.72, 62.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.656, 62.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.899, 62.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.808, 62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.67, 62.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.896, 62.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.931, 62.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.991, 62.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.99, 62.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.958, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.918, 62.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.959, 62.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.944, 62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.787, 62.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.926, 62.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.067, 62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.108, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.988, 62.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.153, 62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.334, 62.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.315, 62.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.517, 62.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.632, 62.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.335, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.286, 62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.805, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.104, 61.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.62, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.644, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.68, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.685, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.708, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.681, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.68, 62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.667, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.646, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.601, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.714, 62.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.636, 62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.523, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.893, 62.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.942, 62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.042, 63.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.018, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.228, 63.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.023, 63.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.973, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.17, 62.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.961, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.086, 63.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.581, 63.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.495, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.485, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.452, 63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.443, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.508, 62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.082, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.219, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.219, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.212, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.224, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.225, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.292, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.227, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.257, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.26, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.249, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.253, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.873, 62.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.357, 62.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.392, 62.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.352, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.337, 62.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.48, 62.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.612, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.872, 62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.907, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.538, 62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.961, 62.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.852, 62.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.071, 62.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.11, 62.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.146, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.164, 62.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.126, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.155, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.097, 62.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.268, 62.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.493, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.645, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.646, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.618, 62.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.645, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.674, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.666, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.16, 62.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.975, 62.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.993, 63.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.45, 63.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.835, 63.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.873, 63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.812, 63.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.078, 63.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.091, 63.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.093, 63.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.118, 63.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.722, 63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.885, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.023, 63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.961, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.971, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.141, 63.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.962, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.214, 63.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.317, 63.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.564, 63.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.495, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.587, 63.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.946, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.978, 62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.963, 62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.961, 62.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.757, 63.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.803, 63.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.835, 62.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.928, 62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.928, 62.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.979, 62.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.807, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.745, 62.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.704, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.761, 62.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.669, 62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.692, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.624, 62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.847, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.759, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.815, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.812, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.372, 63.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.451, 63.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.533, 63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.422, 63.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.434, 63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.416, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.391, 69.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.309, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.306, 69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.293, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.451, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.229, 69.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.214, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 69.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 69.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.292, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.316, 69.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.396, 68.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 68.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.233, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.299, 68.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.316, 68.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 68.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.383, 68.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.231, 68.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.221, 68.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.232, 68.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.191, 68.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.432, 68.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.051, 68.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 68.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.281, 68.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.042, 68.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.224, 68.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 68.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.365, 68.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.293, 68.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 68.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.061, 68.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.944, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.008, 68.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.154, 68.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 68.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.211, 68.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.222, 68.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.294, 68.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.324, 68.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.238, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.198, 68.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.174, 67.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 68.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.167, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.544, 67.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.992, 67.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.983, 67.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 67.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.887, 67.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.176, 67.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.708, 67.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.787, 67.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.68, 67.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.711, 67.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.35, 67.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 67.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.885, 67.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.586, 67.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.711, 67.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.693, 67.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.527, 67.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.673, 67.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.898, 67.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.823, 67.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.718, 67.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.706, 67.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 67.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.74, 67.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.723, 67.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.796, 67.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 67.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 67.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 66.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.648, 67.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.613, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.55, 67.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 67.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.588, 67.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 67.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.907, 67.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.56, 67.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 67.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.483, 67.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 67.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.064, 67.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.566, 67.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.834, 67.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.172, 67.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.526, 67.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.713, 67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.773, 67.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.559, 67.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.662, 67.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.624, 67.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.643, 67.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.566, 67.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.597, 67.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.965, 67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.641, 67.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.746, 67.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.565, 67.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.686, 67.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.641, 67.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.263, 67.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.505, 67.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.655, 67.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.74, 68.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.88, 67.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.903, 67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.445, 67.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.563, 67.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.505, 67.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.768, 67.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 68.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 68.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.824, 68.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 68.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.244, 68.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 68.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 68.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 68.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 68.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.985, 68.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 68.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.557, 68.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 68.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.47, 68.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 68.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.491, 68.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.721, 68.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 68.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.901, 68.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.631, 68.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.08, 68.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.511, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.956, 68.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.683, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.093, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.298, 69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.389, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.379, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.329, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.379, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.389, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.277, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.286, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.415, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.493, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.846, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.693, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.605, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.606, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.579, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.532, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.696, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.697, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.657, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.475, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.461, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.439, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.36, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.395, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.465, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.579, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.604, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.923, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.161, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.254, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.611, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.902, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.116, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.624, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.298, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.337, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.393, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.55, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.871, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.775, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.0, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.657, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.727, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.523, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.227, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.765, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.601, 70.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.66, 70.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.522, 71.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 71.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.527, 71.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.437, 70.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.915, 71.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 71.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.011, 71.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 71.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.192, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 71.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.379, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.195, 71.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.897, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 71.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.579, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.948, 71.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.056, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 71.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.083, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.677, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.887, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.497, 72.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.624, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.476, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.423, 72.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.215, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.189, 71.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.26, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 71.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.357, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.342, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.334, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 71.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 71.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.902, 71.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.436, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.952, 71.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.124, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.143, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.136, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 72.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.945, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.941, 72.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.818, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.777, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 72.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.702, 72.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 72.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 72.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 72.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 72.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 72.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.753, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 72.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 72.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.596, 72.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 72.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.581, 72.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.788, 72.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.898, 72.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.472, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.334, 72.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.843, 72.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.086, 72.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.813, 72.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.436, 72.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.868, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.478, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.478, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.464, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 72.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 72.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 72.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 72.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.553, 72.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.588, 72.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.141, 72.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 72.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.83, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.761, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.545, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.936, 72.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.486, 72.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.402, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 71.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.784, 71.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.725, 71.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 71.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 71.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.029, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.071, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 71.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.117, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 71.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 71.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.946, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 71.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 71.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.912, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.346, 71.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.935, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.496, 71.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 71.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.78, 71.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.089, 71.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.442, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.406, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.454, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.547, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.435, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 71.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 71.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.911, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.746, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.519, 71.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.615, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.578, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.594, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.612, 71.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.626, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.572, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 71.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.682, 71.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.585, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.428, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.689, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.762, 71.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 71.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.356, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.623, 71.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.955, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.624, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.677, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.584, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.472, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.285, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.383, 71.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.733, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.586, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.509, 71.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.474, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.482, 71.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.71, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.612, 71.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.479, 71.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.687, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.676, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.392, 71.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.761, 71.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.83, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.552, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.544, 71.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.706, 71.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.282, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 71.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 71.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 71.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.956, 71.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.421, 71.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 71.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47, 72.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.127, 71.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.18, 71.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.405, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.833, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.866, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.625, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.373, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.206, 71.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.862, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.816, 71.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.667, 71.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.566, 71.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.583, 71.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.487, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.087, 71.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.783, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.071, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.148, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 71.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.725, 71.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.838, 71.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 71.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.316, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.071, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.04, 71.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.021, 71.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.112, 71.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.595, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.722, 71.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.676, 71.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.006, 71.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 71.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.553, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 71.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 71.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 71.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 71.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.912, 71.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 71.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 71.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.333, 71.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.999, 71.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 70.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 71.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.934, 71.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.465, 70.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.453, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 70.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 70.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.782, 70.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.782, 70.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 70.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 70.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 70.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 70.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 70.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 70.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 70.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.702, 70.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 70.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 70.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.677, 70.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.834, 70.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.099, 70.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.481, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.453, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.438, 70.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.422, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.394, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.536, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.432, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.626, 70.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.627, 70.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.568, 70.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.472, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.525, 70.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.525, 70.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.674, 70.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.519, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.519, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.696, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.523, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.632, 70.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.698, 70.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.544, 70.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.512, 70.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.665, 70.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.677, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.527, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.717, 70.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.071, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.508, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.991, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.672, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.462, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.048, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.593, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.512, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.497, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.627, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.461, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.462, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.454, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.458, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.182, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.306, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.134, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.358, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.015, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.893, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.841, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.744, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.781, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.823, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.761, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.521, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.623, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.49, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.293, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.112, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.951, 69.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.856, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.392, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.628, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.251, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.797, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.235, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.82, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.919, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.98, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.75, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.859, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.73, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.798, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.811, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.803, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.73, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.793, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.812, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.811, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.848, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.799, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.617, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.58, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.691, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.855, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.857, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.475, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.527, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.68, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.811, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.426, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.614, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.435, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.57, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.638, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.766, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.134, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.926, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.935, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.151, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.178, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.229, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.186, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.339, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.419, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.582, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.659, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.58, 70.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.653, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.837, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.122, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.959, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.083, 70.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.342, 70.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.962, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.021, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.864, 70.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.164, 70.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.06, 70.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.864, 70.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.069, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.916, 70.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.067, 70.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.575, 70.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.135, 70.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.118, 70.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.987, 70.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.105, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.096, 70.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.097, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.185, 70.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.977, 70.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.911, 70.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.863, 70.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.601, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.258, 70.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.016, 70.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.985, 70.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.907, 70.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.935, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.883, 70.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.297, 70.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.983, 70.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.168, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0, 70.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.959, 70.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.975, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.925, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.85, 70.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.912, 70.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.781, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.975, 70.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.699, 70.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.776, 70.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.701, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.699, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.683, 70.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.625, 70.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89, 70.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.26, 70.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.395, 70.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.367, 70.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.114, 70.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.098, 70.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.207, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.106, 70.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.642, 70.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.134, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.949, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.326, 70.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.247, 70.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.25, 70.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.001, 70.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.176, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.151, 70.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.959, 70.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 70.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.14, 70.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.423, 71.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.68, 71.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.394, 71.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.65, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.643, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.649, 71.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.269, 71.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.067, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.601, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.665, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.667, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.674, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.699, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.692, 71.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.753, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.428, 68.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.507, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.782, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.882, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32, 71.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.341, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.115, 71.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.306, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.963, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.236, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.409, 71.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.396, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.479, 71.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.299, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.414, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.284, 71.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.314, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.303, 71.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.259, 71.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.462, 71.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.339, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.655, 71.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.977, 71.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 71.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.26, 71.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.407, 71.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.322, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.421, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.716, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.657, 71.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 71.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.52, 70.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.368, 71.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.427, 70.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 70.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.548, 70.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 70.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 70.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.987, 70.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.774, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 70.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 70.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 70.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 71.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.036, 71.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.814, 70.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.735, 70.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.214, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.601, 71.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.481, 71.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.451, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.605, 71.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.672, 71.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.985, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.9, 71.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.209, 71.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 71.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.563, 71.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 71.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 71.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 71.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.764, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.299, 71.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.868, 70.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 71.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 70.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 70.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 71.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.959, 70.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 70.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 70.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 70.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 70.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 70.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 70.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.28, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.661, 70.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.436, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.289, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.585, 71.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.657, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.726, 71.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 71.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.747, 71.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 71.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.769, 71.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.859, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.138, 71.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 71.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.754, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 70.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.033, 70.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.879, 71.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.951, 71.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.704, 71.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.931, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 70.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 70.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 70.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72, 70.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 70.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.225, 70.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.903, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 70.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 70.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 70.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 70.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.894, 70.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.986, 70.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.723, 70.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 70.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.499, 71.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.071, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 71.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.447, 71.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.596, 71.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.128, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 71.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 71.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.211, 71.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 71.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.226, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.908, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.755, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 70.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 70.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.459, 70.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 70.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.885, 70.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 70.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 70.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.795, 70.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 70.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.67, 70.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.48, 70.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.497, 70.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.295, 70.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 70.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 70.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.766, 70.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.119, 70.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36, 70.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46, 70.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.811, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.839, 70.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.995, 70.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 70.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.864, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.827, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.119, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.722, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.749, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.816, 70.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.638, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.595, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.524, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.715, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.486, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.728, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.317, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.507, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.171, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.207, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.686, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.289, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.186, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.931, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.893, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.896, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.747, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.896, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.755, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.483, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.726, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.217, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.963, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.343, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.019, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.763, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.725, 69.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.622, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.279, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.274, 67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.36, 67.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 67.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 67.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.324, 67.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.358, 67.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.487, 67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.819, 66.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 66.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.084, 66.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 66.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 66.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.142, 66.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 66.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.071, 66.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 66.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.195, 66.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.607, 65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.511, 65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.538, 65.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.53, 65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.771, 65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.745, 65.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.684, 65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.713, 65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.856, 65.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.765, 65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.384, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.378, 65.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.751, 65.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.65, 65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.589, 65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.154, 65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.592, 65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.366, 65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.43, 65.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.985, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.235, 65.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 64.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.834, 64.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.287, 64.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.012, 64.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.194, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.992, 64.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.844, 64.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.848, 64.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.833, 64.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.912, 64.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.687, 64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.859, 64.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.739, 64.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.808, 63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.541, 63.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.052, 63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.731, 63.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.778, 63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.955, 63.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.721, 63.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.405, 63.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.416, 63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.393, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.985, 64.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.855, 63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.795, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.89, 63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.677, 63.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.648, 63.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.601, 63.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.549, 63.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.654, 63.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.679, 63.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.612, 63.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.526, 63.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.493, 63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.432, 63.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.378, 63.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.383, 63.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.447, 63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.914, 63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.122, 63.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.144, 63.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.191, 63.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.666, 63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.574, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.085, 63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.399, 63.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.402, 63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.238, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.824, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.497, 62.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.641, 62.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.614, 62.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.569, 62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.456, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.505, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.299, 62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.221, 63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.503, 62.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.515, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.496, 62.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.357, 62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.377, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.631, 62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.339, 63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.464, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.495, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.436, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.533, 63.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.437, 63.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.698, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.701, 63.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.796, 63.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.858, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.741, 63.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.814, 63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.839, 63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.384, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.607, 63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.547, 63.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.6, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.564, 63.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.957, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.089, 63.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.727, 63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.672, 63.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.366, 62.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.3, 62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.302, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.051, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.361, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.216, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.482, 62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.535, 62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.421, 62.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.968, 62.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.331, 62.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.662, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.241, 62.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.112, 62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.048, 62.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.854, 61.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.867, 61.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.966, 61.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.95, 61.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.766, 61.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.801, 61.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.78, 61.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.185, 61.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.54, 61.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.891, 61.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.469, 62.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.766, 62.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.212, 62.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.657, 61.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.017, 62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.802, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.982, 61.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.876, 62.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.432, 62.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.287, 62.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.479, 62.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.654, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.719, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.685, 62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.63, 62.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.528, 62.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.748, 62.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.092, 62.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.536, 62.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.528, 62.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.61, 62.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.665, 62.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.563, 62.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.524, 62.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.243, 62.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.736, 62.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.251, 61.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.578, 62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.423, 62.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.709, 62.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.709, 62.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.606, 62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.462, 62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.05, 62.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.973, 62.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.015, 62.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.944, 62.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.797, 62.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.881, 62.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.609, 62.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.428, 61.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.529, 62.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.028, 62.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.363, 62.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.385, 62.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.741, 62.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.839, 61.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.868, 62.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.223, 62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.199, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.09, 62.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.223, 62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.678, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.803, 62.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.382, 61.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.755, 62.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.537, 62.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.64, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.706, 62.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.696, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.129, 62.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.217, 62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.256, 62.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.711, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.056, 62.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.358, 62.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.534, 62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.166, 62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.699, 62.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.855, 62.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.026, 62.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.617, 62.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.57, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.665, 62.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.638, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.781, 62.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.728, 62.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.677, 62.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.268, 62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.252, 62.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.448, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.413, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.441, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.59, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.728, 62.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.845, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.986, 62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.823, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.675, 62.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.334, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.705, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.737, 62.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.428, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.816, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.888, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.815, 62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.814, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.84, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.026, 62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.056, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.968, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.005, 62.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.963, 63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.094, 63.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.696, 63.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.241, 63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.645, 63.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.904, 63.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.738, 63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.714, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.619, 63.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.134, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.828, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.837, 62.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.108, 62.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.871, 62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.693, 62.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.546, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.822, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.473, 64.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.592, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.518, 62.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.888, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.923, 62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.103, 62.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.748, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.136, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.355, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.255, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.546, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.855, 62.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.751, 62.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.921, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.782, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.909, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.848, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.732, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.499, 62.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.542, 62.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.133, 62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.656, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.76, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.979, 63.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.967, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.992, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.243, 63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.193, 63.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.415, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.467, 63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.548, 63.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.501, 63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.674, 63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.279, 63.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.902, 63.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.053, 63.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.253, 63.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.926, 63.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.339, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.896, 63.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.058, 63.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.069, 63.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.97, 63.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.974, 63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.816, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.752, 63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.74, 63.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.777, 63.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.785, 63.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.802, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.83, 63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.622, 63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.596, 63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.7, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.828, 63.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.293, 63.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.919, 64.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.022, 63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.076, 63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.415, 64.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.66, 64.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.555, 64.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.41, 63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.786, 64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.912, 64.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.42, 64.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.561, 64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.716, 64.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.732, 64.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.916, 64.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.975, 64.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 64.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.527, 64.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.448, 64.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.445, 64.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.554, 64.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.455, 64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 64.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.643, 64.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.018, 64.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.981, 64.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.053, 64.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 64.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.776, 64.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 64.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.163, 64.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.237, 64.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 64.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.191, 64.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 64.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.171, 64.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.046, 64.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 64.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 64.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.747, 64.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.646, 64.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 64.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 64.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.567, 64.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 64.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 64.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 64.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.867, 64.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 64.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.854, 64.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 64.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.884, 64.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.626, 64.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.76, 64.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.773, 64.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.312, 64.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.42, 64.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.375, 64.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.492, 64.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.415, 64.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.329, 64.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.324, 64.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.893, 64.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.918, 64.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.002, 64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.82, 64.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.99, 64.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.091, 64.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.936, 64.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.938, 64.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.908, 64.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.942, 64.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 64.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 64.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.201, 64.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 64.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.994, 64.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.932, 64.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.211, 64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.203, 64.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 64.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 64.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.343, 64.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 64.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 64.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.717, 64.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.568, 64.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 64.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.618, 64.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.596, 64.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.718, 64.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 64.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 64.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 64.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 64.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.604, 64.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.608, 64.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.538, 64.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.55, 64.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.642, 64.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.508, 64.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.067, 64.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.311, 63.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.162, 63.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.077, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.526, 64.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.443, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.469, 64.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.326, 64.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.426, 64.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.415, 64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.413, 64.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 64.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.665, 64.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.527, 65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.179, 65.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.145, 65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.209, 65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.198, 65.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.24, 65.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.038, 65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.106, 65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.688, 65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.11, 65.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.132, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.109, 65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.875, 65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.113, 65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.074, 65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.077, 65.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.035, 65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.559, 65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.037, 65.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.149, 65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.506, 65.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.021, 65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.703, 65.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.345, 65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.374, 65.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.413, 65.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.437, 65.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.279, 65.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.381, 65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.597, 65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.346, 65.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.334, 65.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.413, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.321, 65.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.845, 64.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.574, 65.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.662, 65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.165, 65.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.002, 65.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.402, 66.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.68, 66.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.835, 66.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.688, 66.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.497, 66.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.467, 66.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.831, 67.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 67.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.312, 67.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.732, 67.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.084, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.203, 67.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 67.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.108, 66.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.691, 66.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.974, 66.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.62, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.438, 66.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.439, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.282, 65.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.906, 64.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 64.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.13, 64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.47, 64.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 64.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.314, 64.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.276, 64.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.181, 64.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.206, 64.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.034, 64.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.011, 64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.023, 64.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.04, 64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.992, 64.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.913, 64.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.924, 64.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.9, 64.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.898, 64.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.322, 64.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.908, 64.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.882, 64.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.912, 64.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 64.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.932, 64.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.83, 64.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.903, 64.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.321, 64.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.072, 64.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.925, 64.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.958, 64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.838, 64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.757, 64.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.965, 64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.046, 64.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.811, 64.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.572, 64.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.715, 64.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.668, 64.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.642, 64.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.633, 64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.674, 64.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.531, 64.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.865, 64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 64.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.009, 64.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.427, 65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.384, 65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.375, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.504, 66.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 66.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 67.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 67.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.493, 68.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 68.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.637, 68.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.506, 68.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.422, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.532, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.673, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.863, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.285, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.321, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.158, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.803, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.026, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.678, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.537, 69.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.243, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.181, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.302, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.684, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.468, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.451, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.496, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.521, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.028, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.043, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.169, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.176, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.153, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.326, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.746, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.7, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.056, 69.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.323, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.034, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.067, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.332, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.342, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.636, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.74, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.217, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.425, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.209, 69.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.509, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.8, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.733, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.905, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.855, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.873, 70.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.048, 70.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.286, 70.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.634, 70.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.411, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.365, 71.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 72.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 72.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.268, 72.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 72.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 72.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.074, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.96, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 72.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.726, 72.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.673, 72.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.773, 72.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 72.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.941, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.763, 72.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.926, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 72.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 72.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 72.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.854, 72.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 72.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16, 72.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.954, 72.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.956, 72.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 72.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 72.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.972, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 72.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 72.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 72.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.782, 72.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 72.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 72.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.097, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.628, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.423, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.371, 71.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 71.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.427, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 71.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 72.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.638, 72.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 72.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.132, 72.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.755, 72.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.175, 72.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 72.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 72.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.364, 72.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.172, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.467, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.404, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.283, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.191, 71.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.959, 71.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.199, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 72.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 72.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.445, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.378, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.788, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.492, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.496, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.146, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.857, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.956, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3, 71.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 71.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 71.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.024, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.214, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.183, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 71.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.894, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.027, 71.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 71.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.184, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.133, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.128, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.138, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.388, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.264, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 71.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.103, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 71.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.02, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.386, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.906, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.182, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 72.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.467, 72.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.253, 72.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 72.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.771, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.885, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.82, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.755, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.681, 72.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.805, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.932, 72.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.119, 72.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.225, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.183, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.444, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 71.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.095, 71.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.822, 70.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 70.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.923, 70.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.501, 77.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.819, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.683, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.989, 71.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 71.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.814, 71.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.815, 71.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.676, 71.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.333, 71.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.308, 71.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.254, 71.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.295, 71.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.195, 71.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.08, 71.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.044, 71.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.039, 71.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03, 71.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.927, 71.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.383, 71.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.125, 71.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.035, 71.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.821, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.936, 71.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.783, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.673, 71.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.217, 71.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.844, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.636, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.63, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.903, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.755, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.775, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.641, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.424, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.799, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.86, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.818, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.844, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.842, 71.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.256, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.757, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.789, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.909, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.937, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.981, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.927, 71.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.914, 71.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.893, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.872, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04, 71.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.143, 71.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.019, 71.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.78, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.61, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.743, 71.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.843, 71.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.72, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.871, 71.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.821, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.87, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.774, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.91, 71.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.097, 71.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.903, 71.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.251, 71.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.988, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.871, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.943, 70.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.914, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.825, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.755, 71.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.802, 71.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.843, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.219, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.143, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.226, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.615, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2, 71.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.219, 71.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.581, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.186, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.243, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.815, 70.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.245, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.884, 70.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.206, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.181, 70.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.215, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.845, 70.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.016, 70.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.307, 71.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.996, 71.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.923, 70.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.699, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.772, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.388, 70.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.563, 71.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.822, 71.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.573, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.517, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.139, 71.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.253, 71.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27, 71.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.673, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.873, 71.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.832, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.891, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.677, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.144, 71.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.134, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.103, 71.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.043, 71.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.982, 71.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.967, 71.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.878, 71.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.197, 71.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.076, 71.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.092, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.128, 71.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.181, 71.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.153, 71.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.278, 71.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.17, 71.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.116, 71.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.169, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.696, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.265, 71.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.052, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.916, 71.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.623, 71.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.802, 71.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.745, 71.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 71.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.564, 71.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 71.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.332, 71.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.469, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.243, 71.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.407, 71.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.475, 71.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.575, 71.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.368, 71.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.087, 71.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.35, 71.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.248, 71.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.346, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.273, 71.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.056, 71.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.843, 71.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.261, 71.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.217, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.006, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.129, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.911, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.278, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.128, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.186, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.279, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.125, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.117, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.134, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.128, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.179, 71.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.211, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.182, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.356, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.091, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.062, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.001, 71.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.88, 71.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.105, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.147, 71.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.873, 70.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.978, 70.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.018, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.335, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.043, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.009, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.989, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.068, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.006, 70.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.551, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.961, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.059, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.006, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.011, 70.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.874, 70.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.197, 70.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.043, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.282, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.107, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.413, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.128, 71.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.938, 70.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.885, 70.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.936, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.901, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.829, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.872, 70.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.685, 70.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.811, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.86, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.983, 71.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.898, 70.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.868, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.837, 70.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76, 70.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.722, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.016, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.138, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.096, 71.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.014, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.978, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.795, 71.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98, 71.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.977, 71.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.956, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.044, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.963, 71.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.97, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.961, 71.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.983, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.035, 71.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.984, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.955, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.043, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.061, 71.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.026, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.983, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.926, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.859, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.904, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.029, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.139, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.272, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.297, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.271, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.943, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.021, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.987, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.61, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.169, 71.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.194, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.028, 71.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.974, 71.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.968, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.959, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.972, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.212, 71.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.967, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.116, 71.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.228, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.103, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.077, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.201, 71.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.132, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.139, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.331, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.317, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.388, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39, 71.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.375, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.329, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.361, 71.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.417, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.179, 71.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.379, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.318, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.607, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.388, 71.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.286, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.364, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.333, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53, 71.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.541, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.525, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.397, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.45, 71.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.404, 71.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.792, 71.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.333, 71.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.461, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.358, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.364, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.245, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.246, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.232, 71.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.265, 71.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.215, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.288, 71.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21, 71.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.121, 71.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.203, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.163, 71.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.146, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.211, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.217, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29, 71.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.286, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.097, 71.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.106, 71.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.615, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.886, 71.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.334, 71.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.092, 71.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.439, 71.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.616, 71.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.618, 71.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.493, 71.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.673, 71.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.779, 71.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.071, 71.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 71.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.106, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.951, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.945, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 71.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.922, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.874, 71.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.972, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 71.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.985, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 71.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 71.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 71.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 71.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.918, 71.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 71.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.055, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93, 71.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 71.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 71.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.835, 71.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 71.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 71.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 71.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 71.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1, 71.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 71.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 71.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 71.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.141, 71.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 71.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.407, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.313, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.222, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 71.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.685, 70.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.638, 70.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 70.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 70.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 70.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.505, 70.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 70.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.496, 70.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 70.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 70.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.716, 70.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.755, 70.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 70.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.702, 70.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.647, 70.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 70.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 70.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 70.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 70.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.855, 70.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 70.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 71.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 70.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.844, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76, 70.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.862, 70.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 70.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.708, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 70.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.79, 70.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.936, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95, 71.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.693, 71.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.751, 71.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.703, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 71.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.326, 71.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 71.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.271, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.989, 71.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.786, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.771, 71.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.774, 70.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.094, 70.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.059, 70.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76, 70.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.019, 70.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.985, 70.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.826, 70.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.986, 70.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.825, 70.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.224, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.107, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.272, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.889, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.861, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.158, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.338, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.478, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.826, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.201, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.086, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.895, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.743, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.546, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.147, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.666, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.456, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.262, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.011, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.002, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.547, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -44.309, 63.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.999, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.583, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.454, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.614, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.503, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.345, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.291, 69.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.534, 69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.034, 68.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.822, 68.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.424, 68.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.685, 68.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.456, 68.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.786, 68.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 68.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.347, 68.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.224, 68.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.628, 68.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 67.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.546, 67.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 67.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.55, 67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.601, 67.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.543, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.503, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.529, 67.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.458, 66.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.686, 66.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.651, 66.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.764, 66.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 66.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.887, 66.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.255, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.306, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.397, 65.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.013, 65.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.575, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.97, 65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.591, 65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.58, 65.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.856, 65.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.614, 65.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.986, 65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.991, 65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.069, 65.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.884, 65.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.987, 65.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.829, 64.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.595, 64.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 64.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.813, 64.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.88, 64.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.826, 64.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.881, 64.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.86, 65.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.773, 64.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.658, 64.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.668, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.377, 64.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.336, 64.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.426, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.429, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.588, 69.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.261, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.305, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.302, 69.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.201, 69.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.209, 69.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.175, 69.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 69.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.348, 69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 69.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.543, 69.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.229, 68.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.27, 68.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.345, 68.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.32, 68.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.314, 69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 68.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.229, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 68.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.006, 68.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 68.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 68.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.024, 68.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.005, 68.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.953, 68.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.839, 68.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.755, 68.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.649, 68.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 68.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 68.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.615, 68.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.787, 68.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.525, 68.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.562, 68.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.577, 68.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.502, 68.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.558, 68.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.479, 68.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.62, 68.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.418, 68.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.463, 68.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.432, 68.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.45, 68.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 68.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.434, 68.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.471, 68.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.462, 68.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 68.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.506, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.28, 68.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.342, 69.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.388, 69.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.339, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.448, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.333, 69.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.582, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.618, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.657, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.755, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.759, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.903, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.994, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.981, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.993, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.044, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.164, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.098, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.945, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.925, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 69.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.067, 69.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 69.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.139, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 69.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.09, 69.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 69.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.012, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.088, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.103, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.893, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.913, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.135, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.957, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.867, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.813, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.691, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.736, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.844, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.89, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.897, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.039, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 69.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.227, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.384, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.243, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.467, 69.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.34, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.446, 69.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.276, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.267, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.066, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.076, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.983, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.839, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.769, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.904, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.952, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.907, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.023, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.064, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.095, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.096, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.311, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.262, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.275, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.358, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.049, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.172, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.137, 69.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.894, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.216, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.876, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.868, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.85, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.907, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.117, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.104, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.048, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.177, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.022, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.239, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.235, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.402, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.358, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.325, 69.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.347, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.693, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.51, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.777, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.02, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.934, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.95, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.011, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.379, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.513, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.857, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.88, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.214, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.637, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.564, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.984, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.138, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.925, 70.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.832, 70.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.323, 70.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.614, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.574, 70.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 71.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.184, 71.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 71.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.188, 71.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.227, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 71.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.287, 71.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 71.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 71.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.578, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.613, 71.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.672, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 71.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 71.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 71.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 71.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.832, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.703, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.868, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.937, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 71.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.956, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.707, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.939, 71.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 71.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 71.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 71.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 71.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.417, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.222, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.728, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.423, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.551, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.493, 71.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.242, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 71.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.468, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.648, 71.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.512, 71.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.412, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.195, 71.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 71.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.461, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.201, 71.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 71.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.684, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.822, 71.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.511, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 71.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.821, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.818, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.664, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.725, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.327, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.611, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.657, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.543, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.429, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 72.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.521, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 72.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.603, 72.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.456, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.562, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 72.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.515, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.463, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 72.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.278, 71.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 72.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 72.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.345, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.436, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.397, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 72.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 72.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 72.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 72.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 72.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 72.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.736, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 72.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 72.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.422, 72.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 72.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 72.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 72.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 72.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 72.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.581, 72.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 72.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.811, 72.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 72.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 72.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.548, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.542, 72.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99, 72.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.558, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.595, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.593, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.348, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.663, 72.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.711, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.625, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.577, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.347, 72.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.437, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.583, 72.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.562, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.412, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.263, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.402, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.266, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.806, 72.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.804, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.184, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 72.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 72.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 72.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.197, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 71.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.333, 71.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 71.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 71.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 71.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.638, 71.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.639, 71.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.423, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.467, 70.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.418, 70.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.285, 70.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.134, 70.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.507, 70.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12, 70.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.218, 70.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.122, 70.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.047, 70.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.945, 70.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.905, 70.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.558, 70.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.136, 70.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.555, 70.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.494, 70.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.253, 70.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.163, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.833, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.578, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.661, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.653, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.556, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.446, 69.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.457, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.505, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.474, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.451, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.41, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.188, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.397, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.392, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.886, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.419, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.868, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.462, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.388, 69.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.509, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.433, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.442, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.529, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.388, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.256, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.268, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.061, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.088, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.663, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.984, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.094, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.006, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.795, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.824, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.851, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.546, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.614, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.384, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.417, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.117, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.229, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.173, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.22, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.215, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.244, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.005, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.819, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.851, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.734, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.554, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.401, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.375, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.234, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.181, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.587, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.47, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.36, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.209, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.15, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.824, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.044, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.859, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.076, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.853, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.835, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.607, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.723, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.807, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.751, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.77, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.874, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.881, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.521, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.059, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.898, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.837, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.958, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.527, 69.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.079, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.855, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.859, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.735, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.854, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.658, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.083, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.969, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.953, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.975, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.86, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.951, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.044, 69.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.774, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.948, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.116, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.601, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.112, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.996, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.974, 69.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.943, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.151, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.966, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.023, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.229, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.179, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.076, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.003, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.982, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.074, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.863, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.629, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.962, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.984, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.959, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.927, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.808, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.691, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.586, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.818, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.935, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.995, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.134, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.96, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.909, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.856, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.818, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.795, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.877, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.979, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.341, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.805, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.842, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.932, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.852, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.973, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.941, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.044, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.093, 69.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.813, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.838, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.006, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.994, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.537, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.484, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.432, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.409, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.305, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.113, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.749, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.801, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.585, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.814, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.896, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.752, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.812, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.547, 69.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.265, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.244, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.273, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.233, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.232, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.268, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.267, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.173, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.027, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.916, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.906, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.834, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.661, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.767, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.777, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.773, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.83, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.77, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.701, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.773, 69.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.755, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.782, 69.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.739, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.767, 69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.742, 69.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.728, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.755, 69.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.022, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.983, 69.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.872, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.857, 69.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.768, 69.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.711, 69.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.675, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.715, 69.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 69.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.771, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.864, 68.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.132, 68.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.037, 68.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.036, 68.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.006, 68.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.113, 68.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.175, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.142, 68.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 68.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.034, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.887, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.901, 69.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.687, 69.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.916, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.701, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.875, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.048, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.079, 69.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.021, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.118, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.086, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.308, 69.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.294, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.283, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.299, 69.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.833, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.914, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.884, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.193, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.422, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.262, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.252, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.408, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.523, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.288, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.422, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.403, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.592, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.677, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.73, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.731, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.809, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.838, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.783, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.798, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.917, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.095, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.435, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.768, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.95, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.35, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.891, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.839, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.491, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.779, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.844, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.989, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.963, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.695, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.96, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.02, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.969, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.901, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.947, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.962, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.928, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.8, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.782, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.8, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.93, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.84, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.831, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.86, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.697, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.223, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.164, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.249, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.121, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.003, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.507, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.225, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.008, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.962, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.808, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.758, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.6, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.5, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.542, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.461, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.777, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.831, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.261, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.186, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.107, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.013, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.892, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.829, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.245, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.831, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.696, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.826, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.756, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.882, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.462, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.743, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.569, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.816, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.801, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.288, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.311, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.616, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.018, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.929, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.911, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.87, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.876, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.917, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.89, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.58, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.79, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.777, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.739, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.693, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.719, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.694, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.695, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.689, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.677, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.631, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.542, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.271, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.297, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.438, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.544, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.437, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.682, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.293, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.356, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.562, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.542, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.95, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.991, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.476, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.035, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.011, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.015, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.98, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.733, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.986, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.925, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.917, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.9, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.857, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.891, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.827, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.807, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.706, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.617, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.654, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.684, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.535, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.831, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.606, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.586, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.745, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.818, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.295, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.26, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.894, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.812, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.276, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.157, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.404, 69.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.321, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.178, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.28, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.184, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.087, 69.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.158, 68.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.059, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.148, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.153, 69.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.457, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.127, 69.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.199, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.954, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.813, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.095, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.139, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.25, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.275, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 69.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.083, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.067, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.726, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.263, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.744, 69.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.4, 69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.379, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.576, 69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.098, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.124, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.451, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.024, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.917, 68.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.841, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.475, 69.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.451, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.245, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.298, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.368, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.127, 69.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.24, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.138, 69.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.495, 69.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.119, 69.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 68.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.93, 68.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.276, 68.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.061, 68.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.066, 68.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.431, 68.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 68.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.033, 68.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.238, 68.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 68.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.502, 68.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.272, 68.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.207, 68.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.527, 68.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.366, 68.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.085, 68.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.198, 68.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.355, 68.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.306, 68.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.204, 68.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.363, 68.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 68.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.463, 68.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.37, 68.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.705, 68.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.304, 68.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.336, 68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.634, 68.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.18, 68.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.287, 68.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.19, 68.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.42, 68.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.458, 68.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.361, 68.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.748, 68.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 68.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.388, 68.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.47, 68.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.383, 68.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.388, 68.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.475, 68.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 68.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.638, 68.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 68.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.419, 68.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 68.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 68.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.44, 68.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.408, 68.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 68.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.505, 68.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.474, 68.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.375, 68.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.273, 68.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 68.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.386, 68.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.411, 68.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 68.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 68.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.377, 68.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 68.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.246, 68.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.085, 68.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 68.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.724, 68.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.303, 68.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 68.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.037, 68.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.247, 68.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.147, 68.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.145, 68.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.261, 68.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.233, 68.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.29, 68.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.341, 68.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.312, 68.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.023, 68.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.461, 68.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.865, 68.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.229, 68.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.306, 68.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.299, 68.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.371, 68.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.638, 68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.445, 68.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.423, 68.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.405, 68.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.393, 68.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.273, 68.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.368, 68.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 68.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 68.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 68.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.157, 68.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 68.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 68.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.223, 68.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 68.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.381, 68.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.304, 68.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.325, 67.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.364, 67.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.382, 67.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 68.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.431, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 67.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 68.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.404, 67.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 67.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.003, 68.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 67.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.291, 67.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.227, 67.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 67.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.304, 67.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.568, 67.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.992, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.232, 67.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.704, 67.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.819, 67.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 67.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 67.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.281, 67.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.189, 67.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 67.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.039, 67.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 67.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.193, 66.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 66.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.137, 66.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.063, 66.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.35, 66.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.719, 66.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.635, 67.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -16.478, 55.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 67.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.034, 66.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.358, 66.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.181, 66.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.235, 66.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.264, 66.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.431, 66.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.274, 66.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.555, 66.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.267, 66.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.323, 65.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 66.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.492, 66.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.778, 66.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.511, 66.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.551, 66.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.514, 66.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.378, 66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.628, 66.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.889, 66.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 66.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 66.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.167, 66.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 66.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.507, 66.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.73, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.634, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.569, 65.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.806, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.956, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.689, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.711, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.646, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.857, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.765, 66.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.918, 66.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.094, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -36.78, 74.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.727, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.629, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.051, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.406, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.734, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.819, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.529, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.392, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.567, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.408, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.77, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.797, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.591, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.921, 65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.033, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.991, 65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.183, 66.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.149, 65.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.159, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.456, 65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.244, 65.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.319, 65.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.735, 65.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.036, 65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.613, 65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.625, 65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.471, 62.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 65.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 65.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 65.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.163, 65.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.222, 64.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 64.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.298, 64.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.552, 64.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 65.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 65.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.785, 65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.284, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.022, 64.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.529, 64.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.315, 64.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.547, 64.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.469, 64.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.731, 64.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.095, 64.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.2, 63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.315, 64.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.323, 64.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.216, 63.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.191, 63.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.812, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.975, 64.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.373, 64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.125, 61.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.485, 64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.144, 64.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.383, 64.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.325, 64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.238, 64.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.561, 63.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.207, 63.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.588, 63.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.627, 63.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.43, 63.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.496, 63.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.564, 63.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.578, 63.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.712, 63.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.677, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.759, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.754, 63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.751, 63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.456, 63.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.646, 63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.226, 62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.983, 62.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.033, 62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.143, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.86, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.834, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.276, 62.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.187, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.191, 62.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.226, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.14, 62.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.276, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.268, 62.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.237, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.542, 62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.303, 62.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.252, 62.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.183, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.343, 62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.401, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.206, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.338, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.123, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.163, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.263, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.201, 62.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.127, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.126, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.12, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.213, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.675, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.627, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.611, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.72, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.653, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.355, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.059, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.738, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.447, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.501, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.714, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.945, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.641, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.837, 62.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.835, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.444, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.532, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.652, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.382, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.296, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.481, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.034, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.344, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.268, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.035, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.292, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.447, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.231, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.371, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.673, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.478, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.596, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.763, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.32, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.489, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.753, 62.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.599, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.58, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.457, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.413, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.1, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.387, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.372, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.598, 62.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.348, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.476, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.342, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.094, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.247, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.612, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.642, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.224, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.275, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.239, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.771, 69.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.025, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.293, 69.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.011, 68.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 68.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.798, 68.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.277, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.838, 69.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.869, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.383, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.174, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.286, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.225, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.198, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.277, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.084, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.05, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.094, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -158.389, 83.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.743, 68.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.681, 68.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 69.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.485, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.516, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.001, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.41, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.572, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.81, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 69.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.399, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.385, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 69.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.096, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 69.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.356, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.257, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 68.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.226, 68.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.987, 68.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 69.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.244, 68.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.249, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.289, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.121, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.452, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.757, 69.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.909, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.712, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.912, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.67, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.449, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.188, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.421, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 69.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.799, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.627, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 69.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.576, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.566, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.226, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.223, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.393, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.503, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.401, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.408, 69.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.397, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.448, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.371, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.5, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.675, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.649, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.143, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 71.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.784, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 71.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.976, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.945, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.792, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.015, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 72.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 72.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.994, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.066, 72.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.015, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.062, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.473, 72.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.078, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.667, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 71.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 71.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 71.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.466, 71.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 71.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 71.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.075, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.084, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.119, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.591, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.134, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.046, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 71.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 71.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.187, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.162, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.131, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.156, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.128, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.259, 72.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.944, 72.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.964, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.991, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.062, 72.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.495, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 71.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.248, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.247, 71.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.283, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.156, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.222, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.139, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.182, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.209, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.174, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.109, 71.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.149, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.943, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 72.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 72.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.169, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.167, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.223, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.172, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.295, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.162, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.232, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.967, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 72.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.373, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.274, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.213, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.434, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.295, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.352, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.408, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.379, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 71.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.469, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.578, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 71.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 71.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.227, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.23, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.197, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.313, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.356, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.396, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.284, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.259, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.308, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.861, 72.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.223, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 71.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.209, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 72.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.155, 71.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.109, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.096, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 71.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.715, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.683, 72.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.664, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 72.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.754, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.814, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.843, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.744, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.711, 72.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.542, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.693, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 72.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.61, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.769, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.179, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.766, 72.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.758, 72.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.889, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 72.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 72.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 72.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 72.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.245, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.269, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.356, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 72.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.606, 72.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.814, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.718, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.739, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.798, 72.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61, 72.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.608, 72.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.626, 72.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 72.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.501, 71.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.606, 71.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.381, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.664, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.592, 70.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.52, 70.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.207, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.854, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.711, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.097, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.182, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.173, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.153, 70.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.182, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.051, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.649, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.786, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.594, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.317, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.56, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.492, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.5, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.511, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.093, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.29, 69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.175, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.888, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.395, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.554, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.538, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.438, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.547, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.747, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.156, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.199, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.127, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.988, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.466, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.467, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.985, 70.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.512, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.883, 70.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.855, 70.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.096, 70.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.045, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.819, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.208, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.339, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.308, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.811, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.389, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.279, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.099, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.304, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.291, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.309, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.422, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.514, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.22, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.469, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.587, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.569, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.696, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.272, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.646, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -32.082, 80.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.367, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.228, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.814, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.732, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.709, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 69.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.992, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.854, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.659, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.902, 68.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.916, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.865, 69.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.874, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.671, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.573, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.133, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.667, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.193, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.989, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.699, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.652, 68.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.912, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.959, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.931, 69.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.419, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.801, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.952, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.007, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.961, 68.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 69.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.867, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 69.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.854, 69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 69.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 69.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.102, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 69.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.976, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.074, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.796, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.001, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.987, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.889, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.06, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.911, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.965, 69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.569, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.869, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.986, 69.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.477, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.555, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.844, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.834, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.864, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.824, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.015, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.979, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.491, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.932, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.212, 69.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.998, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.327, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.041, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.875, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.432, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 69.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.062, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.912, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.844, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.677, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.259, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.548, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.929, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.716, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.478, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.235, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.11, 70.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.941, 70.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.926, 70.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.716, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.713, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.536, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.542, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.483, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.512, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.365, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.349, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.228, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.965, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.324, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.306, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.019, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.825, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.495, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.197, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.059, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.087, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.031, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.744, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.782, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.895, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.823, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.838, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.689, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.719, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.394, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.675, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.37, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.222, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.092, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.059, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.88, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.922, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.918, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.054, 68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.919, 68.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.876, 68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 68.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 68.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.774, 68.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 68.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 68.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 68.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.499, 68.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.378, 68.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 68.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.309, 68.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.736, 68.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.857, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.969, 68.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.936, 68.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.017, 68.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 68.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.896, 68.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.306, 67.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.076, 68.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.052, 68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.849, 68.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.145, 68.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.049, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 68.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.386, 68.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.236, 68.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.454, 68.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 68.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 68.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.681, 68.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.698, 68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 68.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 68.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.446, 68.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.502, 67.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.414, 68.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.49, 68.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.362, 68.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.417, 67.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 68.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 68.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.408, 68.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.145, 68.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.627, 68.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.912, 67.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.645, 67.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.53, 67.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.455, 68.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.453, 68.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.562, 68.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.832, 68.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.175, 68.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.509, 68.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 67.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.521, 67.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.256, 67.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 67.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.599, 67.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.543, 67.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 67.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.557, 67.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 67.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.401, 67.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 67.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.747, 67.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.571, 67.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.251, 66.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 67.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.619, 66.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 67.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.321, 67.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.302, 67.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.362, 67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.324, 67.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.275, 67.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.268, 67.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.221, 67.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 67.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.27, 67.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.294, 67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.445, 67.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 66.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 66.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.666, 66.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.658, 66.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.62, 66.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.32, 66.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.45, 66.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.114, 66.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.331, 66.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.36, 66.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.566, 66.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 67.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 67.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.094, 67.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.566, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 67.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.787, 67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.688, 67.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.794, 67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.728, 67.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.756, 67.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.642, 67.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.714, 67.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 67.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.86, 67.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 67.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 66.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.278, 66.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 66.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.282, 66.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.4, 66.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.485, 66.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.867, 66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.196, 66.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.273, 66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.774, 66.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.757, 66.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.744, 66.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.904, 66.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.81, 66.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.809, 66.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.747, 66.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.912, 66.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.901, 66.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.775, 66.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.026, 66.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.979, 66.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.928, 66.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.825, 66.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.854, 66.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.861, 66.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.84, 66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.044, 66.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.851, 66.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.117, 66.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.095, 66.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.716, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.61, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.986, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.667, 66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.967, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.756, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.246, 66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.781, 66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.046, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 65.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.365, 65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.754, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.7, 65.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.592, 65.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.531, 65.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.51, 65.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.322, 64.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.288, 64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.45, 64.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.292, 63.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.489, 64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.312, 64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.485, 64.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.4, 64.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.472, 64.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.508, 64.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.32, 64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.258, 64.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.112, 64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.185, 64.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.245, 65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.215, 64.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.456, 64.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.706, 64.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.338, 64.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.222, 64.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.122, 64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.088, 63.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.816, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.766, 63.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.954, 63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.682, 63.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.759, 63.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.937, 63.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.743, 63.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.563, 64.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.117, 63.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.185, 63.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.23, 63.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.677, 64.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.067, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.069, 63.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.004, 63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.876, 64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.027, 63.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.151, 63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.15, 63.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.028, 63.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.025, 63.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.097, 63.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.101, 63.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.085, 63.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.82, 63.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.759, 63.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.238, 63.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.518, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.367, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.719, 63.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.527, 63.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.443, 63.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.192, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.177, 63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.088, 63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.252, 63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.173, 63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.329, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.231, 63.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.331, 63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.108, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.545, 63.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.537, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.592, 63.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.476, 63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.181, 63.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.453, 63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.826, 63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.366, 63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.268, 63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.159, 63.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.115, 63.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.08, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.672, 63.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.579, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.506, 63.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.739, 63.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.51, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.007, 63.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.696, 63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.728, 63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.63, 63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.892, 63.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.25, 63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.382, 63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.014, 63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.887, 63.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.154, 63.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.158, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.078, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.798, 63.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.784, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.797, 63.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.831, 63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.283, 63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.52, 63.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.174, 63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.253, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.664, 63.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.26, 63.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.949, 63.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.008, 63.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.168, 64.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.155, 64.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.354, 64.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.981, 63.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.275, 63.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.803, 63.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.693, 63.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.968, 63.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.803, 63.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.01, 63.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.581, 63.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.048, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.146, 62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.073, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.619, 62.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.36, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.397, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.448, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.448, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.486, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.491, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.392, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.408, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.291, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.272, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.247, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.241, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.066, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.331, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.357, 62.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.315, 62.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.707, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.716, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.106, 62.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.903, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.774, 62.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.006, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.766, 62.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.69, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.744, 62.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.097, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.939, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.322, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.974, 62.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.789, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.547, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.568, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.89, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.485, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.434, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 69.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.408, 69.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.357, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.331, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.298, 69.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.303, 69.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.306, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.426, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.366, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.357, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.31, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.344, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.293, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.238, 69.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.299, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.235, 69.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.176, 69.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.091, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.085, 69.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.014, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.046, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.948, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 69.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.08, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.986, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.048, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.004, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.893, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.532, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.805, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.067, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.348, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.427, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.326, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.745, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.167, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.34, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.122, 69.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.375, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 69.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.345, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.417, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.083, 69.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.034, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.025, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.962, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.705, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.421, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.198, 69.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.204, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.357, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.378, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.391, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.291, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.299, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.371, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.137, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.214, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.125, 69.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.979, 69.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.967, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.918, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.482, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.962, 69.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.745, 68.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.767, 68.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.561, 68.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.703, 68.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.54, 68.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.473, 68.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.479, 68.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.319, 68.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 68.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.94, 68.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.978, 68.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.936, 68.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.109, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.052, 67.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.981, 67.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.459, 67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.357, 67.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.279, 67.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.539, 67.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 67.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.451, 67.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.628, 67.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.237, 67.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.474, 67.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 67.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.594, 67.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.521, 67.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.77, 67.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.113, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.987, 67.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.834, 67.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 67.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 67.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 67.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.158, 67.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.203, 67.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.171, 67.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.233, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 67.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 67.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.425, 67.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.617, 68.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.717, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.92, 68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.919, 68.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.87, 68.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.679, 68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.508, 68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.514, 67.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 68.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 68.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.026, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.822, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.182, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.853, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.922, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.183, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.25, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.958, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.915, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.97, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.704, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.779, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.824, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.652, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.083, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.306, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.957, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.49, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.439, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.464, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.305, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.409, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.473, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.717, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.696, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.758, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.919, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.929, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.069, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.345, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.462, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.565, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.484, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.67, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.799, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.773, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.992, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.146, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.513, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.776, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.407, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.686, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 71.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 71.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.859, 71.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.053, 71.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 71.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 71.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 71.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 71.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.256, 71.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.336, 70.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.726, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.965, 71.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.008, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 71.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.126, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 71.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17, 71.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 71.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 71.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 71.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 71.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.098, 72.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.136, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.123, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.098, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 72.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.356, 72.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.314, 72.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.378, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 72.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72, 72.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.134, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.789, 72.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 72.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 72.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.475, 72.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.306, 72.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 72.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 72.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 72.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 72.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 72.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 72.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.731, 72.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.137, 72.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.503, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.887, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 72.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 72.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 72.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 72.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 72.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 72.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.117, 72.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 72.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.576, 72.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 72.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.155, 72.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 72.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.527, 72.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.486, 72.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 72.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 72.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.66, 72.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.455, 72.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.887, 72.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.868, 72.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.683, 72.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.736, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.08, 72.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.739, 72.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 72.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 72.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.781, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.511, 72.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.784, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.697, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.747, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.747, 72.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.124, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.961, 72.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.866, 72.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.743, 72.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 72.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.891, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.753, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.809, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.894, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.64, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.815, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.459, 72.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 72.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.37, 72.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 72.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 72.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.581, 72.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.503, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.476, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.802, 72.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.059, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 72.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 72.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 72.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 72.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.925, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.54, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 72.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.439, 72.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 72.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 72.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.063, 72.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 72.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 72.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.808, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.872, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 72.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 72.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.946, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.945, 72.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.867, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 72.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.779, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 72.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.177, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.762, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.912, 71.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.557, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.732, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 71.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.315, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.804, 71.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.86, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.802, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 71.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.465, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.488, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.93, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.197, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.788, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 71.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 71.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 71.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.516, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.284, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 71.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.917, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 72.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.263, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 72.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.239, 72.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.278, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 72.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.902, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.431, 72.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 72.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 72.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 72.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.747, 72.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 72.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.392, 72.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.498, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.606, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.982, 72.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 72.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.182, 72.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.254, 72.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 72.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 72.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.797, 72.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 72.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 72.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 72.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 72.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 72.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.926, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.584, 72.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.835, 72.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 72.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.562, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 72.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.228, 72.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.829, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.167, 72.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.248, 72.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.482, 72.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 72.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 72.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.222, 72.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 72.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 72.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 72.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.156, 72.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.739, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.912, 72.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.345, 72.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 72.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 72.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.335, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 72.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.378, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 72.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.739, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.625, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.155, 71.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.65, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.364, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.502, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.097, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.777, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.792, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.745, 71.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.469, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.795, 71.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.714, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.885, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 71.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.632, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.207, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 72.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.693, 72.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.923, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.932, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 72.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.901, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.888, 71.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.716, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 71.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 71.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 71.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.738, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 71.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.904, 71.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.053, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.849, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.624, 72.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.536, 71.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.684, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.131, 71.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.784, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 71.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.664, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 71.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.784, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.043, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.323, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 71.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.028, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.662, 71.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 71.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.841, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 71.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.575, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.636, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.641, 71.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.702, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.316, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.934, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 71.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 71.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 71.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 71.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 71.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 71.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.128, 71.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 71.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 71.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 71.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 71.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.134, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.862, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 70.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 70.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.649, 70.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 70.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.604, 70.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.587, 70.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 70.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.765, 70.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.467, 70.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.249, 70.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.432, 70.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.553, 70.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 70.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.227, 70.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.259, 70.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.156, 70.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 70.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.992, 70.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.723, 70.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 70.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 70.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.306, 70.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.847, 70.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 70.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.952, 70.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.782, 70.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.785, 70.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.485, 70.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.451, 70.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.435, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.163, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.119, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.133, 70.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.175, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.99, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.891, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.836, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.942, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.745, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.706, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.672, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.433, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.131, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.245, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.474, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.104, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.149, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.851, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.898, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.74, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.706, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.59, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.407, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.717, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.396, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.508, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.291, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.286, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.434, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.287, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.457, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.888, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.384, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.209, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.167, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.093, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.969, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.469, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.055, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.016, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.259, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.905, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.494, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.205, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.622, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.666, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.836, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.954, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.967, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.872, 69.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.744, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.738, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.858, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.318, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.407, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.846, 70.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.965, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.359, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.502, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.658, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.133, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.909, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.875, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.345, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.348, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.326, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.47, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.222, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.302, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.929, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.718, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.767, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42, 68.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.654, 69.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.011, 68.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.301, 68.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.082, 68.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.272, 68.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.096, 68.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.467, 68.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.518, 68.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.622, 68.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.631, 68.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.862, 68.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.968, 68.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.211, 68.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.093, 68.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.235, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.519, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.886, 69.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.054, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.793, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.323, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.359, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.387, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.533, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.886, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.96, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.074, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.343, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.094, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.093, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.095, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 69.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.969, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.113, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.218, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.139, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.188, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.217, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.193, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 70.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.426, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.37, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 70.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.432, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.148, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.249, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.273, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 70.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.248, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 70.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.301, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.222, 70.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 70.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.225, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.135, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 70.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.241, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.395, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.395, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.295, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.002, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.959, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.949, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.986, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.191, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.271, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.744, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.715, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.604, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.987, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 70.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.846, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.838, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.139, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.159, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.931, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.889, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.196, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.235, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.191, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.355, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.349, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.001, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 69.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.822, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.067, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.952, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.705, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.138, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.867, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.047, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.916, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.809, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.774, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.978, 69.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.682, 69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.664, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 69.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.888, 69.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.726, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.213, 68.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.843, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.633, 69.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.952, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.834, 69.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.828, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 69.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81, 69.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 69.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.715, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.894, 69.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.82, 69.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.328, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.402, 68.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 69.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.555, 69.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.113, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.99, 69.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.661, 68.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.036, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.926, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.977, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.059, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.987, 68.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.021, 69.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.709, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.827, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 69.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.891, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.333, 69.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.437, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.453, 75.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 69.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 69.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.992, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.949, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.783, 69.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.605, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.54, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.481, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.567, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.525, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.305, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.434, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.148, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.271, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.242, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.617, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.287, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.729, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.737, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.852, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.982, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.994, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.832, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.775, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.832, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.186, 69.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.809, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.712, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.822, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.735, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.973, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.775, 69.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.809, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.75, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.759, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.421, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.527, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.763, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.134, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.689, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.658, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.835, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.819, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.041, 69.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.926, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1, 69.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.802, 69.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.954, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.874, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.233, 69.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.866, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.043, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.206, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.346, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.482, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.738, 72.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.819, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.152, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.827, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.782, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.112, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.108, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.705, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.899, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.81, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.783, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.807, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.886, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.776, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.827, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 70.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.73, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.983, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.478, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.626, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.804, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.445, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.961, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.372, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.451, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.531, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.437, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.602, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.519, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.422, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.473, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.442, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.818, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.489, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.451, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.386, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.403, 70.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.236, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.286, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.205, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -40.185, 79.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.161, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.058, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.998, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.014, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.409, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.63, 70.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.507, 70.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.617, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.86, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.137, 70.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 70.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.992, 70.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 70.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 70.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.587, 70.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.63, 70.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.119, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 70.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.664, 69.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 70.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.369, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.362, 70.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 70.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 70.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.448, 70.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 70.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 70.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.273, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 70.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.278, 70.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.316, 70.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 70.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.859, 70.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.79, 70.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 70.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.672, 70.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 70.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 70.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.731, 70.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 70.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 70.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.063, 70.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.754, 70.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.959, 70.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 70.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 70.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 70.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 70.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.91, 70.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 70.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 70.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 70.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.054, 70.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 70.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 70.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.087, 70.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 70.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 70.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 70.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 70.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.087, 70.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 70.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 70.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 70.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 71.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95, 70.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 70.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 70.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 71.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.629, 71.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.545, 71.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 71.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 71.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 71.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 71.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.183, 71.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 71.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 71.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 71.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.131, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.188, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.456, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.369, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.475, 71.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.601, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.601, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.56, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.663, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.602, 71.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.654, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.494, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.559, 71.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 71.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 71.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.437, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.673, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.57, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 71.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.763, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 71.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 71.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 71.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.742, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.973, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.978, 71.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.159, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.963, 71.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.551, 71.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 71.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.341, 71.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 71.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 71.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.029, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.093, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.117, 71.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.112, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 71.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 71.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 71.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.332, 71.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 71.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 71.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.543, 71.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.673, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.352, 71.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.135, 71.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.126, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.188, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.034, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.13, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.089, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.012, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.031, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.035, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.953, 72.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.009, 72.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94, 72.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.759, 72.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.767, 72.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.731, 72.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.585, 72.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.556, 72.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.599, 72.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.482, 72.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36, 72.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.349, 73.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.341, 73.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.333, 73.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.608, 73.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.987, 72.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.637, 73.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.613, 73.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.022, 73.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.019, 73.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.154, 73.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.835, 73.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.132, 73.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.457, 73.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.751, 73.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.093, 73.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.038, 73.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.865, 73.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.65, 73.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.754, 73.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.334, 73.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.653, 73.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.808, 73.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.488, 73.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.485, 73.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.108, 73.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.128, 73.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.955, 73.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.185, 73.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.789, 73.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.506, 73.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.488, 73.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.059, 73.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.997, 73.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.468, 73.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.283, 73.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.212, 73.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.887, 73.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.689, 73.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.438, 73.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.22, 73.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.358, 73.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.329, 73.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.217, 73.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.152, 73.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.144, 73.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.932, 73.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.902, 73.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.601, 72.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.509, 72.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.548, 72.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.578, 72.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.427, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.807, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.715, 71.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.229, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.275, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.068, 71.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.473, 71.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.31, 71.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.816, 71.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.923, 70.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.023, 70.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.923, 70.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.873, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.74, 70.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.746, 70.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.631, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.606, 70.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.556, 70.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.536, 70.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.395, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.229, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.028, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.122, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.045, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.011, 68.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.51, 68.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.64, 68.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.426, 68.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.062, 67.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.011, 67.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.128, 68.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.13, 67.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.984, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.745, 68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.254, 67.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.176, 67.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.057, 67.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.922, 68.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.064, 67.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.014, 67.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.004, 68.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.495, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.081, 68.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.154, 68.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.301, 67.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.23, 67.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.385, 67.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.59, 67.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.222, 67.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.387, 67.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.385, 67.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.298, 67.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.571, 67.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.431, 67.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.382, 67.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.019, 68.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.138, 68.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.02, 68.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.211, 68.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.22, 67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.407, 67.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.394, 67.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.243, 67.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.581, 67.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.429, 67.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.121, 68.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.376, 67.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.546, 67.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.314, 67.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.117, 67.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.059, 67.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.195, 68.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.201, 67.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.806, 67.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.175, 67.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.844, 68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.257, 67.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.23, 67.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.25, 67.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.304, 67.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.296, 67.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.22, 67.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.315, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.497, 67.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.409, 67.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.357, 67.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.386, 67.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.172, 68.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.275, 67.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.296, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.338, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.282, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.165, 67.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.131, 67.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.09, 67.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.121, 67.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.973, 67.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.639, 66.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.235, 66.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.213, 66.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.326, 66.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.914, 66.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.39, 66.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.654, 64.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.74, 64.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.88, 64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.931, 64.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.944, 64.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.862, 64.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.923, 64.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.925, 64.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.842, 64.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.817, 64.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.804, 64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.232, 64.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.179, 64.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.161, 64.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.979, 63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.019, 63.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.495, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.967, 63.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.938, 63.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.967, 63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.909, 63.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.128, 63.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.436, 63.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.742, 63.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.434, 63.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.274, 63.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.17, 63.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.09, 64.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.178, 64.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.205, 64.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.094, 64.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.934, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.189, 64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.06, 64.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.966, 64.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -59.704, 63.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.362, 64.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.321, 64.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.396, 64.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.332, 64.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.316, 64.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.531, 63.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.587, 63.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.885, 63.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.961, 63.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.324, 63.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.545, 63.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.543, 63.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.405, 63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.753, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 63.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.556, 63.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.8, 63.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.901, 63.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.713, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.814, 63.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.785, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.73, 63.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.682, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.719, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.732, 63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.503, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.448, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.4, 62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.368, 62.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.351, 62.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.275, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.355, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.196, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.278, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.245, 62.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.014, 62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.01, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.2, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.316, 62.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.245, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.176, 62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.277, 62.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.336, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.765, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.689, 63.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.722, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.752, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.672, 63.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.069, 62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.136, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.039, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.154, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.19, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.425, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.683, 62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.7, 62.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.704, 62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.101, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.104, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.768, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.852, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.827, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.419, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.791, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.869, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.753, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.791, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.795, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.714, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.78, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.743, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.798, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.243, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.823, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.119, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.029, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.098, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.123, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.485, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.499, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.489, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.542, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.549, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.449, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.536, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.531, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.481, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.071, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.763, 62.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.774, 62.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.638, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.456, 62.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.552, 62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.891, 62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.615, 62.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.59, 62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.612, 62.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.581, 62.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.607, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.122, 62.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.432, 62.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.82, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.697, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.732, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.571, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.782, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.515, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.49, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.168, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.449, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.85, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.527, 62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.662, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.727, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.351, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.378, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.24, 62.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.177, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.943, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.037, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.84, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.929, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.411, 62.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.96, 62.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.833, 62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.731, 62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.377, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.839, 62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.857, 62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.38, 62.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.43, 63.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.374, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.201, 62.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.025, 62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.96, 62.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.776, 62.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.311, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.277, 62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.912, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.274, 62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.476, 62.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.268, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.829, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.811, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.744, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.876, 62.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.815, 62.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.022, 62.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.3, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.573, 69.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -157.861, 84.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.508, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.884, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.814, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 69.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.009, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.945, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.981, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.186, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.32, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.311, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.37, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.401, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.405, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.779, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.201, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.901, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.945, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.786, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.034, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.18, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.3, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.895, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.476, 69.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.784, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.299, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.795, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.053, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.043, 70.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.311, 70.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.494, 70.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 70.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.757, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.242, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 71.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.401, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.431, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 71.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.613, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.679, 71.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 72.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 72.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.526, 72.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.725, 72.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 72.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 72.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 72.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 72.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.47, 72.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 72.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 72.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 72.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 72.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 72.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 72.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 72.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 72.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.777, 72.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.277, 73.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.157, 72.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.895, 72.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 72.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.627, 72.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.418, 72.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.28, 72.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.765, 72.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.82, 72.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 72.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.949, 72.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 72.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.245, 72.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.047, 72.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 72.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 72.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 72.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 72.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 72.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 72.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.141, 72.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.931, 72.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.174, 69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.164, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.039, 68.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.047, 68.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.024, 68.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 68.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.095, 68.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.093, 68.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 68.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 68.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.072, 68.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 68.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 68.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.116, 68.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 68.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.129, 68.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 68.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.143, 68.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 68.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 68.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.394, 68.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 68.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.904, 68.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.233, 68.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 68.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 68.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 68.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.266, 68.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 68.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 68.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 68.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 68.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.046, 68.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 68.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.113, 68.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.469, 68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.316, 68.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.494, 68.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.074, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.489, 67.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.566, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 67.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 68.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.693, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.657, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 67.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.702, 67.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 67.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 67.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.764, 67.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.602, 67.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 68.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.844, 67.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 67.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.729, 67.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.958, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.275, 68.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.295, 68.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.688, 68.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.596, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.786, 67.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.608, 67.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 67.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 67.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.977, 68.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 68.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.732, 68.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.821, 67.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.76, 67.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.862, 67.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.775, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.006, 67.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.778, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 68.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.014, 68.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.896, 67.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.952, 67.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 67.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 67.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.158, 67.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.011, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.154, 67.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.93, 67.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.947, 67.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 67.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 67.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.958, 67.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.098, 67.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.942, 67.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.018, 67.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 68.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.992, 67.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 67.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.135, 67.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.745, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.984, 67.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 67.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.454, 67.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.4, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.342, 67.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 67.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.987, 67.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 67.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -36.752, 75.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.708, 68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.304, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.186, 67.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 67.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 67.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.217, 67.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 67.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.043, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.146, 67.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.104, 67.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 67.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 67.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 67.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.008, 67.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 67.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.165, 67.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.919, 67.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 67.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 67.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.922, 67.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.33, 67.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.783, 67.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.853, 67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 67.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.611, 67.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.856, 67.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.965, 67.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.923, 67.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.977, 67.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.985, 67.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 67.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.917, 67.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.853, 67.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.851, 67.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 67.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.285, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.86, 67.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.005, 67.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.974, 67.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 67.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 67.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.93, 67.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 67.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.849, 67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.587, 67.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.504, 67.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.311, 67.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.312, 67.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.851, 67.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.545, 67.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.117, 67.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.442, 67.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.768, 66.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.894, 67.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.478, 67.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.438, 67.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.592, 67.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.59, 67.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 67.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.478, 67.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 67.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.488, 67.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.34, 67.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 67.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 67.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 67.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.572, 67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.651, 67.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.472, 67.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.568, 67.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.62, 67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.647, 67.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.598, 67.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.595, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 67.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.511, 67.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.43, 67.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 67.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 67.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.185, 67.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.534, 67.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.743, 67.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 67.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.368, 67.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.402, 67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 67.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.485, 67.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.628, 67.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.373, 67.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.366, 67.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 67.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.627, 67.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.95, 67.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.378, 67.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.402, 67.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.54, 67.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.645, 67.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.514, 67.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.615, 67.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.407, 67.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 67.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.504, 67.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.503, 67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.313, 67.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 67.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.386, 67.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 67.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.516, 67.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.504, 67.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.431, 67.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.665, 67.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 67.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.75, 67.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.641, 67.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.743, 67.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 67.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.611, 67.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.627, 67.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.638, 67.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.634, 67.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.564, 67.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.581, 67.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.199, 67.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.408, 67.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.296, 67.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.492, 67.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.789, 67.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.685, 67.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.421, 67.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.604, 67.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.536, 67.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.63, 67.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.498, 67.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.816, 67.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.379, 67.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 67.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 67.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.649, 67.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.694, 67.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 67.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.691, 67.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.831, 67.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.031, 67.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.702, 67.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.426, 67.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.489, 67.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 67.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.093, 67.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.087, 67.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.362, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.191, 67.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.699, 67.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.298, 67.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.627, 67.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 67.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.655, 67.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.798, 67.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.258, 67.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.714, 67.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.556, 67.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.5, 67.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.58, 67.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.526, 67.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.525, 67.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.593, 67.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.644, 67.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.664, 67.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.781, 67.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.617, 66.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.643, 67.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.273, 67.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.284, 67.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.548, 66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.374, 66.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.56, 66.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.909, 66.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.715, 66.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.518, 66.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 66.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.446, 66.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.209, 66.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.792, 66.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.778, 66.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 66.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.436, 66.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.565, 66.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.636, 66.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.612, 66.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.724, 66.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.715, 66.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.718, 66.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 67.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.887, 66.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.058, 67.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.008, 67.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.449, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.285, 67.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.204, 67.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.587, 66.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.515, 67.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.391, 67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.577, 67.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.75, 67.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.576, 67.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.672, 67.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.99, 67.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.721, 67.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.592, 67.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.631, 67.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.706, 67.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.988, 66.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.689, 67.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.766, 67.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.558, 66.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.831, 67.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.782, 67.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.719, 67.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.619, 67.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.761, 67.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.629, 67.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.563, 67.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.585, 67.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.557, 67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.594, 67.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.574, 67.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.623, 67.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 67.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.932, 67.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.532, 66.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.638, 67.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.555, 67.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.614, 67.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 67.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.65, 67.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.585, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.576, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.417, 67.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.632, 67.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.617, 67.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.684, 67.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.597, 67.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.573, 67.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.972, 67.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.565, 67.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.535, 67.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.646, 67.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.509, 67.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.572, 67.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.192, 67.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.158, 67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.61, 67.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.845, 66.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.748, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.851, 67.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 66.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.885, 67.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.495, 67.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.299, 67.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.568, 67.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.727, 67.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.019, 67.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.868, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.606, 67.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.436, 67.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.815, 67.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.18, 67.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.353, 67.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.399, 66.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.545, 67.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.62, 67.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.126, 67.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.07, 67.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.268, 67.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.242, 66.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 66.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.792, 66.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.978, 68.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.629, 67.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.942, 66.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.127, 67.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 66.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 67.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.223, 66.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.894, 66.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.306, 66.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.757, 66.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.437, 67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.326, 67.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.385, 67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.411, 67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.419, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.088, 67.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.464, 67.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.409, 67.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.35, 67.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 67.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.334, 67.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.532, 67.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.269, 67.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.716, 67.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.192, 67.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.349, 67.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 67.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.451, 67.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.526, 67.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.527, 67.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.392, 67.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.359, 67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.979, 67.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.407, 67.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.418, 67.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.426, 67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.381, 67.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.355, 67.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.332, 67.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.213, 67.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.347, 67.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.725, 67.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.331, 67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.37, 67.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.286, 67.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.298, 67.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.149, 67.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.369, 67.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.393, 67.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.449, 67.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.394, 67.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.245, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.705, 67.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.483, 67.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.522, 67.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.528, 67.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.507, 67.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.44, 67.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.691, 67.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.424, 67.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.726, 67.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.079, 67.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.988, 67.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.741, 67.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.844, 67.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.682, 67.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.626, 67.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.585, 67.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.705, 67.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.055, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.853, 67.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.651, 67.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.75, 67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.654, 67.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.684, 67.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.79, 67.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.581, 67.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.496, 67.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.617, 67.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.617, 67.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.647, 67.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.607, 67.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.589, 67.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.668, 67.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.575, 67.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.867, 67.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.657, 67.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.782, 67.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.686, 67.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.342, 67.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.705, 67.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.63, 67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.57, 67.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.603, 67.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.635, 67.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.603, 67.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 67.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.605, 67.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.586, 67.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.405, 67.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.722, 67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 67.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -30.343, 66.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.685, 67.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.773, 67.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.53, 67.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.971, 67.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 67.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.535, 67.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.125, 67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.034, 67.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.241, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.094, 67.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.969, 67.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.07, 67.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.162, 67.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.118, 67.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.032, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 67.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.116, 67.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 67.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.515, 67.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.331, 67.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.165, 67.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.551, 67.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.349, 67.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.209, 67.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.115, 67.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.043, 67.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.118, 67.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 67.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.273, 67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 67.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.22, 67.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.173, 67.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.077, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.076, 67.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.07, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.079, 67.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.036, 67.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.089, 67.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.179, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.104, 67.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.137, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.122, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.147, 67.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.984, 67.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.089, 67.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.072, 67.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.976, 67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.103, 67.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.139, 67.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.297, 67.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.21, 67.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.513, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.199, 67.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.187, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.207, 67.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.043, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.049, 67.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.16, 67.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.096, 67.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.23, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 67.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.058, 67.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.996, 67.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.95, 67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.938, 67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.715, 67.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 67.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.873, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.813, 67.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.871, 67.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.178, 67.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.841, 67.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.24, 67.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.09, 67.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.897, 67.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.908, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.552, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.01, 67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.836, 67.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.764, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.801, 67.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.834, 67.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.76, 67.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.676, 67.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.835, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.934, 67.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.717, 67.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.28, 67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.823, 67.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.805, 67.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.837, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.109, 67.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.643, 67.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.565, 67.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.857, 67.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.9, 67.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.847, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.983, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.955, 67.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.911, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.869, 67.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.01, 67.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.948, 67.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.979, 67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.926, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.939, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.911, 67.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.876, 67.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.929, 67.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.861, 67.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.891, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.877, 67.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.789, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.677, 67.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.11, 68.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.814, 67.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.795, 67.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 67.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.821, 67.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.008, 67.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.987, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.004, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.001, 67.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.972, 67.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.04, 67.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.992, 67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.0, 67.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.783, 67.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.042, 67.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.995, 67.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.863, 67.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.938, 67.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.964, 67.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.893, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.952, 67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.794, 67.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.821, 67.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.825, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.875, 67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.758, 67.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.821, 67.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.96, 67.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.945, 67.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 67.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.031, 67.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.044, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.997, 67.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.014, 67.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.051, 67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.919, 67.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.493, 67.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.766, 67.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.888, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.977, 67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.971, 67.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 67.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.177, 67.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.061, 67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.035, 67.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.068, 67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.988, 67.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.958, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.01, 67.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.756, 67.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.809, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.851, 67.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.03, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.848, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 67.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.9, 67.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.869, 67.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.865, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.732, 67.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.92, 67.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.695, 67.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.874, 67.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.852, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.885, 67.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.945, 67.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.775, 67.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.711, 67.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.94, 67.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.943, 67.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.013, 67.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.994, 67.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.965, 67.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.91, 67.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.963, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.02, 67.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.211, 67.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.709, 67.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.417, 67.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.349, 67.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.526, 67.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.554, 67.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.664, 67.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.783, 67.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.292, 67.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 67.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.051, 67.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.691, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.055, 67.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.141, 67.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.039, 67.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.027, 67.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.003, 67.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.984, 67.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.992, 67.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.004, 67.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.107, 67.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.112, 67.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.164, 67.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.157, 67.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.182, 67.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.317, 67.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.156, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.146, 67.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.289, 67.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.147, 67.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.169, 67.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.186, 67.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.202, 67.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.242, 67.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.322, 67.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.321, 67.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 67.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.409, 67.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.426, 67.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.547, 68.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 67.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 67.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.235, 67.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.333, 67.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.335, 67.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.38, 67.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 67.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 67.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.35, 67.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 67.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.424, 67.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 67.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.453, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.996, 68.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.589, 67.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.218, 68.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.479, 67.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.454, 67.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.577, 67.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.483, 68.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.345, 68.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 68.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.168, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 68.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.339, 68.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.408, 68.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.344, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.266, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.276, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.278, 67.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.056, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.347, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 67.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.952, 68.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.358, 68.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.421, 68.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.4, 68.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.399, 68.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.479, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.341, 68.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 68.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.443, 68.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.402, 68.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.409, 68.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.394, 68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.436, 68.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 68.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 68.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 68.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.425, 68.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.51, 68.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.411, 68.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.381, 68.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 68.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.244, 68.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.159, 68.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.205, 68.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.29, 68.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.155, 68.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.073, 68.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.008, 68.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.603, 69.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.299, 69.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.26, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.29, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.43, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.097, 69.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.965, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.953, 69.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.451, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.886, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 69.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.814, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.703, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.73, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.65, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.502, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.515, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.38, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.351, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.171, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.112, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.94, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.973, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.74, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.727, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.912, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.935, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.685, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.264, 69.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.782, 69.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.091, 69.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.072, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 69.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.111, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.952, 68.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.084, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.113, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.12, 69.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.1, 69.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.991, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.078, 69.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.12, 69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.879, 68.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.137, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.911, 68.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.159, 69.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.147, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.189, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.044, 68.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.144, 69.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.105, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.091, 69.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.135, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.076, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.206, 69.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.152, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.08, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.084, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.097, 69.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.118, 69.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.116, 69.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.119, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.123, 69.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.133, 69.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.67, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.079, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.096, 69.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.15, 69.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.135, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.084, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.123, 69.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.118, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.13, 69.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.085, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.915, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.903, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.418, 69.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.108, 69.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.024, 68.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.959, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.989, 69.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.048, 69.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.058, 69.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.145, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.807, 69.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.893, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.135, 68.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.088, 68.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.027, 68.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.019, 69.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.036, 69.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.998, 68.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.002, 68.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.033, 68.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.858, 68.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.96, 68.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.946, 68.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.107, 68.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.914, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.651, 68.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.973, 69.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.038, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.982, 68.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.051, 68.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.055, 69.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.015, 69.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.924, 69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.708, 69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.05, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.683, 69.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.646, 69.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.619, 68.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.73, 68.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.198, 69.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.885, 68.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.824, 68.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.915, 68.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.688, 68.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.342, 68.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.768, 68.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.728, 68.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.276, 68.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.685, 68.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.712, 68.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.653, 68.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.639, 68.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.475, 68.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.683, 68.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.807, 68.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.401, 68.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.967, 68.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.021, 68.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.022, 68.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.007, 68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 68.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.228, 68.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.098, 68.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 68.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.855, 68.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.067, 68.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.795, 58.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.029, 68.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 68.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.258, 68.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.254, 68.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.208, 69.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.105, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.004, 69.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.095, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.965, 69.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.868, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.977, 69.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.09, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.216, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.006, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.991, 69.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.105, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.179, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.984, 69.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.026, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.982, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.038, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.703, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.693, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.258, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.742, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.378, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.505, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.004, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.896, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.061, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.022, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.151, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.731, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.85, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.999, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.786, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.984, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.809, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.725, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.9, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.628, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.275, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.315, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.131, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.325, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.156, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.006, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.797, 69.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.859, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.897, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.007, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 69.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.075, 69.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.991, 69.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.059, 69.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.705, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.318, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.433, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.995, 67.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.668, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 69.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.318, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.377, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.461, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.267, 69.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.225, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.46, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.388, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.527, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.653, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.163, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.054, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.723, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.853, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.29, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.352, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.997, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.325, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.827, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.619, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.565, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.612, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.614, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.656, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.064, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.607, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.294, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.901, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.984, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.306, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.324, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.501, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.188, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.435, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.896, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.81, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.984, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.032, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.908, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.886, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.678, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.735, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.706, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.752, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.843, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.82, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.84, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.797, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.755, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.754, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.361, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.745, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.775, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.727, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.665, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.25, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.211, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.2, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.193, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.682, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.623, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.388, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.416, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.495, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.503, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.509, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.465, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.504, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.569, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.673, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.053, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.414, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.501, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.151, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.424, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.591, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.396, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.513, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.306, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.58, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.572, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.945, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.399, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.495, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.434, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.518, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.238, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.188, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.214, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.633, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.663, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.37, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.223, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.929, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.409, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.085, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.989, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.359, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.912, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.943, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.987, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.132, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.044, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.194, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.97, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.738, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.911, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.573, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.104, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.236, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.259, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.033, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.142, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.804, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.78, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.966, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.209, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.106, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.284, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.315, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.222, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.071, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.244, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.986, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.933, 69.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.968, 69.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.394, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.8, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.618, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.475, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.489, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.555, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.507, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.547, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.545, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.793, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.553, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.891, 69.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.871, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.887, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.85, 69.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.959, 68.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.992, 68.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.982, 68.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.033, 68.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.987, 68.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.902, 68.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.896, 68.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.964, 68.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.171, 68.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.042, 68.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.013, 68.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.953, 68.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.817, 68.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 68.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.731, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.775, 68.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 68.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.178, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.277, 67.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.342, 67.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.415, 67.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.368, 67.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.533, 68.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 67.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 68.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 67.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.51, 67.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.382, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.394, 67.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.34, 67.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.657, 67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.499, 67.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.385, 67.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.244, 67.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.397, 67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.375, 67.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.406, 67.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.4, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 67.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.368, 67.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.315, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.273, 67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.286, 67.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 67.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 67.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.232, 67.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 67.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.326, 67.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 67.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.2, 67.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 67.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.288, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.233, 67.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.305, 67.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 67.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 67.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.264, 67.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.273, 67.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.296, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.303, 67.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.381, 67.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.378, 67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.317, 67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 67.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.32, 67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.236, 67.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 67.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.269, 67.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.321, 67.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.298, 67.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 67.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.093, 67.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.303, 67.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.223, 67.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.437, 67.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.292, 67.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.316, 67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.27, 67.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 67.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.993, 67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 67.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.029, 67.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.062, 67.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.997, 67.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.031, 67.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.618, 67.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.194, 67.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.323, 67.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.272, 67.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.951, 67.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 67.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.516, 67.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.142, 67.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 67.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.996, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 67.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.124, 67.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 67.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.602, 67.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.564, 67.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.917, 67.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 67.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 67.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.04, 67.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.009, 67.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.97, 67.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.564, 67.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.609, 67.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.279, 67.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 67.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.942, 67.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.393, 67.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.871, 67.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.076, 67.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.943, 66.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 66.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 66.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 66.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.964, 66.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.978, 66.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.027, 66.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 65.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.976, 65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.3, 66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.346, 65.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.55, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.826, 65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.76, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.397, 66.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.132, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.601, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.589, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.706, 67.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.961, 65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.382, 64.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.716, 65.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.523, 66.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.259, 66.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.166, 65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.172, 65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.146, 65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.751, 65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.546, 65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.579, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.001, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.108, 65.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.129, 65.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.105, 65.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.045, 65.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.017, 65.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.985, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.987, 65.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.813, 65.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.79, 65.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.605, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.417, 65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.44, 65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.639, 65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.794, 65.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.371, 65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.685, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.844, 65.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.788, 65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.87, 65.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.926, 65.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.157, 65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.874, 65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.82, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.943, 65.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.357, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.649, 66.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.467, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.586, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.49, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.417, 65.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.585, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.665, 66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.815, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.525, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.676, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.596, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.367, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.698, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.455, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.937, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.578, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.677, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.906, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.628, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.224, 65.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.021, 65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.216, 65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.19, 65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.129, 65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.766, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.905, 65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.793, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.68, 65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.857, 65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.802, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.835, 65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.732, 65.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.093, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.022, 65.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.991, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.924, 65.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.853, 65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.96, 65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.953, 65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.956, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.939, 65.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.85, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.816, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.759, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.885, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.764, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.745, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.721, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.656, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.574, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.663, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.628, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.885, 65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.817, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.724, 65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.546, 65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.501, 65.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.415, 65.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.16, 64.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.467, 65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.547, 65.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.467, 64.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.375, 65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.37, 64.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.24, 64.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.588, 64.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.421, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.404, 64.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.155, 64.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.904, 64.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.924, 64.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.549, 64.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.051, 64.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.26, 64.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.263, 64.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.24, 64.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.209, 64.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.256, 64.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.185, 64.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.99, 64.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.194, 64.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.148, 64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.301, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.208, 64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.572, 64.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.431, 64.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.351, 64.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.735, 63.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.668, 63.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.844, 63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.566, 63.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.608, 63.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.617, 63.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.696, 63.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.447, 63.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.398, 63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.295, 63.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.309, 63.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.474, 63.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.28, 63.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.21, 63.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.205, 63.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.144, 63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.785, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.804, 62.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.845, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.628, 62.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.638, 62.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.307, 62.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.46, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.422, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.513, 62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.377, 62.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.264, 62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.348, 62.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.515, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.386, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.581, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.342, 62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.242, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.878, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.092, 62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.231, 63.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.062, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.392, 63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.503, 62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.496, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.467, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.525, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.397, 62.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.417, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.003, 61.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.877, 63.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.674, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.324, 62.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.739, 63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.596, 63.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.142, 62.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.981, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.386, 63.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.639, 63.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.952, 63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.751, 63.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.189, 63.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.612, 63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.599, 63.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.123, 62.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.761, 63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.425, 63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.543, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.973, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.975, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.055, 63.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.478, 63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.187, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.189, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.282, 62.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.662, 63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.768, 63.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.801, 63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.984, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.875, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.893, 63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.881, 63.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.739, 63.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.811, 63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.858, 63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.262, 63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.661, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.864, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.827, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.375, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.685, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.977, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.424, 62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.409, 62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.494, 62.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.996, 62.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.983, 62.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.818, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.648, 62.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.817, 62.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.691, 62.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.52, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.526, 62.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.537, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.343, 62.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.46, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.314, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.05, 62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.483, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.661, 62.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.448, 62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.466, 62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.595, 62.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.598, 62.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.654, 62.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.631, 62.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.047, 61.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.436, 62.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.471, 62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.168, 62.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.552, 61.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.621, 61.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.671, 61.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.502, 61.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.187, 61.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.3, 61.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.692, 61.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.883, 61.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.306, 61.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.656, 61.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.824, 61.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.892, 61.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.094, 62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.326, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.557, 62.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.499, 62.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.555, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.43, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.134, 62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.919, 62.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.54, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.581, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.57, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.579, 62.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.573, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.592, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.564, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.929, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.817, 62.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.841, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.816, 62.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.5, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.928, 62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.974, 62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.84, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.775, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.61, 62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.653, 62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.754, 62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.826, 62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.898, 62.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.687, 62.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.836, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.711, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.07, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.783, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.844, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.871, 62.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.458, 62.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.732, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.385, 62.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.768, 62.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.45, 62.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.795, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.809, 62.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.881, 62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.531, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.98, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.002, 62.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.982, 62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.005, 62.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.059, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.751, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.023, 62.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.804, 62.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.843, 62.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.857, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.59, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.43, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.355, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.584, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.713, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.607, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.881, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.874, 62.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.536, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.497, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.86, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.734, 62.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.709, 62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.726, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.926, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.886, 63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.984, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.408, 63.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.166, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.957, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.052, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.863, 62.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.975, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.889, 62.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.793, 62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.687, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.882, 62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.864, 62.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.998, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.961, 62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.993, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.974, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.899, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.321, 62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.216, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.169, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.537, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.269, 62.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.099, 62.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.626, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.852, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.109, 62.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.055, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.777, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.565, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.877, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.322, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.46, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.497, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.556, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.144, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.704, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.402, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.34, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.622, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.638, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.216, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.98, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.273, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.999, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.561, 62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.668, 62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.144, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.092, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.048, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.997, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.028, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.949, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.925, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.935, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.824, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.902, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.923, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.929, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.756, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.971, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.394, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.332, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.41, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.31, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.388, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.33, 62.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.223, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.3, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.368, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.436, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.366, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.114, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.199, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.292, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.793, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.972, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.1, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.925, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.875, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.888, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.765, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.853, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.784, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.824, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.988, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.637, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.711, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.61, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.34, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.245, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.66, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.546, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.206, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.38, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.742, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.512, 62.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.419, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.049, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.221, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.314, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.802, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.817, 62.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.61, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.34, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.064, 62.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.765, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.408, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.634, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.98, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.847, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.785, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.854, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.767, 62.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.982, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.803, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.896, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.481, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.859, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.739, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.94, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.158, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.804, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.772, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.493, 62.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.907, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.908, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.869, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.056, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.889, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.813, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.22, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.822, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.762, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.868, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.884, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.868, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.907, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.971, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.163, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.126, 62.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.085, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.875, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.866, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.938, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.799, 62.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.8, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.619, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.689, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.802, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.735, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.818, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.634, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.745, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.604, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.973, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.013, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.028, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.725, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.529, 62.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.571, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.502, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.465, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.452, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.889, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.032, 62.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.77, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.882, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.74, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.887, 62.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.771, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.667, 62.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.038, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.406, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.362, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.151, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.192, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.176, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.458, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.468, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.468, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.436, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.413, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.401, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.497, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.176, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.17, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.216, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.489, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.319, 62.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.636, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.98, 62.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.948, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.117, 62.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.432, 62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.502, 62.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.501, 62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.002, 62.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.189, 62.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.255, 61.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.496, 63.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.668, 61.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.579, 61.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.582, 61.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.626, 61.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.359, 61.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.438, 61.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.399, 61.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.373, 61.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 61.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 61.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.225, 61.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 61.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 62.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.178, 67.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.989, 67.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 67.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.81, 68.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 68.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.953, 68.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.779, 69.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.748, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.171, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.503, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.655, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.464, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.535, 69.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.619, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.657, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.611, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.691, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.08, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.998, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.901, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.731, 68.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.331, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.918, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.121, 69.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.655, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.801, 68.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.716, 68.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.553, 68.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.892, 67.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.808, 68.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 67.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.372, 67.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.496, 67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.51, 67.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.476, 67.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.413, 67.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.342, 67.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.713, 67.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.805, 67.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -31.356, 77.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.11, 67.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.922, 67.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.946, 67.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.957, 67.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.102, 67.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.181, 67.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.63, 67.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.59, 67.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.133, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.834, 67.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 67.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.051, 67.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.209, 67.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.953, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.095, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.02, 67.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.868, 67.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.774, 67.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.84, 67.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.737, 67.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.796, 67.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.341, 67.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.558, 68.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.776, 67.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.897, 67.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.369, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.618, 67.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.727, 67.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.487, 67.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.134, 66.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.479, 66.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.506, 66.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.957, 66.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.835, 66.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.364, 66.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.752, 66.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.85, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.755, 66.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.861, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.836, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.855, 66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.826, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.056, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.165, 65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.302, 65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.416, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.212, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.561, 67.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.597, 67.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.38, 67.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.502, 67.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.386, 67.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.449, 67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.407, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.509, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.562, 67.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.432, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.647, 67.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.515, 67.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.568, 67.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.52, 67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.453, 67.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 67.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.336, 67.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.383, 67.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.401, 67.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.765, 67.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.598, 67.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.583, 67.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.471, 67.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.301, 67.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.495, 67.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.388, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.342, 67.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.372, 67.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.742, 67.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.756, 67.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.46, 67.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.486, 67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.264, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.557, 67.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 67.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.552, 67.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.442, 67.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.44, 67.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.858, 67.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.486, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.492, 67.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.431, 67.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 67.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.243, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.263, 67.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.265, 67.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.111, 67.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.288, 67.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.097, 67.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.608, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.433, 67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.447, 67.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.565, 67.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.733, 67.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.394, 67.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.162, 67.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.167, 67.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.836, 67.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.555, 67.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.469, 67.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.844, 67.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.144, 67.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.456, 67.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.408, 67.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.441, 67.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.379, 67.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.44, 67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.541, 67.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.495, 67.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.536, 67.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.428, 67.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.554, 67.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.778, 67.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.509, 67.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.573, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.431, 67.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.627, 67.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.551, 67.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.58, 67.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.093, 67.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.688, 67.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.577, 67.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.877, 68.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.759, 68.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.59, 67.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.372, 67.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.213, 67.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.527, 67.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.575, 67.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.88, 67.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.07, 67.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.648, 67.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.558, 67.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.694, 68.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.544, 68.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.35, 67.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.201, 68.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.499, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.367, 68.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.646, 68.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.613, 68.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.578, 68.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.565, 67.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.716, 67.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.686, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.715, 68.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.874, 68.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.33, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.866, 68.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.759, 68.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.741, 68.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.717, 68.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.647, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.695, 68.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.897, 67.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.604, 68.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 68.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.677, 68.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.761, 68.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.777, 68.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.836, 68.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.837, 68.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.973, 68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.679, 68.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.907, 68.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.882, 68.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.997, 68.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.726, 68.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.877, 68.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.81, 68.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.88, 67.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.072, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.326, 68.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.722, 68.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.935, 67.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.895, 67.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.379, 68.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.889, 68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.746, 68.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.805, 68.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 68.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.901, 68.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.941, 68.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.91, 68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.003, 68.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.451, 68.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.194, 68.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.177, 68.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.359, 68.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.357, 68.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.466, 68.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.496, 68.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.427, 68.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.312, 68.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.3, 68.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.327, 68.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.387, 68.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.389, 68.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.249, 68.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.62, 68.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 68.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 68.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 68.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.774, 68.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.716, 68.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 68.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.757, 68.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.771, 68.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 68.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.796, 68.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.889, 68.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 68.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 68.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.862, 68.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.979, 68.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.826, 68.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.894, 68.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.655, 68.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.625, 68.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.651, 68.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.581, 68.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 68.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 68.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.16, 68.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.243, 68.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.814, 68.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.846, 68.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.359, 68.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.33, 68.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.3, 68.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.428, 68.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.344, 68.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.344, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.254, 68.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.265, 68.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.162, 68.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.059, 68.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.964, 68.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.216, 68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.811, 68.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.763, 68.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.832, 68.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.854, 68.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.686, 68.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.491, 68.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.021, 68.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.08, 68.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.82, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 69.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.184, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.201, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.768, 68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.722, 68.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.113, 68.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.791, 68.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.296, 68.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.521, 68.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.18, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.289, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.069, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.877, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.888, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.984, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.881, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.014, 69.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.903, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.09, 69.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.919, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.943, 69.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.993, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.041, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.985, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.002, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.89, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.921, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.697, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.919, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.998, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.872, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.83, 69.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.952, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.914, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.081, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.088, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.721, 69.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.785, 68.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.653, 68.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.959, 68.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.056, 68.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 68.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 68.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.472, 68.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 68.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.355, 68.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 68.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.74, 67.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 67.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.495, 67.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.474, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.574, 67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.499, 67.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.52, 67.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.612, 67.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.99, 68.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 68.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 68.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.893, 68.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.753, 68.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 68.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 68.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.589, 50.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 68.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.989, 68.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.051, 68.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.631, 68.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.827, 68.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.017, 68.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 68.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.912, 68.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.912, 68.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.754, 68.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.689, 68.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.989, 68.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.129, 68.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.898, 68.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.281, 68.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 68.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.485, 68.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 68.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.931, 68.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 68.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 68.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.802, 68.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.03, 68.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.415, 68.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.306, 68.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 68.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 68.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.978, 68.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 68.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.818, 68.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.172, 68.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 68.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.059, 68.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.255, 68.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 68.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 68.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.542, 68.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.594, 68.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.846, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 68.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.597, 68.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.975, 68.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -7.024, 80.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 68.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.429, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.633, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.566, 68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.829, 68.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.802, 68.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.616, 67.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.179, 67.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.965, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.166, 67.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.67, 68.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.252, 67.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.526, 66.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.954, 66.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.705, 66.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.696, 66.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.73, 66.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.612, 66.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.721, 66.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.711, 66.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.686, 66.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.0, 66.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.083, 66.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 66.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 66.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.559, 66.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.688, 66.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.77, 66.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.863, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.777, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.735, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.463, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.538, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.469, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.362, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.388, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.356, 66.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.337, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.349, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.409, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.365, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.28, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.602, 65.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 65.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.558, 65.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.515, 65.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.462, 65.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.448, 64.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.189, 64.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.141, 64.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.212, 64.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 64.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.683, 64.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.165, 64.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.625, 63.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.503, 63.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.855, 63.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.486, 63.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.551, 63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.131, 63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.141, 63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.382, 63.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.755, 63.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.819, 63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 63.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.573, 63.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.385, 63.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.235, 63.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.216, 63.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.029, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.861, 63.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.846, 63.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.167, 64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.576, 63.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.688, 63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.897, 64.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.025, 63.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.978, 63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.853, 63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.745, 64.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.077, 64.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.567, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.435, 62.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.243, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.595, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.759, 62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.992, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.818, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.744, 62.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.941, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.002, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.837, 62.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.588, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.59, 62.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.644, 62.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.435, 62.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.506, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.67, 62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.106, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.16, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.533, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.028, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.995, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.817, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.577, 62.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.664, 62.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.786, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.585, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.662, 62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.003, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.571, 62.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.587, 62.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.599, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.813, 62.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.032, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.523, 62.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.19, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.024, 63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.931, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.067, 63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.104, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.478, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.547, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.638, 63.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.778, 63.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.303, 64.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.798, 63.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.982, 63.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.552, 63.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.223, 63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.284, 63.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.09, 63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.058, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.091, 63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.273, 63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.256, 63.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.442, 63.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.295, 62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.687, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.443, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.511, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.258, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.926, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.95, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.06, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.939, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.079, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.01, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.505, 62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.157, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.998, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.987, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.891, 62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.675, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.314, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.81, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.784, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.681, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.98, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.224, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.666, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.054, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.915, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.95, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.846, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.907, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.901, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.912, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.659, 62.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.564, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.028, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.029, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.088, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.196, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.046, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.117, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.226, 62.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.104, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.272, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.852, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.932, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.912, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.779, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.776, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.742, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.753, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.711, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.644, 62.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.776, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.781, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -141.796, 73.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.624, 62.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.637, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.591, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.468, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.288, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.788, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.291, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.033, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.73, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.935, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.923, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.695, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.728, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.901, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.481, 62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.258, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.536, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.645, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.959, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.909, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.977, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.118, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.998, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.88, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.757, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.745, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 62.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.851, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.866, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.893, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.819, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.86, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.954, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.975, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.876, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.908, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.872, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.728, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.77, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.639, 62.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.694, 62.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.808, 62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.763, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.746, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.961, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.9, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.04, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.886, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.963, 62.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.032, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.919, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.877, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.471, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.476, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.046, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.957, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.827, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.67, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.834, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.955, 62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.83, 62.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.762, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.795, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.827, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.829, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.83, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.668, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.802, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.805, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.726, 62.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.834, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.672, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.788, 62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.197, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.146, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.792, 62.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.471, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.51, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.935, 62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.777, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.661, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.135, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.854, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.926, 62.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.776, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.471, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.561, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.752, 62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.588, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.534, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.709, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.578, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.094, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.756, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.648, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.737, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.553, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.576, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.363, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.979, 62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.117, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.077, 62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.256, 62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.325, 62.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.266, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.73, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.337, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.327, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.152, 62.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.113, 62.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.973, 62.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.059, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.008, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.93, 62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.308, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.431, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.478, 62.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.123, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.878, 62.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.011, 62.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.362, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.438, 62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.637, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.689, 62.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.632, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.699, 62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.121, 62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.777, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 62.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.901, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.746, 62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.657, 62.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.167, 62.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.113, 62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 63.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.093, 63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.865, 63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.009, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.969, 62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.035, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 61.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.846, 61.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 61.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.002, 61.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 61.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.06, 61.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 61.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.322, 61.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.395, 61.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.831, 61.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.872, 61.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.962, 61.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.896, 61.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.921, 61.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.939, 61.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.983, 61.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.445, 61.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.491, 61.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.678, 61.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.657, 61.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.583, 61.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.694, 61.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.95, 61.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.1, 61.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.99, 61.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.019, 61.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.005, 61.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.967, 61.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.87, 61.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.952, 61.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.917, 61.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.207, 61.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.703, 61.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.828, 61.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.91, 61.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.067, 61.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.109, 61.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.971, 61.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.84, 61.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.88, 61.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.368, 60.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.237, 61.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.846, 60.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.952, 60.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.359, 60.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.37, 60.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.359, 60.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.357, 60.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.916, 60.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.987, 60.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.902, 60.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.045, 60.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.779, 60.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.601, 60.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.614, 60.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.492, 60.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.206, 60.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.136, 60.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.101, 60.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.304, 60.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.374, 60.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.359, 60.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.624, 60.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.792, 60.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.845, 60.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.8, 60.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.78, 60.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.889, 60.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.02, 60.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.385, 60.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.136, 60.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.046, 60.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.398, 60.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.488, 60.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.701, 60.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.72, 60.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.819, 60.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.731, 60.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.914, 60.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.613, 60.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.324, 60.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.398, 60.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.382, 60.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.316, 60.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.267, 60.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.229, 60.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.216, 60.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.214, 60.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.266, 60.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.303, 60.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.582, 60.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.557, 60.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.634, 60.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.671, 60.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.626, 60.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.711, 60.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.922, 60.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.956, 60.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.917, 61.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.912, 61.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.762, 61.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.767, 61.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.736, 61.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.697, 61.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.685, 61.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.709, 61.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.761, 61.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.717, 61.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.746, 61.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.733, 61.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.852, 61.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.648, 61.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.728, 61.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.744, 61.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.655, 61.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.682, 61.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.724, 61.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.656, 61.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.71, 61.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.622, 61.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.432, 61.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.353, 61.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.287, 61.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.466, 61.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.108, 61.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.275, 61.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.997, 61.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.573, 61.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.515, 61.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.304, 61.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.586, 61.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.522, 61.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.456, 61.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.662, 61.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.482, 61.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.962, 61.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.786, 61.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.702, 62.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.41, 62.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.365, 62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.332, 62.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.181, 62.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.128, 62.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.908, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.869, 62.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.812, 62.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.667, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.398, 62.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.367, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.332, 62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.32, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.171, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.094, 62.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.104, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.045, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.843, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.651, 62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.694, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.721, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.613, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.703, 62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.549, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.475, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.361, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.326, 62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.294, 62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.17, 62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.994, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.108, 62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.1, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.182, 62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.191, 62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.265, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.275, 62.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.385, 62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.199, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.217, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.14, 62.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.063, 62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.052, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.071, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.553, 62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.115, 62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.05, 62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.237, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.04, 62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.84, 62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.856, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.857, 62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.827, 62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.777, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.595, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.79, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.713, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.843, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.706, 62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.568, 62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.607, 62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.526, 62.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.595, 62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.594, 62.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.586, 62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.74, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.509, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.453, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.345, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.492, 62.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.324, 62.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.283, 62.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.306, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.234, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.25, 62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.229, 62.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.144, 62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.106, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.075, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.944, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.03, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.416, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.035, 62.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.931, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.898, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.959, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.954, 62.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.099, 62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.031, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.997, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.139, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.053, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.996, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.929, 62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.421, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.409, 62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.468, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.638, 62.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.509, 62.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.501, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.514, 62.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.51, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.949, 62.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.506, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.381, 62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.505, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.518, 62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.566, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.419, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.485, 62.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.511, 63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.321, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.254, 62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.417, 62.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.377, 62.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.066, 63.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.174, 63.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.255, 63.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.528, 63.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.404, 63.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.254, 63.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.436, 63.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.497, 63.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 63.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.386, 64.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.49, 64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.546, 64.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.467, 64.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.716, 64.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 64.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 69.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.176, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 68.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.93, 68.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 68.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.383, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 68.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 68.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 68.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.962, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 68.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.006, 68.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 68.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 68.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.103, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.233, 68.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.142, 68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 68.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 68.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 68.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 68.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.209, 68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.242, 68.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.09, 68.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.194, 68.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.446, 68.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 68.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.314, 68.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.436, 69.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.292, 69.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.296, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 68.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.918, 68.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.872, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.617, 66.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.068, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.053, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.227, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.934, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.922, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.921, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.932, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.052, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.572, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.009, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.383, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.428, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.365, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.278, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.501, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.505, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.362, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.391, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.195, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.395, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.335, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.451, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.645, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.8, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.877, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.492, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.087, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.021, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.127, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.99, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.39, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.381, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.612, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.659, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.689, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.392, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.33, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.361, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.627, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.077, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.988, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.033, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.421, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.252, 70.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.724, 70.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.778, 70.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 71.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.342, 73.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.051, 71.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 71.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 71.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 71.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.483, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.412, 71.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.511, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 71.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.527, 71.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 71.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 71.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 71.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.719, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 71.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 71.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 71.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 71.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.677, 71.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.496, 71.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 71.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.726, 71.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 71.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.951, 71.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.588, 70.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 71.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 71.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 71.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 71.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 71.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.054, 71.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 71.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 71.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.198, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.135, 71.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 71.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.898, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 71.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 71.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 71.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 71.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 71.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 71.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 71.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.211, 71.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 71.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 71.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.342, 71.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.406, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 71.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.613, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.521, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.88, 71.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.493, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.386, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.567, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 72.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.246, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.831, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.978, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 72.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.696, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 72.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.141, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.081, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.189, 72.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.406, 72.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 72.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.437, 72.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.491, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.497, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 72.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.453, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.237, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.196, 72.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.257, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.216, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 72.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 72.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.274, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.285, 72.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.936, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.316, 72.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 72.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 72.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.133, 72.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.081, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 72.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.172, 72.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 72.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.206, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.168, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.137, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 72.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 72.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 72.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.565, 72.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 72.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 72.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 72.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.431, 72.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.968, 72.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 72.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 72.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.051, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.271, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.595, 72.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.362, 72.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.502, 72.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 72.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.362, 72.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.798, 72.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 72.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 72.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.604, 72.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 72.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.944, 72.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 72.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 72.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 72.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 72.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 72.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.004, 72.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 72.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 72.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 72.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.768, 72.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.999, 72.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 72.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.976, 72.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 72.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 72.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.249, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.754, 72.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 72.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 72.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 72.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.953, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.351, 72.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.718, 72.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 72.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.436, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 72.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 72.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 72.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.308, 72.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.83, 72.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.941, 72.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.752, 72.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.716, 72.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.694, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.844, 72.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.739, 72.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.756, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.719, 72.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.167, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.945, 72.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 72.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.1, 72.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.097, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.372, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.278, 72.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.303, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.495, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.523, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.541, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.706, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.79, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.035, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.105, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.16, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.008, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.968, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.256, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.813, 71.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.819, 71.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.369, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.246, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.209, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.202, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.223, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.18, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.171, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.088, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.863, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.912, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.067, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.931, 72.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.907, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.988, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.883, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.016, 72.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.961, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.288, 72.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.685, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.678, 72.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.529, 72.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 72.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 72.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.421, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.417, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 72.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.514, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.405, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.464, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 72.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.494, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.531, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.146, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 72.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.583, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.887, 72.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.051, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 72.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 72.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.949, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 72.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.064, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.933, 72.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.93, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.713, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.8, 72.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 72.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.966, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.994, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 72.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.684, 72.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 71.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.234, 71.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.86, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.654, 71.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.112, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 72.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.175, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.984, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.078, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.135, 71.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.13, 71.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.117, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.286, 71.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.131, 71.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 71.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.651, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.078, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.202, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.241, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.157, 71.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 71.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.061, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.044, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.875, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.883, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.316, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.837, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.701, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 71.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.727, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.83, 71.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.876, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.86, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.807, 71.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.842, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.792, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.795, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 71.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.945, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.957, 71.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.015, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.941, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.886, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.923, 71.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.927, 71.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.779, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.758, 71.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.683, 71.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.674, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.663, 71.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.635, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.631, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.629, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.577, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.686, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.663, 71.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.662, 71.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.509, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.709, 71.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.489, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.358, 71.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.57, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.606, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.64, 71.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.624, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.205, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.651, 71.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.631, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.637, 71.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.276, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.824, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.664, 71.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.756, 71.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.403, 71.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.659, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.726, 71.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.718, 71.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 71.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.688, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.67, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.664, 71.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.666, 71.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 71.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.736, 71.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.711, 71.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.617, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.637, 71.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.535, 71.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.426, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.612, 71.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.585, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.656, 71.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.63, 71.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.763, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.697, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.57, 71.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.767, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.667, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.626, 71.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.652, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.361, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.686, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.644, 71.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.682, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.671, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.738, 71.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.708, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.681, 71.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.679, 71.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.724, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.679, 71.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.467, 72.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 71.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.14, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.47, 71.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.079, 71.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.056, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.142, 71.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.676, 71.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.786, 71.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 71.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.902, 71.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.901, 71.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 71.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 71.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 71.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.25, 71.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.891, 71.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.927, 71.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.776, 71.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.641, 71.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.533, 71.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.151, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.278, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.336, 71.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.281, 71.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.751, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96, 71.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.726, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.692, 71.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.379, 70.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.975, 71.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.343, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.51, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 71.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.933, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.428, 71.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.948, 71.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.455, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.763, 71.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.636, 71.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.894, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.882, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 70.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.989, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 70.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.235, 70.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.119, 71.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.247, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.216, 70.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.192, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.176, 70.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.233, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.209, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.309, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 70.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.14, 70.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 70.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.879, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.349, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.189, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 70.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.362, 70.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 70.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 70.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 70.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 70.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.718, 70.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.575, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.769, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 70.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.866, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.583, 70.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.211, 70.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 70.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.759, 70.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 70.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 70.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.714, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.808, 70.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 70.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.845, 70.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.651, 70.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 70.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 70.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 70.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 70.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 70.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 70.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 70.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.816, 70.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 70.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.825, 70.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 70.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 70.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 70.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.394, 70.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.57, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 71.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 71.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.748, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 71.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 71.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.885, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 71.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 71.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 71.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.716, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 71.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 71.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.515, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.687, 71.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 71.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.751, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.542, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.677, 71.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 71.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.555, 71.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.748, 71.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.588, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 71.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 71.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 71.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 71.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.688, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 71.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.933, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.606, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.593, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 71.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.706, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.697, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.764, 71.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.728, 71.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.734, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.712, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 71.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.735, 71.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 71.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 71.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.906, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 71.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 71.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 71.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 71.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 71.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.952, 71.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 71.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 71.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.015, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 71.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.787, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 71.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.522, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.75, 71.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.711, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.852, 71.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.679, 71.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.423, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 71.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.578, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 71.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.593, 71.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.597, 71.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.621, 71.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 71.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 71.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.587, 71.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.356, 71.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 71.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.341, 71.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 71.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 71.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 71.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.457, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.726, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.514, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 71.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 71.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.452, 71.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.305, 71.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.132, 71.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.364, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.142, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.719, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.464, 71.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.177, 71.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.085, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 71.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.349, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 71.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.041, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.108, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.149, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 71.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.208, 71.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 71.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.743, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.84, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.763, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.016, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.169, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.322, 71.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.354, 71.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.551, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.311, 72.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 71.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 71.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.533, 71.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 71.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.579, 71.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 71.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 71.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.679, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.683, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.504, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.687, 71.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.013, 71.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 71.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.708, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 71.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.697, 71.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.728, 71.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 71.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 71.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.066, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 71.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.394, 71.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 71.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 71.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.408, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 71.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 71.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.779, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 71.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 71.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.533, 71.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.567, 71.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 71.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 71.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.514, 71.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 71.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.762, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.686, 71.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.571, 70.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.54, 70.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 71.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.927, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.562, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 70.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 70.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.438, 70.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 70.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 70.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 70.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 70.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.134, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.123, 70.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 69.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.809, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.478, 70.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.846, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.698, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.776, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.196, 70.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.936, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.737, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.891, 70.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.614, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.488, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.222, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.037, 70.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.803, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.674, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.695, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.693, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.907, 70.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.888, 70.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.222, 70.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.733, 70.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.688, 70.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.221, 70.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.293, 70.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.309, 70.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.502, 71.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.39, 71.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.575, 71.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.751, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.531, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 71.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 70.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.015, 70.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 70.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 70.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 70.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 70.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.441, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.713, 70.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.581, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.723, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.745, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.222, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.151, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.241, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.286, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.344, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.295, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.434, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.524, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.343, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.278, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.253, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.192, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.457, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.165, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.437, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.536, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.39, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.401, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.399, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.341, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.236, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.131, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.018, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.138, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.729, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.083, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.579, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.807, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.844, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.874, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.822, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.893, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.899, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.902, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.872, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.869, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.914, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.951, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.861, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.935, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.879, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.928, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.935, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.139, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.016, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.944, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.187, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.246, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.165, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.874, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.045, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.91, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.731, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.78, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.797, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.78, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.841, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.764, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.417, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.251, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.618, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.56, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.306, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.632, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.431, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.817, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.358, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.368, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.443, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.631, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.112, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.386, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.492, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.438, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.252, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.314, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.261, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.184, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.151, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.133, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.093, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.249, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.088, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.091, 69.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.106, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.139, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.086, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.672, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.093, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.107, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.063, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.005, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.038, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.145, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.156, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.18, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.176, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.088, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 69.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.961, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.059, 69.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.189, 69.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.065, 69.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.021, 69.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.089, 69.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.139, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.025, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.036, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.904, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.093, 69.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.976, 69.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.667, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.826, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.633, 69.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.636, 69.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.633, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.436, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.369, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.294, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.292, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.292, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.266, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.012, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.298, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.251, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.181, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.833, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.947, 69.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.905, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.899, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.811, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.835, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.733, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.438, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.105, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5, 69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48, 69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.477, 69.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.395, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.444, 68.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.426, 69.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.445, 69.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.686, 68.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.878, 69.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.196, 68.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.01, 69.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.283, 68.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.295, 68.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25, 68.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.084, 69.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.187, 68.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.394, 69.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.436, 68.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.371, 69.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.545, 68.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.459, 69.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.405, 68.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.332, 68.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.319, 68.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.311, 68.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.294, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.333, 68.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.287, 68.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.262, 68.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.287, 68.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.242, 68.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.392, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.371, 68.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.335, 68.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.818, 68.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33, 68.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.297, 68.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.025, 68.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.024, 68.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.081, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.315, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.251, 68.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.521, 69.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.425, 69.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.539, 68.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.639, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.563, 69.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 69.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.538, 69.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.586, 69.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.401, 69.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.398, 69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.424, 68.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.318, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.337, 68.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.217, 68.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25, 68.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.201, 68.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29, 68.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.336, 68.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.425, 68.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.336, 68.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.386, 68.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.325, 68.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.242, 68.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.197, 68.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.229, 68.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.261, 68.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.251, 68.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.264, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.353, 68.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.342, 69.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.332, 68.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.204, 68.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.366, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.379, 68.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.346, 69.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.403, 69.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.358, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.326, 68.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.397, 68.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.409, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.478, 68.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.495, 69.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.337, 68.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.672, 68.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.426, 68.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.371, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.359, 69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.303, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.191, 68.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.299, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.322, 68.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.413, 68.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.383, 68.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6, 68.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.509, 69.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.406, 69.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.401, 69.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.411, 69.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.296, 68.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.412, 68.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.341, 68.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.297, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.263, 68.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.236, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.97, 68.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.305, 68.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.433, 68.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.263, 68.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.264, 68.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.257, 68.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.271, 68.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.972, 69.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.365, 68.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.327, 68.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.331, 68.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.301, 68.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.31, 68.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.157, 68.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.105, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.084, 68.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.113, 68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.183, 68.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.223, 68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.283, 68.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.287, 68.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.232, 68.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.097, 68.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.085, 68.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.061, 68.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.228, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.113, 68.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.045, 68.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.055, 68.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.654, 68.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.93, 68.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.002, 68.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.004, 68.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.087, 68.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.841, 68.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.826, 68.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.961, 68.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.061, 68.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.036, 68.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.032, 68.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.065, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.063, 68.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.081, 68.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.091, 68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.064, 68.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.043, 68.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.11, 68.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.931, 68.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.027, 68.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05, 68.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.678, 68.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.046, 68.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.239, 68.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.133, 68.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.173, 68.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.064, 68.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03, 68.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.131, 68.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.983, 68.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.026, 68.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.036, 68.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.117, 68.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.047, 68.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.055, 68.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.018, 68.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.041, 68.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04, 68.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.017, 68.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.614, 68.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.002, 68.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.965, 68.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.987, 68.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.023, 68.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.998, 68.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.003, 68.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.017, 68.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.008, 68.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.066, 68.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.058, 68.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.046, 68.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.052, 68.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.057, 68.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.008, 68.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02, 68.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.044, 68.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.004, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.975, 68.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.031, 68.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.039, 68.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.071, 68.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.059, 68.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.116, 68.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.104, 68.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.093, 68.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.312, 69.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.068, 68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.987, 68.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.089, 68.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.066, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.129, 68.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12, 68.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.075, 68.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 68.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.084, 68.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.077, 68.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.055, 68.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.019, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.115, 68.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03, 68.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.952, 68.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.004, 68.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.997, 68.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.063, 68.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.064, 68.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13, 68.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13, 68.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.204, 68.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.145, 68.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.223, 68.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.262, 68.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.207, 68.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.188, 68.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.223, 68.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.274, 68.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24, 68.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15, 68.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17, 68.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.147, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.432, 68.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.304, 68.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.319, 68.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29, 69.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.512, 69.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.773, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.889, 68.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.646, 69.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.489, 69.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.573, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61, 69.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.704, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.612, 69.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.757, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.143, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.581, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.631, 69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.534, 69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.604, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.637, 69.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.719, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.654, 69.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.711, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.652, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.694, 69.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.641, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.833, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.682, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69, 69.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.703, 69.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.716, 69.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.158, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.723, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.887, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.036, 68.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.137, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.776, 69.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.753, 69.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.803, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.718, 69.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.698, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.859, 69.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.808, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.746, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.869, 69.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.873, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.846, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.811, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.856, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.878, 69.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.767, 69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.619, 69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.781, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.726, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.764, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.782, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.709, 69.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.719, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.673, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.725, 69.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.797, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.615, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65, 69.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.717, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.776, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.742, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.494, 68.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.814, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.736, 69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.712, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59, 69.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67, 69.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.751, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.686, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.764, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.766, 69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.796, 69.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.762, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.744, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.663, 69.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.729, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.107, 69.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.717, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.916, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.714, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.437, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75, 69.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.689, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.774, 69.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.802, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.664, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.747, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.722, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.649, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.698, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.655, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.746, 69.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.719, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.748, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.574, 69.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.741, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.656, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.709, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.741, 69.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.601, 69.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.976, 68.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.708, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.685, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.728, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.658, 69.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.557, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.507, 69.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.447, 68.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.439, 68.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.434, 69.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.088, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.11, 69.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.329, 69.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.928, 69.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.962, 69.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.856, 69.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.859, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.585, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.591, 69.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.24, 69.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.265, 69.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.355, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.367, 69.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.912, 69.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.409, 69.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.203, 69.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.767, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.419, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.436, 69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.28, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.217, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.145, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77, 69.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.69, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.684, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.69, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.519, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.545, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.487, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.261, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.153, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.959, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.936, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.929, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.298, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.657, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.839, 69.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.288, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.064, 69.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.528, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.335, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.516, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.183, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.788, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.15, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.204, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.965, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.96, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.872, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.938, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.908, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.79, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.742, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.518, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.767, 69.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.157, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.88, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.502, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.882, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.723, 69.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.783, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.823, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.796, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.803, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.538, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.626, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.398, 69.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.422, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.347, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.808, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.722, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.511, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.565, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.85, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.752, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.122, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.699, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.294, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.144, 69.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.655, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.899, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.949, 69.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.838, 68.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.859, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.943, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.649, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.941, 69.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.928, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.09, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.932, 68.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.961, 68.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.966, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.334, 68.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.922, 68.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.888, 68.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.737, 68.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.051, 68.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.164, 67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.033, 67.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.659, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.104, 68.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.003, 68.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 68.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.519, 68.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.364, 68.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.112, 68.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 68.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 68.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.34, 68.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.121, 68.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.413, 68.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 68.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 68.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.317, 68.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.291, 68.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.382, 68.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.18, 68.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.394, 68.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 68.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.194, 68.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 68.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.425, 68.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.423, 68.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 68.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 68.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.448, 68.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.342, 68.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.38, 68.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.51, 68.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.428, 68.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.353, 68.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 68.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.332, 68.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.228, 68.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.238, 68.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.229, 68.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.489, 68.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.368, 68.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.257, 68.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.279, 68.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 68.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 68.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 68.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.524, 68.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.517, 68.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.516, 68.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.505, 68.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.528, 68.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 68.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 68.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.458, 68.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.553, 68.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.46, 68.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.471, 68.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.602, 68.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.576, 68.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.617, 68.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.778, 68.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.44, 68.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 68.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.464, 68.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.471, 68.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.443, 68.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.314, 68.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.364, 68.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.208, 68.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.35, 68.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.175, 68.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.355, 68.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 68.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 68.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.469, 68.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 68.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 68.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 68.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 68.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 68.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 68.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.437, 68.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.399, 68.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.347, 68.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 68.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.421, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 67.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.268, 67.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.394, 67.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 67.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.342, 67.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 67.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.216, 67.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.276, 67.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.072, 67.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 67.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.064, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.665, 67.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.088, 67.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.119, 67.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 67.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 67.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.115, 67.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.143, 67.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.06, 67.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.38, 67.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 67.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.921, 67.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.04, 67.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.554, 67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.57, 68.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.225, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 67.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.899, 67.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.836, 67.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 67.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.998, 67.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.405, 67.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.565, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.283, 67.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.035, 67.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.278, 67.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.632, 67.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 67.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 67.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.305, 67.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.188, 67.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 67.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.018, 67.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 67.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.195, 67.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 67.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 67.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.406, 67.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.421, 67.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.085, 67.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.032, 67.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.113, 67.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 67.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.115, 67.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.388, 67.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.062, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 67.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 67.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 67.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 67.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.145, 67.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.187, 67.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 68.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.933, 67.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.272, 67.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.149, 67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 67.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.261, 67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 67.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 67.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.095, 67.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 67.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.989, 67.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.272, 67.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.176, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.175, 67.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 67.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.284, 67.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 67.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.603, 67.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 67.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.448, 67.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 67.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.554, 67.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.756, 67.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.635, 67.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.594, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 67.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.611, 67.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 67.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.708, 67.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.648, 67.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.723, 67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.656, 65.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 65.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.759, 65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.002, 65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.08, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.011, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.816, 65.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.452, 66.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.46, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.536, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.556, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 66.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.887, 66.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.027, 66.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.81, 66.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.599, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.693, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.621, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.584, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.645, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.696, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.733, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.94, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.245, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.933, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.718, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.695, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.518, 66.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.239, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.652, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.56, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.779, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.693, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.765, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.717, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.685, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.539, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.753, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.871, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 27.186, 82.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.863, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.524, 66.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.867, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.902, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.344, 66.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.713, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.815, 66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.859, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.817, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.767, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.849, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.761, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.812, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.729, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.845, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.833, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.825, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.82, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.816, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.945, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.626, 65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.677, 65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 65.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.788, 65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.507, 65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 65.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.624, 65.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.928, 65.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.678, 65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 65.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.898, 65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.526, 65.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.542, 65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.594, 65.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.642, 65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.606, 65.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.6, 65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 64.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.649, 65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.636, 65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.591, 65.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.652, 65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 64.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.108, 64.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.049, 64.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.044, 64.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.856, 64.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.826, 64.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.707, 64.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.696, 64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.565, 64.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.57, 64.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.588, 64.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.012, 64.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.478, 64.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.424, 64.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.888, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 63.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.927, 63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.722, 63.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.972, 63.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.231, 63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 63.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.988, 63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.516, 63.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.936, 63.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.996, 63.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.847, 63.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.709, 63.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.668, 64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.841, 63.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.686, 63.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.736, 63.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.743, 63.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.751, 63.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.851, 63.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 63.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.938, 63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.976, 63.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.855, 63.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.872, 63.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.89, 63.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.862, 63.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.9, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.92, 63.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.883, 63.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.19, 64.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.939, 63.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.899, 63.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.914, 63.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.902, 63.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.917, 63.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.881, 63.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.937, 63.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.653, 63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.612, 63.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.098, 63.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.833, 63.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.677, 63.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.799, 63.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.689, 63.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.856, 63.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.636, 63.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.569, 63.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.035, 63.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.866, 63.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.893, 63.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.993, 63.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.777, 63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.851, 63.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.818, 63.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.795, 63.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.045, 63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.722, 63.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.886, 63.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.7, 63.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.965, 63.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.077, 63.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.861, 63.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.836, 63.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.802, 63.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.816, 63.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.817, 63.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.725, 63.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.813, 63.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.841, 63.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.927, 63.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.899, 63.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.728, 63.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.679, 63.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.14, 63.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.714, 63.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.688, 63.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.153, 63.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.492, 63.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.82, 64.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.588, 64.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.46, 64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.229, 64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.293, 64.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.334, 64.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.492, 64.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.174, 63.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.153, 64.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.165, 63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.296, 63.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.31, 64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.18, 64.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.31, 64.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.145, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.16, 63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.09, 63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.374, 63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.446, 64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.202, 64.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.044, 63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.051, 63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.79, 63.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.951, 63.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.748, 63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.9, 63.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.801, 63.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.153, 63.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.639, 63.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.932, 63.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.353, 63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.634, 63.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.546, 63.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.536, 63.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.658, 63.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.843, 63.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.638, 63.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.517, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.552, 63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.557, 63.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.514, 63.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.669, 63.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.581, 63.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.573, 63.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.582, 63.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.607, 63.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.038, 63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.472, 63.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.571, 63.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.548, 63.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.668, 63.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.627, 63.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.632, 63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.105, 63.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.205, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.908, 63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.99, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.93, 63.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.802, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.944, 63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.158, 63.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.236, 63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.089, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.26, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.297, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.684, 63.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.21, 62.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.154, 63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.181, 62.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.084, 63.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.974, 62.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.802, 62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.811, 62.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.647, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.681, 62.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.685, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.556, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.817, 62.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.809, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.758, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.802, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.136, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.406, 62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.562, 62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.661, 62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.671, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.475, 62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.319, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.566, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.389, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.362, 62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.151, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.13, 62.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.882, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.065, 62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.974, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.983, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.105, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.065, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.826, 62.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.832, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.779, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.902, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.972, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.872, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.745, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.902, 62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.928, 62.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.936, 62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.907, 62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.942, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.933, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.93, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.611, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.921, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.949, 62.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.148, 62.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.953, 62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.924, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.938, 62.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.822, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.661, 62.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.199, 62.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.636, 62.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.696, 62.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.687, 62.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.728, 62.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.621, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.812, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.555, 62.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.935, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.07, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.725, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.951, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.902, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.802, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.862, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.873, 62.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.619, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.505, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.251, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.695, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.659, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.71, 62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.673, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.711, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.744, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.816, 62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.892, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.853, 62.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.85, 62.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.882, 62.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.985, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.968, 62.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.013, 62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.972, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.072, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.952, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.814, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.829, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.791, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.741, 62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.832, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.807, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.182, 63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.767, 62.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.666, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.665, 62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.645, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.621, 62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.869, 62.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.094, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.261, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.167, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.1, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.116, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.868, 62.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.45, 63.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.382, 62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.201, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.303, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.842, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.364, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.424, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.446, 63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.492, 63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.524, 63.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.52, 63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.528, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.62, 63.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.918, 63.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.149, 63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.008, 63.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.527, 63.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.561, 63.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.567, 63.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.868, 63.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.058, 63.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.144, 63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.926, 63.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.278, 63.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.284, 63.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.472, 63.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.495, 63.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.591, 63.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.55, 63.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.532, 63.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.929, 63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.947, 63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.474, 63.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.841, 63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.723, 63.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.829, 63.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.914, 64.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.951, 63.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.94, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.102, 63.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.203, 63.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.773, 64.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.041, 63.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.847, 64.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.788, 63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.72, 64.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.983, 63.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.877, 64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.043, 64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.579, 63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.76, 64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.89, 63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.802, 64.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.93, 63.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.991, 63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.93, 63.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.851, 64.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.87, 63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.08, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.766, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.633, 62.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.402, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.62, 62.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.528, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.324, 62.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.389, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.361, 62.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.388, 63.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.307, 63.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.366, 63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 63.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.478, 63.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.088, 63.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.69, 63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.02, 63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.837, 63.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.739, 63.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.718, 63.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.798, 63.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.062, 63.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.615, 63.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.621, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.522, 63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.705, 63.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.689, 63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.791, 63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.822, 63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.859, 63.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.85, 63.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.869, 63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 63.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.996, 63.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.99, 63.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.02, 63.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.926, 63.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.997, 63.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.719, 63.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.652, 63.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.54, 63.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.453, 63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.244, 63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.182, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.203, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.231, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.998, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.636, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.855, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.712, 62.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.211, 62.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.145, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.152, 62.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.175, 62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.193, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.265, 62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.474, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.398, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.577, 63.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.865, 63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.875, 63.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.147, 64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 64.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.053, 64.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.555, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 64.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.096, 64.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.717, 64.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.642, 65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.068, 65.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.446, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.445, 65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.349, 65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.295, 65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 65.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.715, 65.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.66, 65.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.562, 65.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.646, 65.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.995, 70.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.523, 65.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.433, 64.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.109, 64.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 64.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 64.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.798, 64.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.909, 64.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.941, 64.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 64.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.026, 64.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.621, 64.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.742, 64.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.181, 65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.015, 65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.617, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.761, 65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.705, 65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.678, 65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.946, 65.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.091, 65.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.226, 65.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.554, 66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.642, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.611, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.614, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.894, 66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.193, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.24, 65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.183, 65.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.034, 65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.791, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.288, 65.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.763, 65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.757, 65.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.733, 65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.775, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.683, 65.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.615, 65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.656, 65.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.731, 65.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.635, 65.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.551, 65.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.354, 65.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.645, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.758, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.75, 65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.747, 65.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.744, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.645, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.784, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.359, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.414, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.436, 66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.459, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.767, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.562, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.007, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.912, 66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.394, 65.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.654, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.52, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.096, 65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.126, 65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.291, 65.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.263, 65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.388, 66.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.998, 66.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 66.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.876, 66.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 66.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 67.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.972, 67.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.986, 67.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.189, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 67.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 68.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.428, 68.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.925, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.986, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.317, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.268, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.457, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.4, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.522, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.385, 69.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.055, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.613, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.868, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.303, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.381, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.299, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.198, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.331, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.902, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.554, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.916, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.952, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.707, 69.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.58, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.665, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.368, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.837, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.479, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.544, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.452, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.474, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.961, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.061, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.096, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.176, 69.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.226, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.25, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.733, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.15, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.487, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.326, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.426, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.263, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.898, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.835, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.834, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.858, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.032, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.313, 69.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.519, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.323, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.259, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.945, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 69.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.06, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.796, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.472, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.362, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.44, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.454, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 69.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.029, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.972, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.801, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.681, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.675, 69.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.838, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.003, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.127, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.534, 69.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.841, 69.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.126, 69.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.073, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.385, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.479, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.472, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.64, 69.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.727, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.452, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.295, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.012, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.133, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.966, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.177, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.444, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.829, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.692, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.606, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.351, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.675, 70.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.055, 70.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.136, 70.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.634, 70.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.789, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.542, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 71.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.486, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.733, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.844, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.453, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.173, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.641, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.195, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -37.466, 83.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.175, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 71.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 71.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.638, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.608, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.683, 71.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 71.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 71.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 71.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 71.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.514, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.524, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.411, 72.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.441, 72.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.56, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.094, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.398, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.545, 72.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.598, 72.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.425, 72.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.238, 72.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 73.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.233, 73.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.403, 73.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.713, 72.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.867, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.913, 72.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 72.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 72.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 72.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17, 72.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 72.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.234, 72.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 72.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.155, 72.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 72.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.175, 72.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 72.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 72.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.903, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 72.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.878, 72.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.865, 72.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.828, 72.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.642, 72.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87, 72.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.828, 72.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 72.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.977, 72.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01, 72.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.817, 72.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.811, 72.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.828, 72.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.832, 72.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.69, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 72.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.73, 72.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75, 72.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.751, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.652, 72.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.777, 72.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.709, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.831, 72.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.807, 72.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 72.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.733, 72.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.881, 72.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 72.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.874, 72.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 72.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 72.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.124, 72.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.053, 72.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.764, 72.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.662, 72.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 72.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 72.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 72.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.073, 72.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 72.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.013, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.802, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.167, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.853, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.047, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.527, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.412, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 71.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.606, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 71.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 71.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.138, 71.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.183, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01, 71.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.259, 71.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.142, 71.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.127, 71.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.369, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 71.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 71.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 71.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 71.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.486, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 71.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 71.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.379, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.444, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 71.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 71.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.331, 71.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 71.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.551, 71.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.175, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 71.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.218, 71.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.174, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 71.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.027, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.08, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 71.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 71.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 71.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 71.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 71.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.889, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.869, 71.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.706, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 71.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.001, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.011, 71.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 71.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.999, 71.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 71.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 71.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 71.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.792, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.001, 71.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 71.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.29, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 71.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 71.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.956, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.991, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 71.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 71.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 71.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.968, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 71.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 71.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.903, 71.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.751, 71.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 70.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 70.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.444, 70.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 70.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 70.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 70.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 70.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 70.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 70.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.271, 70.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 70.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 70.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 70.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 70.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 70.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 70.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.657, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.197, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.154, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.09, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 69.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.941, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.852, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.96, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.919, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.921, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.222, 69.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.633, 69.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.474, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.61, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.681, 69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69, 69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.353, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.328, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.344, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.417, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.76, 68.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.295, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.712, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51, 68.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.763, 68.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77, 68.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.372, 68.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.693, 68.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.179, 67.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 68.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.467, 67.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.299, 68.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.209, 68.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.507, 68.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.75, 68.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.881, 68.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05, 68.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.175, 68.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.923, 68.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.974, 68.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27, 68.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.259, 68.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.302, 68.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.093, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.545, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.393, 69.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.405, 68.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.457, 68.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.429, 68.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38, 68.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.336, 68.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.341, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.525, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.474, 69.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.596, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.792, 69.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.793, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.066, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.827, 69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.978, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.687, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.708, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.372, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.141, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.315, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.384, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.49, 70.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.555, 70.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.552, 70.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.604, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.81, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.368, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.851, 70.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.408, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.395, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.494, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.305, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.707, 70.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.738, 70.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.704, 70.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.907, 70.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.008, 70.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.085, 70.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13, 70.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22, 70.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.325, 70.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.246, 70.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.363, 70.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.415, 70.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.518, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.569, 70.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.462, 70.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.456, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.431, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.436, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.487, 70.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.386, 70.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.422, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.516, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.509, 70.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.343, 70.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.415, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.452, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.391, 70.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.381, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.456, 70.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.424, 70.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.405, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.669, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.338, 70.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.455, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.348, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.376, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.406, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.398, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47, 70.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.367, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.367, 70.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.086, 70.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.447, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.321, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.273, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.287, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.333, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.321, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.407, 70.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.973, 70.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.352, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.025, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.138, 70.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.405, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.494, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.052, 70.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.264, 70.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.386, 70.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.35, 70.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.373, 70.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.364, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.009, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.454, 70.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.341, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.338, 70.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.374, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.309, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.357, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.502, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.915, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.803, 70.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.657, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.206, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.779, 70.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.539, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.539, 70.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.652, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 71.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.129, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.055, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.384, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 71.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.101, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.093, 71.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.028, 71.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.011, 71.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.619, 71.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.981, 71.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.032, 71.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.084, 71.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.995, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.201, 71.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07, 71.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.041, 71.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.139, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.887, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.996, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.037, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 72.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 72.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.013, 71.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.891, 72.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.121, 72.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.849, 72.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 72.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 72.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.837, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.617, 72.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.41, 72.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 72.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.989, 72.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 72.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.985, 72.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.023, 71.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.719, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.626, 70.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.415, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.452, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.434, 71.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.433, 71.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.433, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.491, 71.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.501, 71.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.424, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.474, 71.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.413, 71.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.432, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.454, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.372, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.429, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.494, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.393, 71.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.523, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.473, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.518, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.539, 71.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.31, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.386, 71.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.369, 71.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.308, 71.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.278, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.387, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.667, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.481, 71.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.444, 71.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.419, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.547, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.439, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.443, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.413, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.421, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.464, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.529, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.444, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.461, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.368, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.082, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.372, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.465, 71.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.363, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.401, 71.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.501, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.546, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.368, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.441, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.478, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.489, 71.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.485, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.199, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.341, 71.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.385, 71.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.484, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.496, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.462, 71.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.342, 71.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.783, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.416, 71.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.202, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.399, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.578, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.137, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.355, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.995, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 71.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.086, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.701, 71.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.136, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94, 71.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 71.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 71.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.151, 71.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.543, 71.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 71.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.588, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94, 71.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.902, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.395, 70.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.888, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 70.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.156, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 70.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 70.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.736, 70.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.867, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.88, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 70.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.755, 70.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 70.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 70.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.099, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.09, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.143, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.98, 70.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.024, 70.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.031, 71.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 71.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 70.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 70.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 70.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 70.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 70.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 70.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.776, 70.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.758, 70.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 70.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 71.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.073, 70.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.987, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.973, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.937, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.064, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.985, 71.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.964, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 71.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 71.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 71.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.956, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.956, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.954, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 70.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 71.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.156, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.024, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.004, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 70.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 71.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.102, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 71.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.002, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 70.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 70.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 71.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.934, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.204, 71.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 71.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.531, 71.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.405, 71.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.308, 71.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 71.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.466, 70.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 71.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.359, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 71.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.323, 71.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 71.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.154, 71.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.148, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 71.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 71.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 71.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.934, 71.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.943, 71.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 71.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.243, 71.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.335, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.764, 70.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.786, 70.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.674, 70.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.495, 70.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.496, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.126, 70.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.831, 70.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.031, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.928, 70.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.462, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.307, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.952, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.866, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.46, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.388, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.796, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.16, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.096, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.882, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.62, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.806, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.123, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.073, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.378, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.496, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.3, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.146, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.928, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.002, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.949, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.928, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.872, 69.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.74, 68.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.681, 68.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 68.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 68.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.601, 68.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.43, 68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 68.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 68.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.39, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.432, 66.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.447, 66.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.526, 66.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.192, 66.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.395, 66.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.011, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.247, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.205, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.042, 66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.408, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.418, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.377, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.336, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.289, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.334, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.304, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.359, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.382, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.184, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.394, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.391, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.266, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.433, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.272, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.154, 65.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.972, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.8, 65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.131, 65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.845, 64.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 64.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.795, 64.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.902, 64.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.833, 64.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.296, 64.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.614, 64.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.347, 64.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.267, 64.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.9, 64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.75, 64.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.619, 64.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.733, 64.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.958, 63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.829, 63.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.343, 63.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.465, 63.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.277, 63.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.271, 63.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.321, 63.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 63.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.389, 63.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.3, 63.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.235, 63.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.241, 63.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.289, 63.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.399, 63.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.105, 63.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.352, 63.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.394, 63.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.337, 63.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.5, 63.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.488, 63.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.625, 63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.182, 63.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.121, 63.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.218, 63.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.349, 63.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.221, 63.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.446, 63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.068, 63.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.233, 63.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.296, 63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.489, 63.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.527, 63.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.509, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.784, 63.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.447, 63.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.462, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 63.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.472, 63.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.581, 63.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.864, 63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.6, 63.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.859, 63.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.878, 63.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.088, 63.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.952, 63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.032, 63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.097, 63.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.019, 63.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.906, 63.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.776, 63.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.829, 63.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.567, 63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.662, 63.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.313, 63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.802, 63.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.786, 64.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.066, 64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.944, 73.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.913, 63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.079, 63.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.043, 63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.685, 63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.761, 63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.822, 63.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.809, 63.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.91, 63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.838, 63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.393, 64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.241, 64.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.162, 64.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.091, 64.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.15, 64.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.215, 64.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.488, 64.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.693, 64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.206, 63.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.153, 63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.907, 63.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.024, 63.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.119, 63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.015, 63.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.719, 64.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.8, 64.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.636, 64.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.657, 64.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.033, 64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.323, 64.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.803, 63.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.018, 64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.998, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.074, 64.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.796, 64.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.962, 64.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.965, 64.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.946, 64.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.989, 64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.64, 63.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.437, 63.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.405, 63.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.83, 63.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.851, 63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.86, 63.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.003, 63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.912, 63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.152, 63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.484, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.543, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.674, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.667, 63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.678, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.811, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.918, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.823, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.916, 63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.565, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.812, 63.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.406, 63.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.007, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.919, 62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.132, 62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.975, 63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.81, 62.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.103, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.009, 62.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.067, 62.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.217, 63.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.816, 63.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.794, 63.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.544, 63.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.692, 63.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.649, 63.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.759, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.789, 63.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.796, 63.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.832, 63.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.843, 63.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.665, 63.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.821, 63.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.682, 63.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.792, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.635, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.509, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 62.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.295, 63.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.161, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.988, 62.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.022, 64.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.083, 62.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.641, 64.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.483, 62.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.794, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.162, 63.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.874, 63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.264, 61.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.67, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.326, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.595, 62.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.58, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.647, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.646, 62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.214, 62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.135, 63.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.558, 63.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.541, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.578, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.823, 62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.42, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.524, 63.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.76, 62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.05, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.675, 62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.392, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.817, 63.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.688, 63.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.05, 63.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.774, 63.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.748, 63.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.796, 63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.307, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.487, 63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.995, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.074, 63.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.137, 63.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.22, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.287, 63.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.57, 63.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.933, 63.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.318, 63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.945, 63.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.249, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.262, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.295, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.936, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.199, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.606, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.745, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.703, 62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.809, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.082, 57.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.754, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.763, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.044, 62.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.052, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.216, 62.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.423, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.502, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.804, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 62.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.806, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.9, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.771, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.625, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.524, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.976, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 62.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.756, 62.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.514, 62.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.386, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 62.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.27, 62.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.626, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.258, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.419, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.467, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.225, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.215, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.171, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.726, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.686, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.609, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.571, 62.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.053, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.355, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.18, 62.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.151, 62.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.148, 62.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.258, 61.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.828, 61.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.842, 61.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.796, 61.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.875, 61.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.931, 61.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.111, 61.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.37, 61.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.166, 61.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.241, 61.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.378, 61.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.62, 61.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.774, 61.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 61.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.287, 60.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.215, 60.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.307, 60.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.675, 61.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.883, 61.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.919, 61.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.072, 61.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.004, 61.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.815, 61.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.869, 61.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.192, 61.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.386, 61.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.449, 61.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.338, 61.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.43, 61.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.538, 61.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.581, 61.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.624, 61.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.71, 61.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.532, 61.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.639, 61.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.765, 61.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.757, 61.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.816, 61.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.34, 61.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.349, 61.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.345, 61.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.242, 61.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.237, 61.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.209, 61.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.322, 61.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.192, 61.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.285, 61.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.993, 61.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.976, 61.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.787, 61.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.826, 61.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.082, 61.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.78, 61.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.028, 61.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.85, 61.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.19, 61.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.012, 61.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.497, 61.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.97, 61.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.145, 61.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.929, 61.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.267, 61.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.28, 61.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.409, 61.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.382, 61.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.323, 61.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.757, 61.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.672, 61.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.275, 61.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.978, 61.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.898, 62.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 62.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.178, 62.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 62.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.11, 61.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.828, 62.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.97, 62.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.888, 62.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 62.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.692, 62.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.825, 62.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.886, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.928, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.215, 62.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.226, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.411, 62.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.898, 62.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.166, 62.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.163, 62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.371, 62.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.272, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.202, 62.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.179, 62.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.154, 62.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.21, 62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.221, 62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.259, 62.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.281, 62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.223, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.515, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.71, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.672, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.018, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.249, 62.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.269, 61.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 61.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.323, 61.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 61.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 61.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.49, 61.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.772, 61.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.399, 61.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.549, 61.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.748, 61.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.829, 61.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.926, 61.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.639, 61.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.484, 61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.41, 61.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.752, 62.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.713, 62.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.802, 62.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.705, 62.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.901, 62.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 62.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 62.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.304, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.325, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 62.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.229, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.226, 62.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 62.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 62.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.719, 62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.287, 62.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.262, 62.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.289, 62.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.327, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.34, 62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.36, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.369, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.342, 62.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.287, 62.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.273, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.329, 62.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.375, 62.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 62.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.367, 62.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.36, 62.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.412, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.414, 62.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.364, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.303, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.542, 62.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 62.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.264, 62.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.289, 62.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.326, 62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 62.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 62.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.213, 62.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.193, 62.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 62.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.2, 62.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 62.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 62.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 62.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.05, 62.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 62.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.984, 62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.586, 62.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.051, 62.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 62.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.941, 62.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 62.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 62.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.115, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.002, 62.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.098, 62.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 62.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 62.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 62.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 62.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.251, 62.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 62.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.13, 62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.052, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.119, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.815, 62.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.254, 62.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 62.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 62.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.181, 62.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.113, 62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 62.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.219, 62.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.242, 62.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.257, 62.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 62.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.236, 62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 62.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.29, 62.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 62.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.177, 62.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.172, 62.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 62.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 62.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.441, 62.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 61.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.561, 61.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.565, 62.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 62.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.511, 62.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.573, 62.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.653, 62.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.6, 62.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.775, 62.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.674, 62.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.764, 62.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.748, 62.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.781, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.786, 62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.746, 62.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.766, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.758, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.8, 62.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.842, 62.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.873, 62.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.809, 62.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.815, 62.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.773, 62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.945, 62.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.78, 62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.838, 62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 62.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.861, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.857, 62.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.828, 62.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.827, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.843, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.886, 62.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.765, 62.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.763, 62.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.807, 62.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.822, 62.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.871, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.754, 62.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.776, 62.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.725, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.58, 61.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.519, 62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.706, 62.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.562, 62.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.721, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.714, 62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.699, 62.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.655, 62.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.717, 62.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.834, 62.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.71, 62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.689, 62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.742, 62.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.806, 62.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.827, 62.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 62.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.759, 62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.633, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.788, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.724, 62.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.617, 62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.763, 62.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.735, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.743, 62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.661, 62.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.866, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.805, 62.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.779, 62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.76, 62.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.86, 62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.854, 62.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.848, 62.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.84, 62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.871, 62.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.782, 62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.83, 62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.743, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.762, 62.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.726, 62.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.622, 62.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.642, 62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.366, 62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 62.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.239, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.685, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.47, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.461, 62.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.411, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.422, 62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.537, 62.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.516, 62.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.527, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.481, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.401, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.405, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.46, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.436, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.566, 62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.49, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.365, 62.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.363, 62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.383, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.322, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.194, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.102, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.168, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.05, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.27, 62.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.017, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.034, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.038, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.122, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.11, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.996, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.97, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.986, 62.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.77, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.892, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.904, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.925, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.986, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.139, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.014, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.935, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.58, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.956, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.924, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.9, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.847, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.73, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.783, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.722, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.838, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.731, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.774, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.721, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.56, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.433, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.393, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.434, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.475, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.458, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.372, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.387, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.26, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.364, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.24, 62.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.187, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.369, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.38, 62.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.397, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.395, 62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.264, 62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.256, 62.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.239, 62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.322, 62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.312, 62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.332, 62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.411, 62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.382, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.373, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.212, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.031, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.097, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.255, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.044, 62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.155, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.174, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.239, 62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.248, 62.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.247, 62.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.22, 62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.093, 62.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.318, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.274, 62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.316, 62.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.388, 62.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.409, 62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.387, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.338, 62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.408, 63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.559, 63.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.43, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.365, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.479, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.714, 63.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.707, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.57, 62.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.765, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.167, 63.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.15, 63.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.128, 63.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.083, 63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.081, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.132, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.155, 63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.12, 63.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.125, 63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 63.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.134, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.148, 63.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.015, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.986, 63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.942, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.921, 63.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.874, 63.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.887, 63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.177, 63.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.865, 63.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.901, 63.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.932, 63.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.855, 63.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.959, 63.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.969, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.949, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.914, 63.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.928, 63.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.975, 63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.059, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.026, 63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.878, 63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 63.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.885, 63.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.054, 63.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.21, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.986, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.016, 63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.05, 63.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.006, 63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.041, 63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.085, 63.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.963, 63.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.107, 63.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.005, 63.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.98, 63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.028, 63.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.01, 63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.934, 63.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.116, 63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.922, 63.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.921, 63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.899, 63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.876, 63.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.883, 63.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.927, 63.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.913, 63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.947, 63.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.016, 63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.007, 63.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.988, 63.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.002, 63.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.965, 63.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.977, 63.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 63.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.971, 63.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 63.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.906, 63.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.967, 63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 63.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.984, 63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.956, 63.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.037, 63.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 63.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.976, 63.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.921, 63.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.862, 63.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.971, 63.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.019, 63.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.1, 63.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.092, 63.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.223, 63.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.665, 63.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.403, 63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.5, 63.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.554, 63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.652, 63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.692, 63.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.929, 63.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.93, 64.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.951, 64.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.854, 64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.848, 64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.88, 64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.891, 64.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 64.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.985, 64.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.178, 64.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.553, 65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.187, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 69.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.187, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 69.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.287, 69.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.195, 69.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.276, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.205, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.254, 69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.397, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.163, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.292, 69.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.305, 69.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.062, 68.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.262, 68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.441, 69.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 68.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 68.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 68.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 68.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.164, 68.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.492, 68.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.117, 68.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 68.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.019, 68.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 68.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.11, 68.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 68.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.763, 68.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.288, 68.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 68.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 68.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.047, 68.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 68.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.06, 68.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.956, 68.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 68.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 68.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 68.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.107, 68.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 68.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.352, 59.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.071, 68.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.032, 68.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 68.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 68.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 68.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 68.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.998, 68.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.882, 68.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.871, 68.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.709, 68.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.791, 68.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 68.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.627, 68.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.63, 67.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.561, 67.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.703, 67.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.757, 67.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.649, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.917, 68.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.885, 67.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.938, 67.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.732, 67.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.507, 67.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.739, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 67.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.755, 67.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.365, 67.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 67.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.463, 67.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.505, 67.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.512, 67.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.532, 67.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.624, 67.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 68.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.794, 67.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.004, 68.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.823, 68.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.836, 68.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.68, 68.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 68.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.914, 68.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.967, 68.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.968, 68.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 68.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.951, 68.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.225, 68.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.211, 68.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.608, 68.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.899, 68.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.311, 68.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 68.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.98, 68.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.587, 68.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 68.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.085, 68.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 68.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.091, 68.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 68.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.476, 68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.024, 68.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.911, 68.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 68.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 68.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.814, 68.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 68.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 68.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.951, 68.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 68.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.018, 68.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 68.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 68.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.524, 68.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.508, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.504, 69.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.813, 68.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.506, 69.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 69.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.145, 69.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.106, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.251, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.652, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.309, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.266, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.363, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.217, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.79, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.799, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.947, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.932, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.496, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.735, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.522, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.234, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.204, 69.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.457, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.67, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.719, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.812, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.949, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.107, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.113, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.753, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.042, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.593, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.022, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.407, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.394, 70.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.945, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.005, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.141, 70.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.098, 70.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.091, 70.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.808, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 70.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.668, 70.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.052, 70.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.542, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.567, 71.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.612, 71.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.692, 71.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.782, 71.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.915, 71.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 71.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.339, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.723, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.734, 71.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.975, 71.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.145, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 71.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.867, 71.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.897, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.939, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.969, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.822, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.184, 71.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.319, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 71.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 72.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.222, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.547, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.323, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 72.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.772, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.451, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.513, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.264, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.642, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 72.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.248, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.222, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 72.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 72.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.991, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.812, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.754, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 71.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.558, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.727, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.47, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.719, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 71.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.395, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 71.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 71.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 71.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.426, 71.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 71.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.398, 71.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.401, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.531, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.534, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 71.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 71.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.241, 71.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 71.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.536, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 71.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.313, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.301, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.847, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 71.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.269, 71.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.398, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 71.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.495, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.507, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.459, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.411, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.459, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.587, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.544, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.968, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.849, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.307, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.177, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.235, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 71.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.359, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.221, 71.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 71.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.206, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 71.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.209, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.257, 71.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.452, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.656, 71.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.939, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.323, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.383, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.275, 71.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.103, 71.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.024, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.043, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 71.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.093, 71.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 71.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.177, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.221, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.195, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.342, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 71.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.103, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.392, 71.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 71.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.849, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 71.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.229, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.241, 71.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 71.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.267, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.404, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.111, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.994, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.886, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 71.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.735, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.821, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.864, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 72.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 72.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 70.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.263, 72.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81, 72.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.448, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.235, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.479, 72.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.743, 72.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.977, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.379, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.75, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 72.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.723, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.975, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 72.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.552, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 71.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.373, 71.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.273, 71.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 71.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.454, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.421, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.308, 71.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.291, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.869, 71.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.355, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.44, 71.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 71.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.472, 71.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.559, 71.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33, 71.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.611, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.821, 71.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.832, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.311, 71.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.856, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.793, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.048, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.832, 71.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.99, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.794, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.08, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.725, 71.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.037, 71.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.072, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.118, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.245, 71.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.902, 71.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.339, 71.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.765, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.938, 71.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.742, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.974, 71.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.929, 71.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.384, 71.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.393, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.488, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.184, 71.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 71.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 71.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.742, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 71.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 71.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.738, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 71.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.697, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 71.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 71.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.704, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 71.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.786, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.174, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.781, 71.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.538, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.718, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.289, 71.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.118, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.496, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 71.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 71.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.031, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.946, 71.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.992, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 71.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.585, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.385, 72.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.411, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.736, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.789, 71.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.008, 71.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.867, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.386, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.855, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.829, 71.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.918, 71.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.853, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 71.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.398, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93, 71.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 71.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 71.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 71.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.138, 71.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.157, 71.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 71.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 71.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.333, 71.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 71.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 71.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.267, 71.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.413, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.369, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 71.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.405, 71.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 70.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 71.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.458, 71.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 71.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.427, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.149, 71.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.752, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.685, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.46, 71.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 71.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.753, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 71.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 71.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.531, 70.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.575, 70.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 70.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 70.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 70.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 70.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.501, 70.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 70.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 70.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.932, 70.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 70.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.029, 70.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.257, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96, 69.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.39, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.786, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.433, 70.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.609, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.568, 70.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.707, 70.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.628, 70.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.561, 70.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.59, 70.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 70.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 70.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.744, 70.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.818, 70.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.696, 70.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 70.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 70.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.698, 70.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93, 70.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 70.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.247, 70.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.922, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.106, 70.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.152, 70.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 70.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.411, 70.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 70.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 71.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.119, 70.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.144, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.417, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.424, 71.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.169, 71.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 71.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.23, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.114, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 71.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 71.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.095, 71.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 71.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.074, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.063, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.174, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 71.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 70.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.008, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.926, 70.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.765, 70.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.233, 71.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 71.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9, 71.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.979, 71.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 71.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.031, 71.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 71.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 71.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.035, 71.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 71.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.644, 71.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 71.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.165, 71.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 71.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.829, 71.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 71.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 71.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.126, 71.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 71.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 71.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.973, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.018, 71.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.036, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 70.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.951, 70.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.559, 71.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 70.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 70.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15, 70.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 70.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 70.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.14, 70.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.119, 70.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 70.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.027, 70.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 70.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.212, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 71.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 70.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 70.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.006, 70.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.738, 70.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 70.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 70.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.573, 70.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.583, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.885, 70.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.632, 70.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 70.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.737, 70.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.702, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 70.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 70.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5, 70.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 70.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 70.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.529, 70.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 70.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.434, 70.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 70.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 70.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.647, 70.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 70.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.589, 70.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 70.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.545, 70.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 70.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.489, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.433, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.767, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.195, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.652, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.386, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.362, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.499, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.574, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.491, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.985, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.706, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.789, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.764, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.511, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.674, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.276, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.231, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.977, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 69.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.003, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.003, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.888, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.904, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.937, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.322, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.789, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.853, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.677, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.817, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.755, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.32, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.097, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.174, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.036, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.886, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.952, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.954, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.087, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.084, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.966, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.492, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.582, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.724, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.248, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.349, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.346, 69.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.184, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.191, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.093, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.124, 69.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.133, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.719, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.657, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.314, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.42, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.923, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.492, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.852, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.815, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.065, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.158, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.138, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.323, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.372, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.237, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.41, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.389, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.377, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.501, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.378, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.422, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.046, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.93, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.844, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.816, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.825, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.788, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.68, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.686, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.543, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.603, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.098, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.942, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.706, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.603, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.667, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.626, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.507, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.566, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.56, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.704, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.75, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.88, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.075, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.136, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.21, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.294, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.351, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.359, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.388, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.522, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.435, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.513, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.615, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.652, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.025, 69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.722, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.742, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.72, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.774, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.781, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.613, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.568, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.567, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.631, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.389, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.431, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.628, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.576, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.596, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.443, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.307, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.392, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.29, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.963, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.633, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.388, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.66, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.706, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.763, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.607, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.649, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.671, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.621, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.637, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.397, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.637, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.634, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.487, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.555, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.798, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.702, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.701, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.715, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.686, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.703, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.644, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.666, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.655, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.518, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.717, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.667, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.595, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.482, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.636, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.624, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.608, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.648, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.588, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.219, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.524, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.618, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.593, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.597, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.585, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.921, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.74, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.215, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.523, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.59, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.479, 70.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.445, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.58, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.799, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.546, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.784, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.954, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.678, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.795, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.283, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.638, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.11, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.541, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.622, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.844, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.544, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.888, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.734, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.58, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.632, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.557, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.513, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.527, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.511, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.215, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.536, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.565, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.504, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.642, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.577, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.542, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.666, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.551, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.283, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.502, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.565, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.379, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.408, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.457, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.591, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.78, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.515, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.526, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.512, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.484, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.519, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.542, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.678, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.539, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.539, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.663, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.674, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.646, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.676, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.0, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.488, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.636, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.647, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.722, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.724, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.574, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.595, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.666, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.589, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.612, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.466, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.671, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.595, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.579, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.55, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.655, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.699, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.709, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.638, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.736, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.784, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.616, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.559, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.597, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.916, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.679, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.631, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.589, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.473, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.654, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.367, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.589, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.952, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.526, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.819, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.225, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.274, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.459, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.242, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.373, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.369, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.336, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.362, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.698, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.502, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.307, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.249, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.665, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.162, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.075, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.031, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.161, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.215, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.139, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.286, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.638, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.361, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.462, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.627, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.651, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.605, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.604, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.552, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.625, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.684, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.705, 69.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.189, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.779, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.198, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.72, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.785, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.661, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.639, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.328, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.617, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.626, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.651, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.646, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.649, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.309, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.621, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.606, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.645, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.63, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.383, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.709, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.64, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.456, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.876, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.75, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.553, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.433, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.56, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.66, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.623, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.812, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.723, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.094, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.779, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.308, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 69.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.667, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.164, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.728, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.737, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.745, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.505, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.044, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.577, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.972, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.519, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.119, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.652, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.401, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.518, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.044, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.585, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.871, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.918, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.207, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.368, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.404, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.309, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.318, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.302, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.352, 69.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.204, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.383, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.482, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.601, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.637, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.649, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.003, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.829, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.123, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.102, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.218, 69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.903, 69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.604, 69.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.657, 69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.815, 69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.651, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.653, 69.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17, 69.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.004, 69.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.366, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.462, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.467, 69.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.807, 69.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.823, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.798, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.824, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.907, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.917, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 69.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.435, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.445, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.832, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.819, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.756, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.956, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 69.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.924, 69.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.974, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 69.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.877, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.642, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.847, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.719, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.796, 69.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.898, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.376, 69.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.827, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.882, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.784, 69.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.078, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.097, 69.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.798, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.729, 69.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.292, 69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.777, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.781, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 69.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.696, 69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.734, 69.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.835, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.866, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.812, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.453, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.781, 69.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.272, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.847, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.928, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.844, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.946, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.991, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.46, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.853, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.008, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.53, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.827, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.99, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 69.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.987, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.36, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.925, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.895, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.924, 69.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.931, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.922, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.818, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.855, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.173, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.967, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.903, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.918, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.953, 69.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.918, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.088, 69.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.948, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.434, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.541, 68.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.998, 69.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 69.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.802, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.753, 69.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.31, 69.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 69.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.101, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.773, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.706, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.902, 69.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.819, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.783, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.692, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.846, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 69.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.777, 69.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.156, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.828, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.005, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.84, 69.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.39, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.281, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.994, 68.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.518, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.822, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.837, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.762, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.058, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.932, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.874, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.847, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.822, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.399, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.883, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.866, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.399, 68.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.008, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.746, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.889, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.866, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.636, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.817, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.898, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.888, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.838, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.895, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.596, 69.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.899, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.308, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.819, 69.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.722, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.036, 69.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.877, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.276, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.244, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.983, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.956, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.758, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.769, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.778, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.325, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.75, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.821, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.914, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.922, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.979, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.83, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.897, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.911, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.901, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.019, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.291, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.746, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.433, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.557, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.643, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.101, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.622, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.731, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.677, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.143, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.986, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.694, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.798, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.812, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.979, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.476, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.241, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.814, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 70.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.571, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.795, 72.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.548, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.204, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.589, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.27, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03, 70.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.956, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.629, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.784, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.919, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.173, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.777, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.348, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.246, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.116, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.455, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.108, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.96, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.809, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.804, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.164, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 69.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.485, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.966, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.246, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.324, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 70.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.113, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.14, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.234, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.312, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.217, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.017, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.047, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.015, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.049, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.192, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.055, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.512, 70.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.263, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.062, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.261, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.895, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.764, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.958, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.821, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.06, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.976, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.084, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.948, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.691, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.949, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.728, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.921, 70.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.943, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.799, 70.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 70.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.908, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 70.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.901, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.663, 70.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 70.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.744, 70.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57, 70.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.812, 70.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.975, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.396, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.956, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.473, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.683, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.149, 70.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.995, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.898, 70.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.161, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.972, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.082, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.112, 69.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.917, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.403, 67.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.017, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.414, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.051, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.338, 68.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.219, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.915, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.911, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.834, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 68.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.579, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.856, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.031, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.823, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.049, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.056, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.072, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.189, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.492, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.989, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.925, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.902, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.623, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.517, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.006, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.772, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.434, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.775, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.897, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.705, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.922, 70.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.641, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.813, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.033, 70.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.917, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.047, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.012, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.076, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.203, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.978, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.902, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.869, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.998, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.994, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.529, 70.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.336, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.851, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.003, 70.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.853, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.708, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.33, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.007, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.102, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.316, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.761, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.769, 70.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 70.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.049, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.628, 70.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.137, 70.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.228, 70.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.022, 70.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.939, 70.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 70.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.974, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.911, 70.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.836, 70.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.892, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86, 70.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.944, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93, 70.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.878, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.612, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.614, 70.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.287, 70.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.585, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.908, 70.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.319, 70.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.529, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.886, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.676, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.911, 70.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.541, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.046, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.186, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.003, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.47, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.104, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.931, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.88, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.761, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.938, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.789, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.723, 69.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.69, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.737, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.377, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.117, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.064, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.972, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.496, 68.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.431, 68.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.103, 68.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.188, 68.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.904, 68.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.032, 67.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.921, 68.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.022, 67.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.567, 66.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.551, 66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 66.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.755, 66.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.768, 66.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.848, 66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.833, 66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.922, 66.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.799, 66.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.237, 65.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.192, 65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.137, 65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.497, 65.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.379, 65.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.163, 65.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.124, 65.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.285, 64.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.011, 65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.806, 65.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.96, 65.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.247, 65.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.544, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.701, 65.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.199, 65.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.947, 65.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.985, 65.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 65.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.079, 65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.439, 65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.278, 65.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.601, 65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.317, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.16, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.561, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.731, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.674, 65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.666, 65.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.704, 65.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.09, 65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.618, 65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.443, 65.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.509, 65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.536, 65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.635, 65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.782, 65.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.595, 64.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.873, 64.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.774, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.626, 64.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.512, 64.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.35, 64.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.453, 64.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.376, 64.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.289, 64.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.107, 64.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 64.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.297, 63.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.106, 63.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.865, 64.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.073, 63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.987, 64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.628, 64.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.742, 64.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.742, 64.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.664, 64.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.233, 64.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.748, 64.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.429, 64.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.329, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.323, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.066, 64.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.34, 64.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.338, 64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.252, 63.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.441, 63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.601, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.851, 63.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.889, 63.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.028, 63.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.272, 63.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.739, 63.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.048, 63.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.582, 63.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.731, 63.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.001, 63.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.818, 63.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.968, 63.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 63.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.656, 63.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.95, 63.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.843, 63.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.864, 63.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.695, 63.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.653, 63.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.84, 63.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.556, 63.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.742, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.73, 63.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.664, 63.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.113, 63.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.577, 63.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.502, 63.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.72, 63.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.55, 63.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.619, 63.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.261, 63.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.779, 63.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.026, 63.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.312, 63.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.455, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.427, 63.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.418, 63.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.374, 63.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.227, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.897, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.735, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.407, 63.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.364, 63.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.266, 63.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.967, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.989, 63.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.943, 63.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.747, 63.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.688, 63.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.343, 63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.971, 63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.119, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.33, 63.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -22.665, 53.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.386, 63.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.291, 63.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.238, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.223, 63.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.161, 63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.167, 63.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.12, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.971, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.985, 63.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.129, 63.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.088, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.989, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.126, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.201, 63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.256, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.317, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.212, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.905, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.881, 63.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.914, 63.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.406, 62.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.846, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.693, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.765, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.854, 62.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.732, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.853, 62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.479, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.662, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.606, 62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.96, 62.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.627, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.671, 62.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.542, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.643, 62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.018, 62.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.488, 63.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.599, 62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.091, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.107, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.997, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.046, 62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.98, 62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.939, 62.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.309, 62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.937, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.911, 62.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.914, 62.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.89, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.864, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.808, 63.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.707, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.329, 62.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.36, 62.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.311, 62.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.27, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.145, 62.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.443, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.242, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.487, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.218, 62.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.304, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.368, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.36, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.48, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.499, 62.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.641, 62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.529, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.63, 63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.659, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.724, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.64, 62.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.673, 63.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.824, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.044, 63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.148, 63.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.161, 63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.95, 63.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.987, 63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.952, 63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.093, 63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.941, 63.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.053, 63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.026, 63.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.859, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.821, 63.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.655, 63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.671, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.689, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.696, 62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.634, 62.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.516, 63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.766, 62.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.651, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.743, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.627, 62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.543, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.545, 62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.579, 62.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.919, 63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.019, 63.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.571, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.85, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.911, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.006, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.824, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.86, 63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.456, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.533, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.902, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.598, 62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.615, 62.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.228, 62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.975, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.6, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.358, 63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.929, 62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.208, 63.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.988, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.858, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.876, 63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.995, 63.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.089, 63.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.965, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.859, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.829, 63.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.945, 63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.116, 62.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.741, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.633, 63.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.812, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.697, 62.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.038, 62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.029, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.067, 63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.329, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.374, 63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.265, 63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.189, 63.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.102, 63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.186, 63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.336, 63.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.756, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.791, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.893, 62.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.806, 62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.834, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.742, 62.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.791, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.739, 62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.793, 62.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.739, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.697, 62.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.779, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.834, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.539, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.463, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.568, 62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.507, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.512, 62.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.47, 62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.514, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.466, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.502, 62.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.447, 63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.355, 62.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.314, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.381, 62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.414, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.655, 62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.843, 62.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.794, 62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.549, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.867, 62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.969, 62.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.458, 63.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.849, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.727, 62.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.016, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.25, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.49, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.146, 63.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.161, 63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.185, 63.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.199, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.159, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.685, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.097, 62.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.968, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.904, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.198, 63.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.05, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.094, 63.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.638, 63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.897, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.355, 63.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.508, 63.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.535, 63.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.717, 63.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.02, 63.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.78, 63.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.189, 63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.691, 63.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.607, 63.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.719, 63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.749, 63.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.758, 63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.219, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.254, 63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.441, 63.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.231, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.071, 63.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.548, 63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.764, 63.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.629, 63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.552, 63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.559, 63.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.643, 63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.421, 63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.77, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.476, 63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.475, 63.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.09, 63.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.785, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.851, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.939, 63.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.792, 63.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.056, 63.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.178, 63.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.844, 63.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.885, 63.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.791, 63.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.215, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.411, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.443, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.555, 62.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.626, 62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.585, 62.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.712, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.822, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.713, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.11, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.382, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.861, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.71, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.689, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.72, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.723, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.195, 62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.928, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.944, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.993, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.927, 62.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.904, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.93, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.807, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.815, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.834, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.821, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.84, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.868, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.739, 62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.9, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.768, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.019, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.738, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.867, 62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.739, 62.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.899, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.88, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.198, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.883, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.882, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.834, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.85, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.707, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.644, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.487, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.003, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.829, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.015, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.98, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.886, 62.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.497, 62.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.398, 62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.951, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.031, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.228, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.211, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.941, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.849, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.798, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.743, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.659, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.127, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.88, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.912, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.276, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.995, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.976, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.92, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.066, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.928, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.061, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.875, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.333, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.404, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.439, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.409, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.625, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.895, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.824, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.739, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.797, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.253, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.334, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.375, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.405, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.91, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.374, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.552, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.958, 62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.386, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.017, 62.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.377, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.332, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.417, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.385, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.375, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.351, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.72, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.431, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.063, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.383, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.347, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.164, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.489, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.33, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.355, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.279, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.25, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.308, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.185, 62.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.325, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.34, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.349, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.213, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.427, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.427, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.487, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.233, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.15, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.195, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.068, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.08, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.939, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.131, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.526, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.936, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.954, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.923, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.958, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.325, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.853, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.73, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.95, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.974, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.958, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.935, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.954, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.1, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.207, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.225, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.949, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.286, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.155, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.288, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.018, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.951, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.911, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.665, 62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.597, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.01, 62.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.973, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.216, 62.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.12, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.276, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.245, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.459, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.132, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.024, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.968, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.752, 62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.174, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.235, 62.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.459, 62.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.572, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.753, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.209, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.578, 62.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.008, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.831, 62.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.754, 62.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.823, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.527, 62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.519, 62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.875, 62.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.266, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.115, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.208, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.141, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.346, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.418, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.193, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.319, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.981, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.031, 62.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.227, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.379, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.374, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.642, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.204, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.553, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.324, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.376, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.305, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 62.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.251, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.407, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.472, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.629, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.279, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.131, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.343, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.332, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.336, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.3, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.29, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.432, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.097, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.273, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.346, 62.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.246, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.313, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.09, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.226, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.168, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.207, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.18, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.266, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.147, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.04, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.164, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.752, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.173, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.406, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.741, 62.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.229, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.283, 62.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.231, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.209, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.15, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.188, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.06, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.098, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.061, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.84, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.972, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.047, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.008, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.214, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.026, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.261, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.995, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.995, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.107, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.235, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.147, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.209, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.122, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.394, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.376, 62.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.157, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.964, 62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.258, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.192, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.189, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.195, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.252, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.228, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.165, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.191, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.131, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.093, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.129, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.11, 62.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.254, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.116, 62.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.763, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.68, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.775, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.69, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.6, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.483, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.189, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.12, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.467, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.643, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.624, 62.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.543, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.532, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.728, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.465, 62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.523, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.489, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.454, 62.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.034, 62.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.165, 62.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.71, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.877, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.281, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.427, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.135, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.995, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.968, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.961, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.949, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.001, 62.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.076, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.062, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.017, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.314, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.345, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.364, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.507, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.254, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.307, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.09, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.085, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.17, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.207, 62.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.98, 62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.034, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.051, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.03, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.188, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.179, 62.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.886, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.871, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.697, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.706, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.685, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.645, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.663, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.286, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.157, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.768, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.449, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.608, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.458, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.614, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.018, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.387, 62.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.421, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.383, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.416, 62.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.854, 62.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.343, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.35, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.622, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.903, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.906, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.037, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.34, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.595, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.188, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.129, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.384, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.688, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.454, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.477, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.392, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.482, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.609, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.972, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.594, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.623, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.759, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.091, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.776, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.542, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.755, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.617, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.687, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.689, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.375, 62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.309, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.181, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.801, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.884, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.812, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.818, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.952, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.711, 62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.808, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.917, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.975, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.882, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.979, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.063, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.693, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.623, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.08, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.833, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.972, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.74, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.93, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.242, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.227, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.195, 62.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.98, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.885, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.631, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.236, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.928, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.819, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.723, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.331, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.319, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.52, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.333, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.361, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.386, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.269, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.942, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.358, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.223, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.94, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.895, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.919, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.954, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.865, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.82, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.898, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.101, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.763, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.765, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.732, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.905, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.857, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.034, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.817, 62.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.736, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.815, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.839, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.121, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.576, 62.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.91, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.78, 62.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.015, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.826, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.912, 62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.629, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.073, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.081, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.983, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.084, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.015, 62.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.143, 62.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.012, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.139, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.157, 62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.138, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.911, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.09, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.066, 62.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.01, 62.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.653, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.494, 62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.808, 62.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.721, 62.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.577, 62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.682, 62.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.544, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.544, 62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.466, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.434, 62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.424, 62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.151, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.539, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.051, 62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.145, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.094, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.871, 62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.647, 63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.703, 63.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.641, 63.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.443, 63.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.339, 63.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.363, 63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.538, 63.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.018, 63.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.151, 63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.156, 63.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.1, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.996, 63.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.001, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.901, 63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.717, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.8, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.83, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.97, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.718, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.017, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.052, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.944, 62.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.503, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.136, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.558, 62.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.587, 62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.567, 62.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.565, 62.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.732, 62.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.891, 62.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.06, 62.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.128, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.086, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.086, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.756, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.222, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.675, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.622, 62.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.68, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.673, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.876, 63.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.974, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.872, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.188, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.396, 62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.308, 62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.324, 62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.357, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.356, 62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.495, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.308, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.264, 62.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.298, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.149, 62.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.362, 62.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.338, 62.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.443, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.341, 62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.224, 62.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.229, 62.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.413, 62.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.714, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.777, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.737, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.671, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.736, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.56, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.551, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.519, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.661, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.469, 62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.813, 62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.993, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.385, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.864, 62.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.809, 61.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.578, 61.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.777, 61.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.743, 61.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.839, 61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.105, 61.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.656, 61.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.986, 61.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.519, 61.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.676, 61.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.465, 61.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.741, 61.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.769, 61.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.628, 61.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.62, 61.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.527, 61.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.873, 61.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.34, 61.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.219, 61.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.871, 60.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.72, 60.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.207, 60.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.2, 60.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.988, 60.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.702, 60.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.627, 60.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.73, 60.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.774, 60.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.706, 60.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.393, 60.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 61.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.394, 61.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.645, 61.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.111, 61.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.455, 61.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.128, 60.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.467, 61.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.9, 61.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.715, 61.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.716, 61.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.698, 61.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.286, 61.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.224, 61.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.15, 61.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.1, 61.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.091, 61.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.16, 61.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.213, 61.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.223, 61.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.264, 61.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.18, 61.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.221, 61.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.234, 61.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.255, 61.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.143, 61.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.234, 61.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.213, 61.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.262, 61.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.345, 61.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.414, 61.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.168, 61.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.163, 61.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.422, 61.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.317, 61.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.361, 61.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.288, 61.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.174, 61.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.053, 61.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.275, 61.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.288, 61.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.218, 61.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.331, 61.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.2, 61.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.26, 61.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.989, 60.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.598, 61.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.211, 61.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.095, 61.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.055, 61.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.147, 61.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.064, 60.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.992, 61.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.037, 60.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.062, 60.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.963, 60.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.791, 60.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.024, 61.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.856, 60.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.987, 60.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.982, 60.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.018, 60.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.836, 60.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.948, 60.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.709, 60.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.124, 60.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.014, 60.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.0, 61.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.137, 60.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.918, 60.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.935, 60.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.804, 60.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.884, 60.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.838, 61.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.806, 60.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.823, 60.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.816, 60.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.82, 60.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.832, 60.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.777, 60.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.859, 60.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.854, 60.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.874, 60.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.757, 60.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.377, 61.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.757, 60.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.515, 60.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.171, 60.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.28, 60.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.569, 60.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.925, 60.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.878, 61.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.644, 60.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.627, 60.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.106, 60.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.595, 60.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.557, 60.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.527, 60.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.513, 60.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.547, 60.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.775, 60.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.627, 60.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.483, 60.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.426, 60.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.378, 60.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.461, 60.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.07, 60.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.915, 60.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.354, 61.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.743, 60.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.397, 61.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.284, 60.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.603, 60.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.246, 60.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.424, 60.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.58, 60.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.392, 60.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.359, 60.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.335, 60.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.148, 60.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.293, 60.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.351, 60.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.323, 60.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.223, 60.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.393, 60.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.34, 60.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.31, 60.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.29, 61.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.374, 60.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.993, 60.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.041, 60.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.181, 60.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.088, 60.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.333, 60.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.077, 61.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.303, 60.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.362, 60.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.181, 60.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.218, 60.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.285, 60.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.138, 60.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.306, 60.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.251, 60.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.169, 60.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.237, 60.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.103, 60.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.273, 61.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.248, 60.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.851, 61.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.228, 60.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.241, 60.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.232, 61.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.19, 60.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.147, 60.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.134, 60.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.093, 60.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.094, 60.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.048, 60.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.976, 60.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.037, 60.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.022, 60.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.217, 60.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.065, 60.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.938, 60.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.998, 60.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.969, 60.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.799, 61.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.685, 61.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.784, 61.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.822, 61.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.809, 61.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.786, 60.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.771, 61.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.781, 60.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.823, 60.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.84, 60.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.782, 60.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.688, 60.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.684, 60.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.614, 61.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.84, 60.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.481, 61.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.724, 61.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.589, 61.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.61, 61.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.681, 61.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.935, 61.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.837, 61.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.881, 61.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.839, 61.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.925, 61.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.94, 61.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.879, 61.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.925, 61.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.035, 61.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.853, 61.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.022, 60.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.454, 60.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.033, 60.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.592, 60.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.573, 61.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.494, 61.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.407, 61.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.382, 61.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.422, 61.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.541, 60.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.553, 60.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.56, 60.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.599, 60.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.614, 60.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.7, 60.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.747, 60.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.517, 60.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.826, 61.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.805, 61.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.816, 60.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.239, 60.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.933, 61.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.244, 60.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.058, 60.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.277, 60.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.305, 60.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.265, 60.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.326, 60.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.286, 60.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.343, 60.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.308, 60.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.369, 60.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.244, 60.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.545, 61.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.187, 60.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.21, 60.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.153, 60.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.68, 60.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.352, 60.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.51, 60.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.01, 60.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.947, 60.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.796, 61.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.841, 60.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.855, 60.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.051, 60.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.867, 60.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.158, 60.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.222, 60.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.184, 60.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.153, 60.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.108, 60.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.071, 60.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.297, 60.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.773, 60.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.547, 61.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.21, 61.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.056, 61.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.132, 61.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.155, 60.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.174, 61.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.214, 61.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.305, 61.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.242, 61.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.289, 61.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.287, 61.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.291, 61.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.352, 61.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.502, 61.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.305, 60.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.459, 61.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.441, 61.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.925, 61.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.593, 61.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.433, 60.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.331, 61.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.466, 61.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.648, 61.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.827, 61.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.815, 61.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.119, 61.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.422, 61.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.939, 61.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.14, 61.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.576, 61.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.793, 61.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.288, 61.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.613, 61.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.287, 61.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.468, 61.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.917, 62.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.977, 62.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.169, 62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.156, 62.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.177, 62.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.415, 62.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.086, 62.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.391, 62.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.362, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.199, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.927, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.788, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.655, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.086, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.095, 62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.379, 62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.795, 63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.074, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.911, 63.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.109, 63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.358, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.227, 63.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.538, 63.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.491, 63.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.832, 63.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.19, 63.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.077, 63.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.794, 63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.376, 63.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.359, 63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.74, 63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.245, 63.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.91, 63.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.279, 63.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.201, 63.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.364, 64.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.302, 64.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.587, 64.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.264, 64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.574, 63.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.867, 63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.743, 64.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.412, 64.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.992, 64.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.399, 64.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.133, 64.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.733, 64.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.675, 64.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.771, 64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.098, 64.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.35, 64.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.977, 64.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.641, 64.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.968, 64.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.845, 64.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.388, 63.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.017, 64.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.488, 64.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.004, 64.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 64.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.995, 64.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.099, 64.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.878, 64.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.931, 64.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.97, 64.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.028, 64.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.002, 64.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.02, 64.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.793, 64.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.198, 64.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.181, 64.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.284, 64.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.275, 64.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.306, 64.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.597, 64.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.78, 64.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.77, 64.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.906, 64.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.712, 64.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.873, 64.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.129, 64.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.986, 64.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.797, 64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.605, 64.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.703, 64.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.048, 64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.4, 64.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.128, 64.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.847, 64.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.952, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.091, 64.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.733, 64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.601, 64.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.656, 63.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.136, 64.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.157, 64.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.842, 64.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.102, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.041, 64.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.082, 64.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.062, 64.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.975, 64.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.915, 64.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.066, 64.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.3, 64.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.473, 64.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.831, 64.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.02, 64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.352, 64.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.79, 64.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.221, 64.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.139, 64.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.917, 64.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.821, 64.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.62, 64.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.89, 64.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.987, 64.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.047, 64.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.442, 64.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.065, 64.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.238, 64.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.778, 64.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.146, 64.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.704, 64.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.199, 64.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.569, 64.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.526, 64.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.535, 64.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.261, 64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.311, 64.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.878, 64.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.889, 64.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.58, 64.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.04, 64.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.161, 64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.016, 64.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.651, 64.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.691, 64.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.727, 64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.767, 64.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.796, 64.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.834, 64.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.842, 64.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.752, 64.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.752, 64.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.531, 64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.802, 64.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.871, 64.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.571, 64.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 64.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.357, 64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 64.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.994, 65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.133, 65.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.907, 65.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.38, 65.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.938, 65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 65.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.836, 65.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.572, 65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.569, 65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.534, 65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.157, 65.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.74, 65.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.297, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.899, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.683, 66.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 66.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 66.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.503, 66.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.689, 66.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.881, 65.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.389, 66.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 66.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.375, 66.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.392, 66.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.364, 66.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 66.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.768, 67.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.797, 67.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.419, 67.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 68.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 67.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.847, 67.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.763, 67.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.943, 68.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 68.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.924, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.437, 68.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 68.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.815, 68.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.791, 68.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.837, 68.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.84, 68.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.913, 68.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 69.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.189, 69.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 69.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.088, 69.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.268, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.309, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.221, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.188, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.371, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.412, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.383, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.29, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.492, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.282, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.203, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.969, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.851, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.052, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.933, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.807, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.703, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.4, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.496, 68.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.699, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.461, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.398, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.186, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.407, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.624, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.428, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.721, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.993, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.263, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.46, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.392, 69.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.29, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.992, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.845, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.612, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.635, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.553, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.57, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.548, 69.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.507, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.442, 69.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.803, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.661, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.765, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.646, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.596, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.719, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.761, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.923, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.97, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.848, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.882, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.719, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.94, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.003, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.925, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.708, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.344, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 69.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.975, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.0, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.806, 69.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.269, 69.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.616, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.514, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.439, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.524, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.247, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.782, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.098, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.119, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.139, 69.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.348, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.125, 69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.029, 68.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.18, 68.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.454, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.167, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.168, 68.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.186, 68.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.991, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.316, 68.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.204, 68.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 68.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.552, 68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.438, 68.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 68.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 68.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.622, 68.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.788, 68.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 68.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.819, 68.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.011, 68.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 68.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.956, 68.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.612, 68.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.31, 68.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 68.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 68.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.846, 67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.943, 68.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.868, 67.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.456, 67.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.247, 67.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.953, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 68.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.828, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.794, 67.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.724, 67.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 67.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.612, 67.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 67.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.497, 67.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.619, 67.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.538, 67.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 67.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 67.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.537, 67.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.539, 67.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 67.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 67.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.503, 67.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 67.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.515, 67.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 67.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.996, 67.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.273, 67.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 67.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.479, 67.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.219, 67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.389, 67.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.407, 67.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 67.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.924, 67.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 66.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 66.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.506, 67.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.316, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.289, 67.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.444, 67.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.33, 67.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.232, 67.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.116, 67.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.159, 67.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 67.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.157, 67.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 67.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 67.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.255, 67.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.146, 67.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 67.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.117, 67.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 67.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.154, 67.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.53, 67.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.56, 68.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.526, 68.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.596, 67.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.668, 68.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.824, 68.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.793, 68.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.876, 68.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.465, 68.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.778, 68.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.862, 68.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.76, 68.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.632, 68.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.539, 68.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.561, 68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 68.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 68.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.763, 68.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.761, 68.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 68.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.887, 68.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.031, 68.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.636, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.729, 68.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.54, 69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.724, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.932, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.882, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.361, 70.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.282, 69.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.137, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.135, 69.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.044, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.391, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.464, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.413, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.522, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.358, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.518, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.287, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.493, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.556, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.802, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.872, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.178, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.762, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.344, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.749, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.854, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.988, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.226, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.528, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.552, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.003, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.005, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.277, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.886, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.915, 70.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.158, 70.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.041, 70.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.724, 70.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19, 70.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.305, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.31, 70.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.651, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.705, 70.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.921, 71.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.248, 71.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.551, 71.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.704, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.475, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.769, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.115, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 72.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.748, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 72.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.459, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.316, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 72.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.304, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 72.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.46, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.265, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.47, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.329, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36, 72.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.455, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.667, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.258, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 72.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.802, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11, 72.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.259, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.329, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 72.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.432, 72.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 72.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.657, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.282, 72.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.134, 72.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 72.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.659, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.766, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.768, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 72.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.635, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 72.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.407, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.216, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87, 72.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7, 72.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.931, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.085, 72.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.717, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.715, 72.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 72.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.005, 72.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 72.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.041, 72.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 72.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 72.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.123, 72.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 72.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 72.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 72.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 72.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.114, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 72.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 72.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 72.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.132, 72.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.354, 72.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 72.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.234, 72.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 72.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.182, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.273, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 72.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 72.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87, 72.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 72.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 72.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.236, 72.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.192, 72.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 72.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.959, 72.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.863, 72.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.838, 72.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 72.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 72.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 72.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 72.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 72.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.375, 72.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.877, 72.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 72.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.24, 72.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.137, 72.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.197, 72.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 72.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.229, 72.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 72.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.161, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 72.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 72.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 72.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.371, 72.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.016, 72.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 72.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 72.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.036, 72.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 72.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.239, 72.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.115, 72.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.526, 72.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 72.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 72.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.703, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.352, 72.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.393, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.393, 72.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 72.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.263, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.296, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 72.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 72.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.399, 72.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.234, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.486, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 72.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.489, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 72.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.986, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.238, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 72.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.286, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.256, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.373, 72.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.263, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.343, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 72.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.408, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.458, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.397, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 72.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.451, 72.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.703, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.753, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 72.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 72.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 72.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 72.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.859, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 72.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.004, 72.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.696, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.711, 72.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.822, 72.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.065, 72.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 72.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.201, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 72.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.241, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.675, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.139, 72.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.021, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.084, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.177, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.189, 72.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.039, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 72.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.141, 72.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 72.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.188, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.326, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 72.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.944, 72.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.85, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 72.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.735, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 72.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.894, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.187, 72.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.814, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.83, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.766, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.847, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.774, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.683, 72.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.649, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.859, 71.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.68, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 71.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.686, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 71.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.238, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.112, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.123, 71.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.041, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.483, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.135, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.145, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.206, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.253, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.908, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.044, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.157, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.061, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.022, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 71.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 71.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 71.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 71.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.142, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.172, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.108, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.225, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.144, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.613, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.197, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 72.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.23, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.139, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 71.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.266, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.163, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.231, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.326, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.229, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 71.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.174, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.228, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.305, 71.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.063, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.725, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.986, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.333, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02, 71.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.055, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.906, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.371, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 72.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.969, 72.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.976, 72.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.518, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.838, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.783, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.946, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.976, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.855, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.781, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.681, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.744, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.754, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.718, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.688, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.751, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.739, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.784, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.777, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.825, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.866, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.806, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.871, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.593, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.903, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.547, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.888, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 72.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.971, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.922, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.875, 72.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.976, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.704, 72.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 72.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 72.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.392, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.106, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.837, 71.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.354, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.192, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 72.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.211, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.165, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.289, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.189, 72.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.13, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.976, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.113, 71.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.746, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.005, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.242, 72.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.206, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.144, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.171, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.152, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.172, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.362, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 72.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.332, 72.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.233, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.246, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.962, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.899, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.885, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.017, 71.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.904, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.246, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.117, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 71.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.627, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.257, 71.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.651, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.471, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.505, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.243, 71.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.003, 71.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.544, 71.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.588, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.433, 71.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 70.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.181, 70.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.164, 70.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.103, 70.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.152, 70.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.112, 70.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.431, 70.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.389, 70.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.903, 70.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.628, 70.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.316, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.96, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.41, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.495, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.506, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.657, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.394, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.265, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.522, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 70.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.593, 70.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.314, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.901, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.446, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.221, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.133, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.342, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.933, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.758, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.948, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.788, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.521, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.822, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.453, 69.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.441, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.505, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.422, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.036, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.718, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.606, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.565, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.728, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.677, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.696, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.742, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.683, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.439, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.269, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 70.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 70.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.534, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.393, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.364, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.504, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.805, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.909, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.127, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.611, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.475, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.533, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.577, 70.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.811, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.292, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.396, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.378, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33, 70.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.689, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.066, 70.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.909, 70.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.718, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.653, 70.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.424, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.387, 70.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.536, 70.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.001, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.074, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.74, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.95, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.865, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.967, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.005, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.062, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.827, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.576, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.689, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.791, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.811, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.59, 70.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.687, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.022, 70.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.389, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.483, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.653, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.719, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.822, 70.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.751, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.548, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.926, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.813, 70.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.485, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.473, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.537, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.451, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.53, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.116, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.116, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.014, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.941, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.986, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.065, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.068, 70.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.165, 70.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.663, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.655, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.763, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.991, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.165, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.848, 70.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.983, 70.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.149, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.408, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.943, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.454, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.962, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.205, 70.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.302, 70.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.096, 70.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.369, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.473, 70.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.778, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.428, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.685, 70.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.561, 70.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.553, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.682, 70.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.512, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.829, 70.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.607, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.617, 71.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.849, 70.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.856, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.588, 70.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.734, 70.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.663, 70.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.561, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.667, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.655, 70.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.761, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.776, 70.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.917, 70.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.931, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.125, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.643, 70.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.627, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.557, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.579, 70.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.535, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.474, 70.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.279, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.963, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.865, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.358, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.374, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.127, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.109, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.337, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.323, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.363, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.256, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.348, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.714, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.378, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.475, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.715, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.636, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.162, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.304, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.223, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.236, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.31, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.394, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.561, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.821, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.741, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.528, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.071, 69.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.847, 69.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.885, 69.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.78, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.839, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.914, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.869, 69.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.001, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.799, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.721, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.471, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.909, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.904, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.708, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.892, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.841, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.167, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72, 69.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.975, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.428, 69.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.895, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.718, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.107, 69.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.822, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.887, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.909, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.946, 69.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.405, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.549, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.252, 69.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.919, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.916, 69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.723, 69.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.808, 69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.796, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.216, 69.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.804, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.883, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 69.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13, 68.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.623, 69.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 69.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.052, 69.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.548, 69.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.459, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.954, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.959, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 69.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.904, 69.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.892, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.187, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.834, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.883, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.368, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.822, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.249, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.958, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.761, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.946, 69.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.181, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.064, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.019, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.322, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.383, 68.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.781, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.933, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.754, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.434, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 69.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.95, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.079, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.931, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.983, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.149, 68.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.163, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.567, 69.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.775, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.883, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.799, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.256, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.712, 69.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.753, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.845, 69.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 68.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.783, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.996, 69.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.851, 69.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.734, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.851, 69.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.721, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.118, 69.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.466, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.345, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87, 69.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.819, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.937, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 69.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.236, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.971, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.864, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89, 69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.786, 69.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.755, 69.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.772, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.163, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.735, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.784, 69.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.031, 69.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.629, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.801, 69.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.864, 69.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 69.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.875, 69.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 69.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 69.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.849, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.988, 69.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.791, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.187, 69.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.408, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.042, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.92, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.981, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.708, 69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.812, 69.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.705, 69.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.77, 69.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.616, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 69.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.974, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.049, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.648, 68.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.042, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 69.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.865, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.889, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.616, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.432, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.897, 69.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.927, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.904, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 69.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.941, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.898, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 69.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.891, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.902, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.077, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.197, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.833, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.907, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.926, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.779, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.907, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.882, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.899, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.207, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.95, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.013, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.665, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.173, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.102, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.965, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.05, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.09, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.988, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.053, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.818, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.072, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.198, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.057, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.206, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.038, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.053, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.166, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.259, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.058, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.177, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.381, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.327, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.06, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.071, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.47, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.597, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.054, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.99, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.359, 70.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.595, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.917, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.585, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.087, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.445, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.184, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.939, 69.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.116, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.215, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2, 69.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.323, 69.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.271, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.242, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.258, 69.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.152, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.085, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.279, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.222, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.402, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.228, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.246, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.087, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.532, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.109, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.208, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.527, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 70.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.655, 70.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.425, 69.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.143, 70.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.326, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.085, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.395, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.734, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.495, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.697, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.141, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.687, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.505, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.415, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.481, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.636, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.46, 70.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.512, 70.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.562, 70.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.753, 70.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.773, 70.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 70.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.89, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.694, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 70.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.176, 70.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.539, 70.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.047, 70.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 70.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.779, 70.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.785, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.834, 70.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 70.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.923, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.952, 70.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.956, 70.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.723, 70.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.775, 70.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 70.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.177, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.047, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.81, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.813, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.171, 70.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.754, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.937, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.856, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.113, 70.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.822, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.574, 70.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 70.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.963, 70.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.961, 70.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 70.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.842, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.751, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.013, 68.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.227, 70.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.841, 70.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.67, 70.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 70.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 70.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.308, 70.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 70.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.849, 70.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.844, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.037, 70.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.796, 70.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 70.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.647, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.721, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.738, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.921, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.811, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.805, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.881, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 70.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 70.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.944, 70.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.741, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.883, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 70.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.284, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.461, 70.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.509, 70.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.575, 70.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.205, 70.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 70.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 70.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.912, 70.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.728, 70.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.708, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.748, 70.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 70.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 70.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 70.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.383, 70.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.866, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.575, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.532, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.552, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.914, 71.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.356, 70.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 71.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 71.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 71.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.247, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.267, 71.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.569, 70.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 71.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02, 71.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.765, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.713, 71.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.692, 71.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.695, 71.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 71.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.81, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 71.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.567, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.776, 71.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.842, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.611, 71.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.775, 71.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.223, 71.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.678, 71.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 71.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.35, 70.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.409, 71.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.565, 71.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.253, 71.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.759, 70.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.052, 73.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 71.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.376, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 71.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.204, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.289, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.095, 72.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.024, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.888, 72.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.704, 72.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.057, 73.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.838, 73.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.31, 73.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.667, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.749, 73.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.348, 73.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.263, 73.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.554, 73.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.89, 73.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.349, 74.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.737, 73.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.998, 73.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.801, 74.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.083, 73.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.413, 73.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.115, 73.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.977, 73.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.165, 73.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.969, 73.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.684, 73.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.556, 73.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.498, 73.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.601, 73.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.433, 73.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.322, 73.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.907, 73.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.711, 73.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.998, 73.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 73.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.701, 73.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 73.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.729, 73.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.455, 73.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.455, 73.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 73.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.406, 73.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.351, 73.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.409, 73.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.909, 73.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.889, 73.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.767, 73.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.667, 73.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.22, 73.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 73.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.903, 73.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.624, 73.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.503, 73.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.251, 73.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.986, 73.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.107, 73.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.151, 73.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.898, 73.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.515, 73.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.497, 73.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.234, 73.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.191, 73.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.234, 72.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.11, 72.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.042, 72.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.037, 72.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.032, 72.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.024, 72.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.889, 72.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.698, 72.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.069, 72.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.199, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.304, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.196, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.252, 72.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.248, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.048, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.516, 71.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.226, 71.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.376, 71.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.464, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.163, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.287, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.709, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.726, 70.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.75, 70.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.772, 70.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.179, 70.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.755, 70.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.869, 70.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.71, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.968, 70.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.844, 70.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.691, 70.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.72, 70.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.231, 70.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.604, 70.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.714, 70.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.497, 70.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.247, 70.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.647, 70.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.896, 70.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.793, 70.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.684, 70.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.668, 70.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.606, 70.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.607, 70.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.972, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.938, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.109, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.337, 70.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.869, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.501, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.376, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.295, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.158, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.186, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.95, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.915, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.954, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.572, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.416, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.39, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.444, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.043, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.374, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.43, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.489, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.517, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.496, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.556, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.724, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.032, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.603, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.486, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.424, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.363, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.382, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.512, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.92, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.327, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.114, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.358, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.184, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.106, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.302, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.329, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.293, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.522, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.327, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.359, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.385, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.417, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.587, 69.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.457, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.522, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.883, 69.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.432, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.239, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.571, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.525, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.506, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.518, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.544, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.585, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.68, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.823, 67.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.52, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.521, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.498, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.513, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.705, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.586, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.556, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.409, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.419, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.535, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.61, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.543, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.484, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.978, 68.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.999, 68.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.428, 68.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.043, 68.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.037, 68.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.052, 68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.986, 68.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 68.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.126, 68.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.01, 68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 68.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 68.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.609, 68.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.006, 68.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.778, 68.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.122, 68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.17, 68.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 68.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 68.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.088, 68.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 68.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 68.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.071, 68.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.482, 68.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.298, 68.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.961, 68.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.033, 68.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.084, 68.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.4, 68.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 68.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.591, 67.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.514, 67.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.411, 67.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.541, 67.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.471, 67.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.529, 67.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.629, 67.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.458, 67.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.514, 67.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.518, 67.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.421, 67.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.323, 67.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.267, 67.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.095, 67.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.814, 67.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.379, 67.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.909, 67.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.365, 67.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.474, 66.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.328, 66.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.413, 65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.581, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.736, 65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.755, 65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.798, 64.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.828, 64.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.959, 64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.028, 64.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.282, 64.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.235, 64.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.592, 64.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.229, 64.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.743, 64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.703, 64.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.759, 64.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.816, 64.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.774, 64.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.952, 64.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.935, 64.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.92, 64.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.132, 64.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.091, 64.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.092, 64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.27, 64.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 64.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.451, 64.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.518, 64.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.582, 64.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.665, 64.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.628, 64.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.601, 64.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.65, 64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.547, 64.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.251, 64.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.486, 64.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.229, 64.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.77, 64.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.484, 64.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.219, 64.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.283, 64.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.28, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.204, 64.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.212, 64.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.22, 64.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.193, 64.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.173, 64.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.012, 64.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.192, 64.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.243, 64.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.134, 64.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.208, 64.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.231, 64.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.951, 64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.451, 64.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.5, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.354, 64.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.329, 64.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.205, 64.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.245, 64.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.237, 64.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.689, 64.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.846, 64.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.676, 64.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.29, 64.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.688, 64.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.54, 64.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.257, 64.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.496, 64.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.41, 64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.285, 64.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.353, 64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.988, 64.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.258, 64.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.837, 64.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.795, 64.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.89, 64.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.032, 64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.986, 64.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.87, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.881, 64.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.096, 64.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.988, 64.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.939, 64.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.003, 64.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.985, 64.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.03, 64.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.084, 64.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.048, 64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.145, 64.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.823, 64.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.808, 64.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.756, 64.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.815, 64.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.827, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.777, 64.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.933, 64.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.853, 64.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.91, 64.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.806, 64.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.303, 64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.27, 64.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.041, 65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.408, 64.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 64.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.187, 64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.344, 64.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 64.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.165, 64.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 64.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.338, 64.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.244, 64.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 64.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.177, 64.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.206, 64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.236, 64.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.926, 64.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.726, 64.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.115, 64.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.117, 64.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.089, 64.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.238, 64.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.229, 64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.34, 64.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.287, 64.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.321, 64.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 64.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.962, 64.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.754, 67.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.151, 64.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.265, 64.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.275, 64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.271, 64.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.263, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.71, 64.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.156, 64.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 64.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.392, 64.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 64.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.466, 64.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.826, 64.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.719, 64.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.89, 64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.729, 64.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 64.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.327, 64.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.568, 64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.266, 64.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.972, 64.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.418, 64.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.95, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.024, 64.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.589, 64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.694, 64.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.614, 64.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.382, 64.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.375, 64.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.3, 64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.362, 64.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.612, 64.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.332, 64.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.307, 64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.473, 64.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.589, 65.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.608, 65.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.609, 65.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.204, 64.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.399, 64.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.722, 64.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.655, 64.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.65, 64.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.661, 64.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.636, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 64.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.662, 64.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.301, 64.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.537, 64.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 64.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 64.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.586, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.429, 64.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 65.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.25, 65.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.915, 65.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.964, 65.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 65.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.272, 65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.286, 64.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.06, 65.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.765, 64.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.027, 64.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.559, 64.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.86, 65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.621, 64.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.271, 65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.478, 65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.536, 65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.484, 65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.984, 65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.575, 65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.704, 65.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.467, 65.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.677, 65.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.533, 65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.968, 65.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.832, 65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.776, 65.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.902, 65.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.804, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.697, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.742, 65.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.843, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.819, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.878, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.746, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.541, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.77, 65.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.86, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.525, 65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.503, 65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.617, 65.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.749, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.584, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.838, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.842, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.613, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.477, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.507, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.606, 65.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.616, 65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.983, 65.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.229, 65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.186, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.672, 65.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.702, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.631, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.305, 65.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.657, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.641, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.611, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.73, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.574, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.558, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.474, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.734, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.275, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.728, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.751, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.785, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.599, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.521, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.582, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.587, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.063, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.578, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.544, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.568, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.749, 66.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.423, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.686, 65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.687, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.624, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.837, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.837, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.728, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.846, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.885, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.906, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.496, 65.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.013, 65.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.34, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.854, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.911, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.858, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.573, 65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.789, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.773, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.727, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.761, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.813, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.791, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.802, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.742, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.765, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.782, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.783, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.89, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.818, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.81, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.756, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.769, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.632, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.925, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.823, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.781, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.672, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.881, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.586, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.12, 65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.828, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.794, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.836, 65.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.113, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.909, 65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.738, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.948, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.948, 65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.894, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.73, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.939, 65.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.866, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.755, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.862, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.45, 65.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.702, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.72, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.442, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.701, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.736, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.924, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.775, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.878, 65.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.758, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.784, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.846, 65.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.785, 65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.732, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.77, 65.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.82, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.782, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.621, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.855, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.663, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.709, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.678, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.627, 65.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.667, 65.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.741, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.852, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.471, 65.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.756, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.808, 65.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.71, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.686, 65.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.763, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.561, 65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.979, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.912, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.756, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.638, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.975, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.672, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.812, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.931, 65.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.48, 65.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.22, 65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.01, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.76, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.56, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.777, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.73, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.642, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.774, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.762, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.942, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.861, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.947, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.835, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.83, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.723, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.68, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.722, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.663, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.682, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.509, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.614, 65.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.644, 65.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.436, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.811, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.88, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.06, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.857, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.069, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.152, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.189, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.132, 65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.127, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.139, 65.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.085, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.85, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.78, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.797, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.727, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.758, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.978, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.736, 65.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.892, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.761, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.816, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.887, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.839, 65.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.023, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.892, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.018, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.846, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.829, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.82, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.43, 65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.775, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.986, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.951, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.891, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.887, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.393, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.377, 65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.416, 65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.54, 65.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.779, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.812, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.718, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.732, 65.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.771, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.147, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.379, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.578, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.628, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.622, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.481, 65.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.754, 65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.558, 65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.328, 65.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.317, 65.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.386, 65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.335, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.289, 65.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.202, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.293, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.239, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.27, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.189, 65.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.837, 65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.955, 65.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.599, 65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.557, 65.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.608, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.231, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.069, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.588, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.606, 65.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.493, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.551, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.065, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.12, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.032, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.062, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.197, 66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.096, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.131, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.121, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.187, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.117, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.257, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.365, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.166, 65.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.515, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.454, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.561, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.422, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.994, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.455, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.143, 66.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.092, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.995, 70.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.375, 70.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.588, 70.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.988, 70.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.156, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.011, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.951, 71.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.039, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 71.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.521, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.484, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.526, 72.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.64, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.196, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 71.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.396, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.495, 71.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 71.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.301, 71.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.086, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 71.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.545, 71.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.52, 71.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 71.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.557, 71.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.589, 71.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.871, 71.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.607, 71.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6, 71.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.833, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 71.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.116, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.865, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.514, 71.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.764, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.793, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.977, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.114, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.004, 70.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.886, 60.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.158, 70.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.599, 70.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.341, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.282, 70.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.295, 70.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.109, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.139, 70.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.812, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.45, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.349, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.708, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.573, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.5, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 70.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.813, 70.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.656, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 70.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.687, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 70.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.752, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.709, 70.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.681, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 70.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98, 70.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.663, 70.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.592, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.704, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.262, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.574, 70.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.034, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.953, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.367, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 29.442, 86.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.236, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.524, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.991, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.056, 70.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.086, 70.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.273, 70.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.945, 70.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.296, 70.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13, 70.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.295, 70.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.536, 70.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.447, 70.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.224, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.287, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.307, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.249, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.293, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.286, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.073, 72.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.06, 72.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.508, 73.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.187, 73.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.606, 73.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.516, 73.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.591, 73.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.896, 73.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.612, 73.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.048, 73.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.751, 73.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.696, 73.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.064, 73.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.875, 73.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.201, 72.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.1, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.816, 73.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.065, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.695, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.9, 68.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.522, 68.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.531, 67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.368, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.847, 67.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.602, 67.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.082, 67.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.935, 67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.811, 67.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.752, 67.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.71, 67.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.729, 67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.299, 66.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.163, 66.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.161, 66.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.228, 66.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.222, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.227, 66.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.822, 66.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.422, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.417, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.732, 64.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.374, 64.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.718, 64.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.738, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.593, 63.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.745, 64.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.93, 64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.326, 64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.275, 64.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.219, 64.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.759, 64.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.178, 63.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.909, 63.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.142, 64.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.279, 63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.093, 63.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.925, 63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.395, 63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.363, 63.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.623, 63.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.822, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.816, 63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.774, 63.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.768, 63.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.94, 63.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.981, 63.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.909, 63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.682, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.231, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.544, 62.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.266, 62.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.445, 62.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.07, 62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.747, 62.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.691, 62.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.894, 62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -34.236, 56.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.313, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.36, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.298, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.307, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.548, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.415, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.378, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.27, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.893, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.635, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -15.951, 51.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.673, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.13, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.901, 63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.43, 62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.578, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.758, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.856, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.785, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.804, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.281, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.877, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.812, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.7, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.002, 62.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.932, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.893, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.825, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.82, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.939, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.886, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.832, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.498, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.823, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.843, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.636, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.873, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.826, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.837, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.774, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.802, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.548, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.552, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.754, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.82, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.78, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.593, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.259, 62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.673, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.705, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.697, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.689, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.151, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.451, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.027, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.719, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.806, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.814, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.82, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.69, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.869, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.822, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.908, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.756, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.789, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.766, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.873, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.893, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.94, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.877, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.586, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.596, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.508, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.345, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.232, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.347, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.522, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.854, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.864, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.859, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.238, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.629, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.077, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.9, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.948, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.083, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.117, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.186, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.766, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.879, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.732, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.762, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.13, 62.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.902, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.468, 63.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.117, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.676, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.812, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.773, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.797, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.804, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.869, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.83, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.896, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.451, 62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.872, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.973, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.726, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.685, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.522, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.562, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.513, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.533, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.521, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.499, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.473, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.723, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.315, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.229, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.333, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.345, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.446, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.405, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.403, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.251, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.699, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.648, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.499, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.852, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.929, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.082, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.014, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.295, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.382, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.527, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.621, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.655, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.753, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.687, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.825, 62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.761, 62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.84, 62.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.762, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.358, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.338, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.143, 62.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.105, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.152, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.198, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.378, 62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.509, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.452, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.435, 62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.739, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.723, 63.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.792, 63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.807, 63.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.93, 63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.828, 63.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.551, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.384, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.407, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.952, 62.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.033, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.757, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.612, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.018, 62.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.498, 62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.361, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.013, 63.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.404, 64.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.763, 64.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.975, 64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.201, 64.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.349, 64.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.187, 64.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.749, 64.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.598, 64.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 64.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 64.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.266, 64.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 64.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.928, 65.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.819, 65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.669, 64.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.5, 65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.211, 65.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.885, 65.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.587, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.533, 66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.536, 66.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.969, 67.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 67.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.937, 67.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.425, 67.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 67.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.291, 67.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.23, 67.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.961, 67.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.923, 67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.785, 67.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.252, 67.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 67.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.927, 68.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.712, 68.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.132, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.473, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 69.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.508, 69.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.925, 69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.816, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.029, 69.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.359, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.262, 69.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.453, 69.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.54, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.483, 69.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.447, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.385, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.3, 69.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.595, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.836, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.89, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.422, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.432, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.962, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.221, 69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.526, 69.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.131, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.727, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.541, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.921, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.454, 69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.863, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.243, 69.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.522, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.741, 68.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.563, 68.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.529, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.783, 68.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.754, 68.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.725, 68.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.158, 68.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.264, 68.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.695, 68.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.774, 68.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 68.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.656, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.388, 67.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.5, 67.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.3, 67.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 67.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.913, 67.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.92, 66.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.296, 66.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.185, 66.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.317, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.038, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.221, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.52, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.879, 65.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.531, 65.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.904, 65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.611, 65.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 65.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.371, 65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 65.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.315, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.705, 65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 65.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.534, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.458, 65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.389, 65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.493, 65.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 65.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.446, 65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.337, 65.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.642, 65.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.251, 65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 64.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.589, 65.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.148, 65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.392, 65.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.647, 65.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.899, 65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.586, 65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.638, 65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.2, 65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.96, 65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.746, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.675, 66.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.712, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.73, 66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.77, 66.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.061, 66.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.925, 66.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.865, 66.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.749, 66.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.563, 66.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.836, 66.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.416, 66.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 66.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.459, 66.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 66.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 67.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.204, 67.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.227, 67.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 67.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.194, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 67.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.286, 68.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 67.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 67.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 67.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.794, 68.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.329, 67.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.802, 68.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.738, 68.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 68.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.826, 68.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.873, 67.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.869, 68.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.293, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.509, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.475, 68.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.803, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.995, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.795, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.157, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.204, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.88, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.795, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.775, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.517, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.714, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.123, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.019, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.85, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.703, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.353, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.867, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.511, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.098, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.51, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.592, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.543, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.382, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.221, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.461, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.648, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.515, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.961, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.063, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.677, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.874, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.963, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.264, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.397, 69.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.376, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.936, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.251, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.288, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.317, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.212, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.633, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.993, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.59, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.371, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.833, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.282, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.947, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.859, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.31, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.586, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.509, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.923, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.96, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.438, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.576, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.196, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.348, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.409, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.357, 68.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.37, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.349, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.124, 69.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 69.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 69.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.884, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.846, 69.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.127, 69.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.847, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.919, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.924, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.5, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 69.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.706, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 69.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.068, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.938, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.518, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.663, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.502, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.636, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.695, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.58, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.732, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.728, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.571, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.713, 69.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 69.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.872, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.574, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.215, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.717, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.828, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.048, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.186, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.272, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.092, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.163, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.277, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.978, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.952, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.022, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.098, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 69.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.022, 69.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.59, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.563, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.658, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.191, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.769, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.378, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.364, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.513, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.421, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.175, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.402, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.688, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.633, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.313, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.338, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.332, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.285, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.282, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.374, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.387, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.352, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.432, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.458, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.361, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 69.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 69.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.013, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.072, 69.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.032, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.456, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.389, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.124, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.977, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.424, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.315, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.254, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.012, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.527, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.555, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.829, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.019, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.268, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.252, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.409, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.459, 69.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.177, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.231, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.432, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.391, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.365, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.259, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.324, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.158, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.127, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.099, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.808, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.321, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.262, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.342, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.297, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.335, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.36, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.251, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.339, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.582, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.757, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.283, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.512, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.608, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.668, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.789, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.992, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.994, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.003, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.34, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.843, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.188, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.443, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.487, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.504, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.464, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.238, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.568, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.328, 70.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.472, 70.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 70.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.693, 71.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.205, 71.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.413, 71.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 71.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 71.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.187, 71.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 71.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.168, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.173, 71.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.447, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.196, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.327, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.246, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.291, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.308, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.824, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 72.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 72.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 72.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 72.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.459, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 72.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 72.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 72.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 72.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.733, 72.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.536, 72.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 72.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 72.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 72.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 72.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 72.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 72.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.813, 72.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.778, 72.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.776, 72.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.784, 72.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.161, 72.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.657, 72.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.607, 72.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75, 72.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.278, 72.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.005, 72.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.214, 72.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.122, 72.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.214, 72.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.697, 72.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.083, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.103, 72.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.071, 72.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 72.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.168, 72.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.871, 72.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.177, 72.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.606, 72.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.285, 72.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.776, 72.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.189, 72.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.051, 72.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.988, 72.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.926, 72.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.026, 72.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 72.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.009, 72.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.575, 72.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.165, 72.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.334, 72.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.301, 72.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.238, 72.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.089, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.537, 72.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.472, 72.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.549, 72.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.229, 72.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.482, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.641, 72.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.619, 72.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.563, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.477, 72.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.589, 72.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.565, 72.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.542, 72.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.526, 72.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.505, 72.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.373, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.327, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 72.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.397, 72.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 72.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.37, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.781, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.658, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.453, 72.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.513, 72.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.56, 72.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.445, 72.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.304, 72.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.207, 72.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.215, 72.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.147, 72.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.005, 72.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 72.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 73.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.775, 72.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 72.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.851, 72.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.779, 72.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 72.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.441, 72.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.779, 72.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.747, 72.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.866, 72.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.596, 72.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.611, 72.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.525, 72.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.509, 72.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.469, 72.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.439, 72.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.414, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.058, 72.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.781, 72.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 72.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 72.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.039, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.216, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.644, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.124, 72.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.501, 72.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.573, 72.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.012, 72.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.458, 72.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.044, 72.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.595, 72.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 72.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.336, 72.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.579, 72.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.643, 72.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.545, 72.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 72.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.485, 72.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.417, 72.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15, 72.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 72.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 72.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 72.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.492, 72.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 72.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.266, 72.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.39, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.456, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.345, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.396, 72.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.245, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.767, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.85, 72.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.846, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.373, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.046, 72.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 72.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 71.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 71.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.98, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.889, 72.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.605, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.616, 71.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.491, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.554, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.531, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.656, 71.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.589, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 71.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.449, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.495, 71.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43, 71.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 71.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.137, 71.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 71.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 71.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 71.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.145, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 71.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 71.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.972, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 71.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.703, 71.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27, 71.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.274, 71.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 71.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.894, 71.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.876, 71.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.496, 71.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.352, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.025, 70.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.449, 70.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.43, 70.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.429, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49, 70.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.457, 70.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.364, 70.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.567, 70.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.352, 70.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.545, 70.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.881, 70.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.935, 70.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.425, 70.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.984, 70.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 71.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 70.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.525, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.735, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.764, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.64, 70.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.746, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.768, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.871, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.867, 70.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.912, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.041, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.912, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 70.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.188, 71.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 71.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 71.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.893, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 71.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 70.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 71.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.283, 71.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.294, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.432, 71.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 71.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 71.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.282, 71.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.137, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.621, 71.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.335, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 70.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 70.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 70.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.137, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.987, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.113, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 70.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.195, 70.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.435, 70.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.488, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.479, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.474, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 70.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.565, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 71.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 70.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.526, 70.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.593, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.611, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.422, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 71.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 70.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.611, 71.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.581, 71.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 71.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 71.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.557, 70.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.297, 70.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.119, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.381, 71.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 71.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 71.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.355, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.356, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.316, 71.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.334, 71.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33, 71.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.647, 71.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.495, 71.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.889, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.797, 70.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 70.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 70.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 70.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.667, 70.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 70.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.438, 70.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 70.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 70.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.688, 70.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 70.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.448, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.034, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.664, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.192, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.678, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.682, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.602, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.382, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.134, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.895, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.769, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.839, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.632, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.652, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.785, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.754, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.607, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.777, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.105, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.767, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.852, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.864, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.845, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.844, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.061, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.913, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.038, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.061, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.18, 69.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.777, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.309, 69.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.002, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.997, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.934, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.033, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.992, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.034, 69.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.022, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.959, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.722, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.778, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.74, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.797, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.828, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.882, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.658, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.641, 69.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.685, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.431, 69.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.673, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.714, 69.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.865, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.169, 69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.74, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.733, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.666, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.611, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.89, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.994, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.302, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.308, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.059, 68.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.885, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.79, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.68, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.741, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.665, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.754, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.16, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.954, 69.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.002, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.911, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.318, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.068, 74.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.074, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.339, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.357, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.549, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.236, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.302, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.32, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.618, 70.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.627, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.784, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.802, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.257, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.511, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.099, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.26, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.178, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.147, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.075, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.152, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.284, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.311, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.288, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.145, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.163, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.373, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.836, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.951, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.642, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.319, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.058, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.294, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.317, 69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.144, 68.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.408, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.467, 68.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.531, 69.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42, 68.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.791, 69.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.778, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.757, 69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.971, 69.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.741, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.872, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.551, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.046, 68.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.085, 69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.778, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.433, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.926, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.518, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.534, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.284, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.605, 69.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.852, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.472, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 68.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.401, 68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.065, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.846, 69.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.771, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.833, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.328, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.724, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.527, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.54, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.475, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.436, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.493, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.326, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.135, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.03, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.004, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.158, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.017, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.009, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.122, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.887, 70.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.016, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.897, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.176, 70.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.374, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.559, 70.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.904, 70.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 70.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 70.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.136, 70.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.814, 70.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 70.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.304, 70.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.175, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 70.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98, 70.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.225, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.239, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.086, 70.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.195, 70.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 70.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 70.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5, 70.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.143, 70.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 70.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.583, 70.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 70.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 70.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 70.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 70.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.941, 70.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.703, 70.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.383, 70.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.587, 71.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 71.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 70.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88, 70.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.844, 70.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.462, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.849, 70.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.726, 70.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.489, 70.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.176, 70.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 70.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.872, 70.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.566, 70.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.772, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.445, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.127, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.172, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.362, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.328, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.113, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.119, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.58, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.449, 69.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.157, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.151, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.078, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.083, 69.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.067, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.293, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.395, 68.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 67.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.576, 67.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.631, 67.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.024, 66.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.986, 67.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 67.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.117, 67.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.138, 67.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 67.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.225, 67.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.298, 67.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.486, 67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 67.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 67.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 67.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.997, 67.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 67.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.997, 67.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.892, 67.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.968, 67.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.963, 67.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.872, 67.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.819, 66.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.439, 66.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.301, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.367, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.624, 66.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 66.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.083, 66.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.249, 66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.201, 66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.437, 66.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.302, 66.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.369, 66.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.627, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.36, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.699, 66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.507, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.327, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.558, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.542, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.779, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.853, 65.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.911, 65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.007, 65.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.059, 65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.057, 65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.622, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.48, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.46, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.625, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.654, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.609, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.759, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.5, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.269, 65.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 64.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 64.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.157, 64.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.287, 65.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 65.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.307, 64.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 64.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.151, 65.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.204, 65.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.976, 64.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.264, 64.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.325, 64.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.815, 64.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.51, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.573, 64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.638, 64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.823, 64.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.158, 64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.123, 64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.39, 63.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.315, 63.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.25, 63.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.263, 64.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.891, 63.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.682, 63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.675, 63.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.564, 63.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.407, 63.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.148, 63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.787, 63.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.751, 63.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.703, 63.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.441, 63.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.229, 63.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.128, 63.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.056, 63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.988, 63.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.759, 63.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.897, 63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.774, 63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.846, 62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.924, 63.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.204, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.748, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.707, 63.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.87, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.644, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.537, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.515, 62.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.521, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.519, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.52, 62.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.567, 62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.849, 62.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.9, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.795, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.022, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.979, 62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.069, 62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.089, 63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.314, 63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.323, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.267, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.278, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.275, 63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.215, 63.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.172, 63.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.246, 63.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.295, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.221, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.408, 63.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.529, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.6, 63.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.67, 63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.619, 63.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.665, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.189, 62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.083, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.986, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.789, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.121, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.239, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.786, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.848, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.856, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.831, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.211, 62.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.375, 62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.518, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.468, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.406, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.946, 62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 8.768, 48.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.88, 62.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.016, 62.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.919, 62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.129, 62.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.971, 62.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.861, 62.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.547, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.688, 62.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.843, 62.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.079, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.428, 62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.06, 62.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.988, 62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.901, 62.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.981, 62.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.971, 62.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.005, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.912, 62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.898, 62.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.2, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.974, 62.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.085, 62.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.129, 61.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.121, 61.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.095, 61.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.254, 61.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.154, 61.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.136, 61.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.204, 61.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.506, 61.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.144, 61.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.171, 61.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.764, 61.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.145, 61.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.183, 61.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.98, 61.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.154, 61.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.226, 61.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.29, 61.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.207, 62.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.269, 61.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.398, 62.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.388, 61.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.469, 61.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.474, 62.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.453, 62.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.507, 62.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.478, 62.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.412, 61.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.432, 61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.61, 62.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.381, 62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.284, 62.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.795, 61.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.417, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.707, 62.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.763, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.61, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.564, 62.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.637, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.835, 62.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.868, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.478, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.752, 62.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.521, 62.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.287, 62.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.604, 62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.462, 62.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.507, 62.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.669, 62.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.503, 62.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.482, 62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.52, 62.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.467, 62.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.51, 62.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.577, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.51, 62.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.936, 62.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.812, 61.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.963, 61.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.158, 61.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.021, 62.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.147, 62.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.295, 61.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.564, 62.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.391, 62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.921, 62.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.413, 62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.647, 62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.699, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.052, 62.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.19, 62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.955, 62.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.979, 62.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.194, 62.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.26, 62.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.12, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.448, 62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.833, 62.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.88, 62.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.855, 62.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.895, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.098, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.348, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.13, 62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.292, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.254, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.315, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.341, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.325, 62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.361, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.232, 62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.677, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.971, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.635, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.137, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.413, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.421, 62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.597, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.703, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.874, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.985, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.988, 62.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.573, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.62, 62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.646, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.314, 62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.717, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.103, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.254, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.593, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.489, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.823, 63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.763, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.558, 62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.79, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.361, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.291, 62.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.432, 62.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.159, 62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.482, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.476, 62.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.523, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.61, 62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.875, 62.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.066, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.682, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.602, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.633, 62.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.761, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.534, 63.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.9, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.96, 63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.981, 63.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.922, 63.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.998, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.027, 63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.242, 63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.159, 63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.164, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.025, 63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.03, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.9, 63.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.95, 63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.048, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.27, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.533, 62.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.645, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.301, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.89, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.855, 62.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.869, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.21, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.486, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.589, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.795, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.936, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.339, 62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.443, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.325, 62.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.306, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.289, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.459, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.323, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.442, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.431, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.923, 62.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.833, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.641, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.658, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.998, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.597, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.296, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.182, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.013, 62.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.282, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.597, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.036, 63.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.588, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.294, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.56, 62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.012, 62.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.208, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.725, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.325, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.251, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.361, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.261, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.373, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.387, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.556, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.243, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.582, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.486, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 62.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.606, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.778, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.74, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.667, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.521, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.537, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.572, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.683, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.046, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.833, 62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.501, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.501, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.453, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.469, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.448, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.55, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.477, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.824, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.251, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.321, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.764, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.349, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.189, 62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.905, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.438, 62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.36, 63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.181, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.61, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.312, 62.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.684, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.299, 62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.429, 62.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.895, 62.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.816, 63.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.76, 63.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.513, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.353, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.084, 63.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.122, 63.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.86, 63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.379, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.548, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.912, 62.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.451, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.809, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.579, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.691, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.334, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.463, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.13, 62.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.13, 62.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.255, 62.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.248, 62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.11, 62.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.972, 62.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.119, 61.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.069, 61.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.072, 61.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.875, 62.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.814, 62.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.757, 61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.632, 61.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.7, 61.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.998, 61.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.076, 61.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.446, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.532, 62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.564, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.578, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.634, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.661, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.321, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.848, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.603, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.307, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 62.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.428, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.129, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.495, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.455, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.469, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.302, 62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.338, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.782, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.707, 62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 62.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.855, 62.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.75, 62.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.87, 62.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.937, 63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.92, 64.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.75, 63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.869, 64.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.926, 64.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.264, 65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.682, 65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.422, 65.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.4, 65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.436, 65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.434, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.455, 65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.625, 65.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.834, 65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.049, 65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.999, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.701, 65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.319, 65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.77, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 70.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.171, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.528, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.114, 71.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.036, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.861, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.124, 72.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.315, 72.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.209, 72.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.542, 72.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.629, 72.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.556, 72.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.651, 72.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.6, 72.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.247, 73.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.109, 73.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.149, 73.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.035, 73.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.667, 73.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.666, 73.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.834, 73.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.663, 73.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.153, 73.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.491, 73.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.211, 73.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.574, 73.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.799, 73.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.869, 73.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.809, 73.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.505, 72.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.739, 72.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.432, 72.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 72.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.495, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.263, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.739, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.937, 71.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.798, 70.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.956, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 72.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.718, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 71.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.431, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.985, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.534, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 71.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.781, 71.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.525, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.726, 71.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.542, 71.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.723, 70.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.629, 70.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.011, 70.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 70.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 70.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.484, 70.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 70.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.867, 70.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 70.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 70.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.868, 70.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.089, 70.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 70.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.457, 70.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 70.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 70.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 70.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.966, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.216, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 70.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 70.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.268, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.136, 70.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 70.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.682, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.794, 70.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.985, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.114, 70.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.754, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.958, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.223, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.177, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.935, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.434, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.052, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.857, 70.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.747, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.932, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.544, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.579, 70.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.516, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.766, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.519, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.463, 70.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.375, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.805, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.347, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.933, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.219, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.078, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.781, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.917, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.459, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.109, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.277, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.748, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.294, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.048, 69.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.845, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.213, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.282, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.554, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.809, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.096, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.863, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.748, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.745, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.504, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.434, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.598, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.087, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.126, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.781, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.094, 70.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.264, 70.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 70.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.383, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.371, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.145, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.262, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.106, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.065, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.553, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.497, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.406, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.272, 70.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.399, 70.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.621, 70.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.628, 70.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.752, 70.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.854, 70.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 70.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.586, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.735, 70.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.742, 66.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.552, 70.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.292, 70.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.73, 70.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.883, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.882, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.801, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.387, 70.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.391, 70.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.587, 70.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.364, 70.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.367, 70.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.458, 70.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.403, 70.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 70.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.347, 70.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.528, 70.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.315, 70.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 70.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 70.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.035, 70.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.485, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 70.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 72.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.687, 72.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.673, 72.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.553, 72.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.613, 72.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.527, 72.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.298, 72.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.324, 73.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.331, 73.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.453, 73.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.657, 65.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.591, 65.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.72, 66.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.687, 65.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.872, 65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.903, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 65.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.716, 65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.673, 65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.613, 65.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.579, 65.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.58, 64.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.449, 64.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.963, 64.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.383, 64.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.367, 64.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.164, 64.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.394, 64.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.302, 64.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.439, 64.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.082, 65.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.607, 65.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.979, 65.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.788, 65.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.724, 65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.823, 64.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.822, 64.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.641, 65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.462, 65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.456, 65.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.55, 65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.654, 65.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.781, 65.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.79, 65.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.478, 65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.439, 65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.126, 65.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.104, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.062, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.109, 65.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.564, 66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.429, 66.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.426, 66.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.443, 66.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.391, 66.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.295, 66.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.291, 66.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.382, 66.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.304, 66.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.267, 66.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.379, 66.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.355, 66.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.355, 66.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.333, 66.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.356, 66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.44, 66.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.377, 66.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.363, 66.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.412, 66.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.428, 66.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.495, 66.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.729, 66.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.603, 66.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.602, 66.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.367, 66.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.695, 66.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.346, 67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.14, 67.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.257, 67.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.384, 67.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.369, 67.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.433, 67.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.608, 68.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.313, 68.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.529, 68.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.845, 68.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.012, 68.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.051, 68.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.012, 68.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.11, 68.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.893, 68.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.279, 68.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.297, 68.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.29, 68.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.361, 68.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.513, 68.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.5, 68.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.572, 68.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.552, 68.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.651, 68.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.943, 68.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.14, 68.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.067, 68.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.772, 68.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.018, 68.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.912, 68.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.214, 68.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.039, 68.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.548, 68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.846, 68.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.994, 68.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.546, 68.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.561, 68.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.022, 68.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.381, 68.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.076, 68.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.307, 68.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.332, 68.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.471, 68.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.539, 68.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.812, 68.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.224, 68.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.359, 68.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.242, 68.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.221, 68.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.347, 68.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.535, 68.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.533, 68.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.415, 68.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.647, 68.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.679, 68.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.549, 68.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.405, 68.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.404, 68.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.385, 68.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.449, 68.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.351, 68.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.349, 68.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.289, 68.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.245, 68.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.607, 68.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.097, 68.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.381, 68.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.274, 68.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.271, 68.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.397, 68.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.366, 68.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.366, 68.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.303, 68.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.401, 68.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.326, 68.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.285, 68.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.284, 68.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.313, 68.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.187, 68.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.248, 68.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.254, 68.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.085, 68.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.344, 68.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.363, 68.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.763, 68.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.758, 68.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.773, 68.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.754, 68.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.558, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.891, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.28, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.999, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.725, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.12, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.083, 69.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.819, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.16, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.607, 69.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.819, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.7, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.666, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.452, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.553, 69.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.657, 68.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.534, 68.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.962, 68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.736, 68.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.622, 68.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.811, 68.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.71, 68.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.829, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.023, 68.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.614, 68.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.769, 68.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.543, 68.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.458, 68.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.628, 68.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.523, 68.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.646, 68.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.648, 68.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.709, 68.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.703, 68.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.661, 68.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.721, 68.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.521, 68.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.767, 68.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.725, 68.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.743, 68.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.694, 68.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.907, 68.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.312, 68.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.731, 68.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.719, 68.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.732, 68.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.458, 68.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.627, 68.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.576, 68.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.52, 68.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 68.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.672, 68.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.542, 68.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.425, 68.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.889, 68.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.644, 68.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.416, 68.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.409, 68.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.708, 68.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.471, 68.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.61, 68.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.672, 69.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.754, 68.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.89, 69.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.775, 69.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.753, 69.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.629, 69.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.671, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.876, 69.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.865, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.815, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.761, 69.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.733, 69.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.783, 69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.675, 69.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.738, 69.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.627, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.581, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.622, 69.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.569, 69.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.56, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.497, 69.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.48, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.43, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.51, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.397, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.391, 69.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.467, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.132, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.47, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.328, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.779, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.985, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.878, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.81, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.01, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.925, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.919, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.201, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.031, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.53, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.602, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.741, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.813, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.951, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.777, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.512, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.187, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.654, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.927, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.09, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.21, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.971, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.038, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.057, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.065, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.067, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.209, 69.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.486, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.203, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.042, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.023, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.062, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.212, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.212, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.086, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.792, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.223, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.203, 69.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.18, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.245, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.23, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.046, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.283, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.25, 69.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.252, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.232, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.249, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.241, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.99, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.232, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.246, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.261, 69.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.109, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.203, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.321, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.311, 70.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.43, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.428, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.065, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.064, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.484, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.467, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.39, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.353, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.238, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.276, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.221, 69.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.237, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.204, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.176, 69.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.243, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.609, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.126, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.178, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.0, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.017, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.952, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.238, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.93, 69.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.873, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.176, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.755, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.998, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.134, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.957, 69.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.015, 69.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.993, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.311, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.628, 69.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.776, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.693, 69.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.93, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.681, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.802, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.001, 69.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.985, 69.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.468, 69.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.449, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.75, 69.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.741, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.944, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.507, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.929, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.949, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.315, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.157, 69.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 69.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.908, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.907, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.071, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.387, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.946, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.631, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.638, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.029, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.934, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.338, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.457, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 72.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.77, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.681, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.254, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.437, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.351, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.299, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.564, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.314, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.645, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.668, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.667, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.828, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.777, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.412, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.461, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.453, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.888, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.369, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.523, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.628, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.951, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.461, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.437, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.563, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.524, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.373, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.428, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.396, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.564, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.624, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.061, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.783, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.654, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.395, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.997, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.323, 69.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.8, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.28, 68.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.261, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.665, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.727, 68.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.874, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.974, 69.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.738, 69.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.349, 69.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.648, 68.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.749, 68.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.446, 68.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.624, 68.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.54, 68.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.597, 68.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.515, 68.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.583, 68.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.337, 68.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.513, 68.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.494, 68.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.513, 68.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.145, 68.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.461, 68.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 68.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.259, 68.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.198, 68.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.195, 68.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 68.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.442, 68.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 68.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.462, 68.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 68.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 68.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.514, 68.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.677, 68.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.705, 68.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.638, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.416, 67.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.889, 67.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.874, 67.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.091, 67.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.89, 67.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.498, 67.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.904, 67.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.889, 67.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 67.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.778, 67.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 67.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.799, 67.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.748, 67.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 66.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.465, 66.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.464, 66.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.237, 66.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.557, 66.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.552, 65.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.616, 66.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 66.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 66.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.86, 66.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.825, 66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 66.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.646, 66.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.421, 66.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 66.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.352, 66.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 66.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.039, 66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.303, 66.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.4, 66.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.844, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.06, 66.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.774, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.98, 66.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.07, 66.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.055, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.72, 64.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.041, 66.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 66.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 66.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.84, 66.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.369, 66.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.165, 66.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.446, 66.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.697, 66.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.648, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.0, 66.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.46, 66.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.804, 66.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.799, 66.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.907, 66.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.814, 66.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.854, 66.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 66.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.771, 66.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.207, 66.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.556, 66.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.765, 66.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 66.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.621, 66.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.656, 66.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.687, 66.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.666, 67.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.276, 67.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.347, 67.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.221, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.349, 67.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.331, 67.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.324, 67.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.103, 67.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.52, 67.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.59, 67.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 67.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.335, 67.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.407, 67.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.513, 67.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.089, 66.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.438, 67.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.19, 66.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.81, 66.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.651, 66.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.867, 66.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.861, 66.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.994, 66.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.651, 66.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 66.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 66.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.776, 66.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.662, 66.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 66.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.655, 66.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.851, 66.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.632, 66.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.59, 66.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.58, 66.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.304, 66.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.582, 66.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.643, 66.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.875, 66.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.564, 66.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.384, 66.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 66.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.21, 66.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.504, 66.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.58, 66.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 66.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.508, 66.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.851, 66.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.721, 66.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.666, 66.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.747, 66.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.509, 66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.293, 66.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.351, 66.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.676, 66.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 66.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.67, 66.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 66.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.69, 66.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.737, 66.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.638, 66.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.517, 66.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.546, 66.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.297, 66.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.77, 66.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.906, 66.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.466, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.665, 66.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.719, 66.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.857, 66.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.859, 66.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.691, 66.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.715, 66.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 66.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.732, 66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 66.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.808, 66.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.802, 66.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.831, 66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.821, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.342, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 66.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.425, 66.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.97, 66.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.674, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.917, 66.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.998, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.934, 66.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.862, 66.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.132, 66.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.919, 66.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.664, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.989, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.854, 66.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.869, 66.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.791, 66.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.905, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.252, 66.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.82, 66.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.252, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.261, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.067, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 66.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.025, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.131, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.188, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.291, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.414, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.227, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.178, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.178, 66.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.026, 66.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.132, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.989, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.893, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.014, 66.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.034, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.13, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.077, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.092, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.013, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.913, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.0, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.339, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.938, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.934, 66.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.654, 66.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.933, 66.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.829, 66.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.801, 66.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.711, 66.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.853, 66.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.565, 66.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.56, 66.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.416, 66.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.465, 66.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.462, 66.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.451, 66.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.97, 66.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.953, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 66.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.257, 66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.911, 66.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.042, 66.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.511, 66.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.996, 66.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.903, 66.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.754, 66.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.88, 66.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.754, 66.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.612, 66.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.317, 66.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.158, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.236, 66.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.345, 66.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.282, 66.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.064, 66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.158, 66.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.303, 66.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.345, 66.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.181, 66.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.247, 66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.186, 66.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.677, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.908, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.874, 66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.849, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.75, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.111, 66.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.623, 66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.741, 66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.792, 66.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.839, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.77, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.906, 66.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.849, 66.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.096, 66.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.921, 66.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.29, 66.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.036, 66.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.018, 66.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.664, 66.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.137, 66.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.959, 66.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.215, 66.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.76, 66.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.169, 66.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.157, 66.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.125, 66.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.286, 66.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.244, 66.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.073, 66.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.91, 66.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.132, 66.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.071, 66.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.193, 66.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.144, 66.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.144, 66.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.149, 66.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.139, 66.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.22, 66.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.111, 66.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.971, 66.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.011, 66.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.01, 66.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.216, 66.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.127, 66.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.099, 66.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.105, 66.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.119, 66.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.103, 66.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.096, 66.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.08, 66.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.056, 66.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.069, 66.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.056, 66.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.119, 66.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.074, 66.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.112, 66.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.988, 66.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.101, 66.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.023, 66.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.059, 66.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.336, 66.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.146, 66.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.005, 66.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.632, 66.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.922, 66.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.843, 66.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.929, 66.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.818, 66.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.97, 66.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.676, 66.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.667, 66.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.762, 66.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.622, 66.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 66.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.64, 66.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.585, 66.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 66.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.462, 66.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.472, 66.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.434, 66.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.726, 66.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.485, 66.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.452, 66.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.552, 66.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.538, 66.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.502, 66.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.517, 66.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.509, 66.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.476, 66.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 66.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.309, 66.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.132, 66.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.649, 67.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 66.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 66.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.044, 66.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.043, 66.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.014, 66.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.133, 66.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.062, 66.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.095, 66.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 66.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.972, 66.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.945, 66.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.947, 66.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.231, 66.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.881, 66.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.865, 66.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.903, 66.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.929, 66.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 66.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 66.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.829, 66.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.821, 66.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 66.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.727, 66.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.797, 66.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.219, 66.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.663, 66.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.711, 66.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.735, 66.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 66.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 66.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.683, 66.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.718, 66.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.659, 66.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.611, 66.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.603, 66.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.629, 66.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.56, 66.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.287, 66.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.719, 66.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.618, 66.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.595, 66.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 66.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.615, 66.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 66.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 66.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 66.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.422, 66.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.404, 66.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.379, 66.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.377, 66.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.462, 66.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.356, 66.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.305, 66.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.356, 66.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.26, 66.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.346, 66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.251, 66.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.249, 66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.248, 66.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.248, 66.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.49, 66.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.259, 66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.17, 66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.285, 66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.31, 66.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.99, 66.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 66.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.306, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.457, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.608, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.545, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.469, 66.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.696, 66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.995, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.956, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.741, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.727, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.833, 66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.624, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.68, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.603, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.676, 66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.231, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.231, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.681, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.65, 66.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.687, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.273, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.739, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.788, 66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.828, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.805, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.829, 66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.912, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.911, 66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.77, 66.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.748, 66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.929, 66.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.921, 66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.865, 66.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.753, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.356, 66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.823, 66.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.786, 66.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.69, 66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.767, 66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.767, 66.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 66.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.76, 66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.759, 66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.844, 66.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.921, 66.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.95, 66.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.284, 66.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.626, 66.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.048, 66.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.288, 66.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.443, 66.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 66.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.556, 66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.523, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.489, 66.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.512, 66.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.438, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.424, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.909, 66.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.079, 66.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.079, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.038, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.996, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.995, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.912, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.288, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.739, 66.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.876, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.8, 66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.04, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.828, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.979, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.938, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.995, 66.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.787, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.575, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.955, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.631, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.439, 66.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.86, 66.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.434, 66.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.941, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.763, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.026, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 66.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.936, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.951, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.908, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.993, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.63, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.978, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.829, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.832, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.921, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.001, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.36, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.854, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.905, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.854, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.903, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.874, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.967, 66.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.823, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.859, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.677, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.938, 66.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.605, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 66.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.416, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.694, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.771, 66.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.468, 66.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.488, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.315, 66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.658, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.15, 66.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.35, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.017, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.595, 65.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.592, 66.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.026, 66.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.866, 66.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.796, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.725, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.668, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.702, 65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.701, 65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.856, 66.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.245, 65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.886, 65.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.232, 66.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.869, 63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 66.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.083, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.294, 66.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.91, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.853, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.779, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.778, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.525, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.597, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.575, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.447, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.547, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.196, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.18, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.981, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.027, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.537, 65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.597, 65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.571, 65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.178, 65.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.473, 65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.483, 65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.453, 65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.571, 65.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.595, 65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.595, 65.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.552, 65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.542, 65.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.591, 65.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.585, 65.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.537, 65.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.527, 65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.44, 65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.329, 64.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.404, 64.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.464, 65.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.92, 64.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.415, 64.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.436, 64.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.466, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.285, 64.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 64.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 64.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.604, 64.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.589, 64.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.486, 64.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.483, 64.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.542, 64.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.374, 64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.274, 64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.274, 64.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.278, 64.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.167, 64.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.167, 64.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.98, 64.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.822, 64.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.788, 64.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.649, 64.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.767, 64.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.75, 64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.675, 64.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.654, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.558, 64.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.515, 64.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.286, 63.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.251, 63.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.309, 63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.181, 64.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.209, 63.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.912, 64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.24, 63.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.219, 63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.164, 63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.27, 63.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.416, 63.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.267, 63.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.479, 63.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.682, 63.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.056, 63.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.442, 64.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.43, 64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.344, 64.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.35, 63.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.264, 64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.255, 63.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.265, 64.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.197, 64.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.908, 64.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.199, 63.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.081, 63.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.206, 63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.217, 63.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.814, 63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.932, 63.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.91, 63.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.885, 63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.855, 63.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.019, 63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.744, 63.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.926, 63.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.992, 63.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.647, 63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.142, 63.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.052, 64.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.76, 63.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.941, 63.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.946, 63.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.135, 64.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.489, 63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.849, 63.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.843, 63.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.73, 63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.726, 63.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.93, 64.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.901, 63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.689, 63.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.641, 63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.606, 63.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.703, 63.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.505, 63.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.717, 63.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.722, 63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.869, 63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.282, 63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.2, 63.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.796, 63.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.586, 63.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.596, 63.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.951, 63.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.064, 63.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.076, 63.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.911, 64.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.337, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.335, 64.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.177, 64.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.505, 64.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.428, 64.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.376, 63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.146, 63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.188, 63.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.262, 63.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.564, 63.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.052, 63.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.935, 63.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.799, 63.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.75, 63.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.671, 63.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.028, 63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.0, 63.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.058, 63.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.978, 63.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.942, 63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.901, 63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.812, 63.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.87, 63.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.815, 63.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.716, 63.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.653, 63.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.681, 63.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.637, 63.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.174, 63.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.211, 63.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.04, 63.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.062, 63.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.805, 63.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.883, 63.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.975, 63.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.866, 63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.925, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.263, 63.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.086, 63.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.689, 63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.593, 63.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.572, 63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.462, 63.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.604, 63.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.573, 63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.384, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.507, 63.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.385, 63.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.415, 63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.411, 63.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.439, 63.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.531, 63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.522, 63.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.595, 63.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.552, 63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.586, 63.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.554, 63.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.578, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.518, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.417, 63.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.506, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.669, 63.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.454, 63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.292, 63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.315, 63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.374, 63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.396, 63.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.698, 62.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.184, 63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.499, 63.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.464, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.323, 63.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.381, 63.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.163, 63.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.444, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.532, 63.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.342, 63.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.614, 63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.38, 63.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.661, 63.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.243, 63.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.315, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.348, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.379, 63.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.208, 63.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.281, 63.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.562, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.251, 63.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.583, 63.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.838, 63.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.472, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.481, 63.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.413, 63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.216, 63.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.439, 63.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.452, 63.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.331, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.235, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.248, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.256, 63.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.283, 63.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.473, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.276, 63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.427, 63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.26, 63.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.519, 63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.51, 62.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.519, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.413, 63.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.431, 63.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.645, 63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.583, 63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.457, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.247, 63.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.492, 63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.417, 63.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.296, 63.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.289, 63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.588, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.383, 63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.605, 63.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.186, 63.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.56, 63.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.519, 63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.152, 63.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.569, 63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.596, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.526, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.513, 63.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.925, 63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.602, 63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.621, 63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.593, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.397, 63.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.393, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.396, 63.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.31, 63.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.224, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.585, 63.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.3, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.656, 62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.545, 63.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.979, 63.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.324, 63.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.355, 63.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.197, 63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.108, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.2, 63.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.346, 63.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.915, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.919, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.102, 63.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.61, 63.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.953, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.953, 63.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.233, 62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.948, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.302, 63.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.584, 62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.123, 63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.014, 63.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.918, 63.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.867, 63.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.251, 62.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.204, 63.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.937, 62.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.923, 62.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.816, 62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.768, 62.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.892, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.773, 62.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.648, 62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.688, 62.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.618, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.941, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.814, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.584, 62.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.07, 62.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.308, 62.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.709, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.158, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.593, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.732, 62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.308, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.152, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.443, 62.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.126, 62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.773, 62.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.681, 62.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.58, 62.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.574, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.355, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.598, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.543, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.435, 62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.535, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.49, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.407, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.416, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.224, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.3, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.584, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.548, 62.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.222, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.844, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.899, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.62, 62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.622, 62.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.54, 62.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.363, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.793, 62.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.856, 62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.812, 62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.387, 62.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.752, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.925, 62.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.984, 62.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.892, 62.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.472, 62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.057, 62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.07, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.844, 62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.965, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.125, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.182, 62.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.228, 62.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.527, 62.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.479, 62.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.615, 63.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.693, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.899, 63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.731, 63.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.703, 62.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.656, 62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.763, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.688, 63.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.777, 62.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.668, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.86, 62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.625, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.625, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.044, 63.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.995, 63.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.977, 63.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.739, 62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.089, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.196, 63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.166, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.554, 63.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.274, 62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.374, 63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.341, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.721, 63.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.088, 62.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.402, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.155, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.096, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.988, 62.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.07, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.037, 62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.775, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.755, 63.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.351, 63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.227, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.616, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.95, 62.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.924, 62.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.87, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.937, 62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.942, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.104, 63.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.032, 63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.057, 63.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.052, 63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.122, 63.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.218, 63.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.177, 63.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.227, 63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.227, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.336, 63.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.332, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.325, 63.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.325, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.371, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.344, 63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.451, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.529, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.528, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.465, 63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.872, 63.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.891, 63.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.922, 63.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.926, 63.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.888, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.923, 63.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.956, 63.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.007, 63.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.161, 63.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.202, 63.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.171, 63.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.184, 63.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.183, 63.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.156, 63.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.076, 63.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.051, 63.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.272, 63.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.202, 63.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.125, 63.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.087, 63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.419, 63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.27, 63.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.148, 63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.946, 63.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.109, 63.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.063, 63.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.097, 63.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.121, 63.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.015, 63.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.171, 63.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.075, 63.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.2, 63.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.246, 63.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.188, 63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.239, 63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.239, 63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.235, 63.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.799, 63.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.236, 63.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.902, 63.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.17, 63.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.202, 63.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.063, 63.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.062, 63.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.344, 63.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.18, 63.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.147, 63.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.372, 63.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.026, 63.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.13, 63.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.19, 63.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.226, 63.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.306, 63.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.932, 63.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.322, 63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.974, 63.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.275, 63.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.374, 63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.975, 63.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.267, 63.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.397, 63.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.445, 63.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.563, 63.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.192, 63.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.16, 63.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.06, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.107, 63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.907, 63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.825, 63.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.087, 63.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.213, 63.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.272, 63.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.04, 63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.378, 63.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.143, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.258, 63.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.314, 63.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.753, 63.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.704, 66.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.102, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.434, 63.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.002, 63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.444, 63.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.444, 63.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.428, 63.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.457, 63.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.449, 63.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.419, 63.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.417, 63.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.499, 63.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.62, 63.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.664, 63.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.456, 63.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.793, 63.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.921, 63.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.927, 63.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.957, 63.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.862, 63.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.017, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.002, 63.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.118, 63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.055, 63.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.139, 63.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.104, 63.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.016, 63.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.32, 63.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.226, 63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.803, 64.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.342, 63.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.565, 63.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.552, 63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.541, 63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.277, 63.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.758, 63.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.753, 63.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.743, 63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.773, 63.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.825, 63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.794, 63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.854, 63.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.805, 63.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.976, 63.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.975, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.931, 63.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.946, 64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.459, 64.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 63.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.125, 64.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.091, 64.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.103, 63.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.089, 63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.232, 63.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.895, 63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.944, 63.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.937, 63.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.915, 63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.792, 63.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.824, 63.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.829, 63.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.813, 63.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.725, 63.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.722, 63.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.721, 63.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.835, 63.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.81, 63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.51, 63.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.891, 63.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.133, 63.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.299, 63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.298, 63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.19, 63.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.43, 63.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.468, 63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.214, 63.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.358, 63.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.896, 63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.399, 63.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.387, 63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.387, 63.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.311, 63.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.45, 63.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.783, 61.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.237, 63.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.358, 63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.914, 63.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.176, 63.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.902, 63.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.959, 63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.35, 63.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.343, 63.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.244, 63.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.103, 63.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.582, 63.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.031, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.232, 63.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.178, 63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.648, 63.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.122, 63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.103, 63.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.099, 63.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.086, 63.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.688, 63.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.775, 63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.174, 63.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.193, 63.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.288, 63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.137, 63.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.219, 63.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.33, 63.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.321, 63.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.4, 63.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.322, 63.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.168, 63.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.298, 63.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.216, 63.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.998, 63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.9, 63.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.867, 63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.995, 63.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.16, 63.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.082, 64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.458, 63.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.107, 63.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.977, 63.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.2, 63.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.031, 63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.718, 63.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.595, 63.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.83, 63.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.637, 63.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.354, 63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.336, 63.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.327, 63.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.379, 63.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.372, 63.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.37, 63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.448, 63.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.681, 63.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.289, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.639, 63.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.686, 63.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.471, 63.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.555, 63.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.216, 63.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.491, 63.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.499, 63.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.312, 63.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.492, 63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.502, 63.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.53, 63.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.379, 63.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.544, 63.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.541, 63.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.246, 64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.149, 63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.524, 63.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.399, 63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.551, 63.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.492, 63.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.014, 63.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.465, 63.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.603, 63.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.482, 63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.647, 63.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.22, 63.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.728, 63.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.986, 63.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.672, 63.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.525, 63.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.624, 63.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.457, 63.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.402, 63.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.461, 63.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.034, 63.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.53, 63.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.393, 63.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.357, 63.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.44, 63.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.735, 63.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.645, 63.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.51, 63.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.537, 63.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.527, 63.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.499, 63.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.447, 63.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.446, 63.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.531, 63.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.493, 63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.723, 62.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.631, 63.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.6, 63.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.601, 63.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.698, 63.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.469, 63.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.766, 63.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.608, 63.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.484, 63.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.478, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.504, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.794, 65.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.24, 66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.877, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 65.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.675, 65.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.729, 65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.079, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.673, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.893, 65.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.004, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.817, 65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.822, 65.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.956, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.91, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.456, 65.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.803, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.02, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.433, 65.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.825, 65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.95, 65.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -57.3, 65.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -57.299, 65.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.504, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.965, 65.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.901, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.001, 65.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.974, 65.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.181, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.188, 65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.654, 65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 65.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.645, 65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.63, 65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.495, 65.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.898, 65.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.552, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.669, 64.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.821, 65.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.82, 65.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.879, 65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.977, 65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.114, 64.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.943, 65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.879, 65.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.947, 65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.139, 65.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.814, 65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.04, 65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.25, 65.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.018, 65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.582, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.805, 65.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.609, 65.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.98, 65.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.597, 65.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.596, 65.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.694, 66.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.639, 65.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.893, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.439, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.48, 65.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.605, 65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.173, 65.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.67, 65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.823, 65.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.643, 65.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.945, 65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.203, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.676, 65.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.692, 65.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.833, 65.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.612, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.829, 65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.806, 65.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.826, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.2, 65.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.166, 65.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.837, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.538, 65.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -59.697, 64.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.237, 65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.27, 65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.259, 65.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.911, 65.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.09, 65.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.713, 65.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.804, 65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.823, 65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.035, 65.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.934, 65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.62, 65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.627, 65.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.682, 64.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.705, 64.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.746, 64.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.119, 64.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.792, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.954, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.985, 62.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.901, 62.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.989, 61.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.957, 61.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.363, 65.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.783, 66.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.36, 67.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 67.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.373, 67.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.536, 67.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.298, 67.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.515, 67.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.341, 67.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.3, 67.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.319, 67.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.486, 71.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.44, 68.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.606, 66.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.235, 67.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.264, 67.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -53.472, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.456, 67.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.231, 67.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.294, 67.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.263, 68.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.279, 68.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.288, 68.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.237, 67.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.22, 68.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 68.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.226, 68.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.385, 68.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.27, 68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.395, 68.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.387, 68.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.386, 68.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.379, 68.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.367, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.387, 68.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.368, 68.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.365, 68.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.386, 68.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.265, 68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.274, 68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.371, 68.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.32, 68.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.288, 68.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.268, 68.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.942, 67.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.199, 68.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.275, 68.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.849, 68.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.487, 68.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.886, 68.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.633, 68.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.191, 67.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.345, 67.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.343, 67.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.287, 68.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.386, 68.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.501, 68.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.259, 68.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.338, 68.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.989, 67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.331, 68.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.307, 68.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.22, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.681, 68.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.42, 68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.337, 68.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.263, 68.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.61, 68.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.791, 67.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.293, 68.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.334, 68.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.334, 68.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.433, 68.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.298, 68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 68.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.2, 68.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.332, 68.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.162, 68.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.22, 68.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.219, 68.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 68.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.228, 68.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.269, 68.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.106, 68.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.276, 68.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.386, 68.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 68.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.269, 68.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.264, 68.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.343, 68.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.386, 68.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.434, 68.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.262, 68.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.187, 68.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.567, 68.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 68.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 68.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.278, 68.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 68.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.385, 68.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 68.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.407, 68.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.36, 68.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.381, 68.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 68.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.389, 68.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.322, 68.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.487, 68.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.615, 68.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.576, 68.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.749, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.621, 68.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.609, 68.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.567, 68.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.571, 68.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.446, 68.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.522, 68.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 68.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.551, 68.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.297, 68.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.244, 68.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.146, 68.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.145, 68.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 68.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.583, 68.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.329, 68.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.364, 68.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.425, 68.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.253, 68.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.532, 68.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.345, 68.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 68.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.404, 68.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.42, 68.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.419, 68.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.402, 68.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.382, 68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.65, 68.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.37, 68.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.348, 68.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.431, 68.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.822, 68.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.011, 68.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 68.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.856, 68.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.226, 68.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.508, 68.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.394, 68.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.318, 68.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 68.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.343, 68.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.328, 68.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.327, 68.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 68.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.328, 68.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 68.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.407, 68.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.343, 68.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.362, 68.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 68.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.424, 68.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.393, 68.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 68.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.4, 68.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.499, 68.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 68.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.312, 68.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.492, 68.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.095, 68.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.557, 68.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 68.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.491, 68.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.47, 68.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 68.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.49, 68.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.408, 68.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.485, 68.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 68.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.416, 68.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.503, 68.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.634, 68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.432, 68.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.454, 68.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 68.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.367, 68.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.386, 68.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.301, 68.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.785, 68.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.522, 68.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 68.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.637, 68.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.632, 68.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.561, 68.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.48, 68.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.104, 68.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 68.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 67.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.618, 68.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.708, 68.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 68.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.598, 68.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.542, 68.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.205, 68.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.602, 68.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.617, 68.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.695, 68.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.583, 68.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.288, 68.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 68.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.337, 68.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 68.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.086, 68.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.951, 68.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 68.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.761, 68.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.736, 68.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.75, 68.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.591, 68.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.567, 68.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.86, 68.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.657, 68.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.405, 68.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.931, 68.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.718, 68.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 68.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.478, 68.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.493, 68.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.791, 68.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.95, 68.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.997, 68.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.053, 68.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.064, 68.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 68.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.131, 68.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 68.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.804, 68.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.608, 68.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.11, 68.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.661, 68.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.752, 68.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.648, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.637, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.411, 70.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.586, 67.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.188, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.411, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.333, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.878, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.152, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.222, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.604, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.908, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.696, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.618, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.61, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.539, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.664, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.722, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.762, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.648, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.611, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.987, 69.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.852, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.558, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.557, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.502, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.672, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.514, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.988, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.777, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.749, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.883, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.531, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.75, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.634, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.969, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.952, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.609, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.593, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.445, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.44, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.518, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.5, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.644, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.685, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.831, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.167, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.582, 69.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.475, 68.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.875, 68.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.005, 68.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.993, 68.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.14, 68.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.277, 68.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.792, 69.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.007, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.068, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.355, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46, 69.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.498, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.584, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.085, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -51.084, 63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.435, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.981, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.14, 70.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.14, 70.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 70.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 70.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.276, 70.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.489, 70.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 70.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 70.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 70.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 70.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 70.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.463, 70.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 70.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.209, 70.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.432, 70.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.501, 70.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 70.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.436, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.449, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 70.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.554, 71.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.362, 70.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 71.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.479, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 70.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.636, 71.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.622, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.646, 71.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.06, 70.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.711, 70.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.356, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 70.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.595, 70.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 70.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 70.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 70.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.475, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.649, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45, 70.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.443, 70.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.413, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.558, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.987, 69.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.097, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.248, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.072, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.237, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.189, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.775, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.31, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.525, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.235, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.282, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.225, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.371, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.162, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.154, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.777, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.889, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.815, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.545, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.973, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.747, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.115, 70.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.734, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.772, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.742, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.713, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.894, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.347, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.356, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.945, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.406, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.968, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.536, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.343, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.476, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.566, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.495, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.443, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.311, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.937, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.864, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.88, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.847, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.146, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.259, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.98, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.946, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.945, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.815, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.613, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.753, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.939, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.063, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 69.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.204, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.239, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.159, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.338, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.255, 66.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.45, 65.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.742, 66.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.077, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.093, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.89, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.419, 66.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.933, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.028, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.724, 66.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.823, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.908, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 66.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.738, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.863, 65.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.373, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.683, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.389, 64.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.363, 65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.027, 65.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.502, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.059, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.945, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.139, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.656, 66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.853, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.495, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.083, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.151, 65.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.575, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.01, 65.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.825, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.507, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.001, 65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.268, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.931, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.358, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.709, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.606, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.076, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.47, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.383, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.393, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -58.031, 64.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.978, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.962, 65.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.454, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.197, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.258, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.605, 66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.017, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.605, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.795, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.554, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.75, 65.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.066, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.351, 65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.644, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.731, 66.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.688, 65.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.04, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.941, 65.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.29, 65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.555, 64.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.212, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.33, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.292, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 65.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.626, 66.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.484, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.067, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.748, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.949, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.645, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.089, 65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -53.48, 61.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.466, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.117, 65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.87, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.679, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.229, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -59.99, 65.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -58.675, 63.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.095, 66.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.389, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.478, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.866, 65.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.712, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.867, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.343, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.444, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.469, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.411, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.906, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.497, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 66.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.358, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -57.952, 63.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.169, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.477, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.61, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.648, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.583, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.415, 66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.597, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.835, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.991, 61.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.385, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.075, 65.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.233, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -55.277, 64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.811, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 65.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.703, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.434, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.415, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.309, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.537, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.524, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.67, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.968, 63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.391, 66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.164, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.461, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.276, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.227, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.344, 65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.307, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.862, 65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.629, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.777, 65.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.258, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.043, 65.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.465, 65.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.223, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.289, 65.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.125, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.389, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -54.699, 61.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.846, 65.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.649, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.355, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.298, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.143, 65.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.214, 67.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.175, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.08, 65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.722, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.092, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.384, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.239, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.442, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.755, 66.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.804, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.246, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.579, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.732, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.358, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.067, 65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.556, 65.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.755, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.432, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.228, 65.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.246, 64.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.391, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.899, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.958, 65.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.735, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.111, 65.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.746, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.613, 65.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 65.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.386, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.4, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.4, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.4, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.769, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.539, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.314, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.635, 66.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.697, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 65.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.888, 65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.845, 64.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.123, 65.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.817, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.69, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.973, 65.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.277, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.538, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.83, 65.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.369, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.335, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.18, 66.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.5, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.638, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.019, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.123, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 65.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.329, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.013, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.431, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.206, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.091, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.001, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.043, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.101, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.096, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.014, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.123, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 66.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.121, 66.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.911, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.981, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.239, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.571, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.059, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.027, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.063, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.059, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.059, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.056, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.067, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.069, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.08, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.106, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.189, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.233, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.803, 66.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.667, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.081, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.424, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.254, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.058, 66.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.155, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.26, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.47, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 66.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.302, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.957, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.899, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.804, 65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.976, 65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.437, 65.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.449, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.434, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.064, 65.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.393, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.971, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.535, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.254, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.374, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.522, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.525, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.976, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.378, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.934, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.284, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.337, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.011, 66.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.431, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.32, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.221, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.528, 65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.325, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.093, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.356, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.298, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.633, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.226, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.353, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.374, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.659, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.698, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.429, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.411, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.5, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.223, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.483, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.506, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.851, 65.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.385, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.57, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.406, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.086, 65.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.291, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.168, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.193, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.547, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.976, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.541, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.353, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.499, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.73, 65.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.525, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.631, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.662, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.751, 63.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.704, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.662, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.633, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.542, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.451, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.522, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.512, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.5, 62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.695, 65.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.267, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.457, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.451, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.543, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.701, 65.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.294, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.446, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.111, 65.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.236, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.372, 65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.141, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.622, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.915, 66.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.424, 65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.402, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.5, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.631, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.233, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.195, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.215, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.215, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.192, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.084, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.104, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.393, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.004, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.704, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.069, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.594, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.464, 65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.126, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.183, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.15, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.262, 66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.957, 65.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.854, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.117, 65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.454, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 65.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.329, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.343, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.102, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.346, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.135, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.208, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.971, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.513, 66.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.012, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.441, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.035, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.038, 67.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.044, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.121, 65.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.122, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.643, 66.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.66, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.917, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.262, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.832, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.864, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.832, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.875, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.868, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.846, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.016, 66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.009, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.095, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.081, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.043, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.154, 66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.271, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.54, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.378, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.379, 65.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.143, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.682, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.129, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.296, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.461, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.765, 66.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.579, 65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.453, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.575, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.337, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.337, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.487, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.273, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.715, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.151, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.524, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.501, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.222, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.132, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.33, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.197, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.212, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.391, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.733, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.112, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.961, 66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.108, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.139, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.136, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.07, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.999, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.977, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.991, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.013, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.986, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.009, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.066, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.938, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.882, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.859, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.859, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.868, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.857, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.841, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.866, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.86, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.863, 65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.883, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.87, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.12, 66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.964, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.943, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.094, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.47, 65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.113, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.095, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.088, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.123, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.076, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.147, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.112, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.192, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.111, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.379, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.029, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.212, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.503, 66.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.427, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.289, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.518, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.353, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.245, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.127, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.407, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.584, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.632, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.469, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.389, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.335, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.386, 66.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.876, 65.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.649, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.318, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.964, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.183, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.991, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.939, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.839, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.061, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.762, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.015, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.25, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.244, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.81, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.109, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.755, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.058, 65.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.341, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.901, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.555, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.495, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.057, 65.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.554, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.011, 65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.702, 65.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.685, 65.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.25, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.363, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.426, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.592, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.401, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.396, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.405, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.229, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.245, 65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.653, 66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.609, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.545, 65.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.043, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.572, 65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.485, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.69, 65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.559, 65.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.525, 65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -44.96, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.628, 65.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.103, 65.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.628, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.34, 65.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.687, 65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.329, 65.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.67, 65.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 65.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.564, 65.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.603, 65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.619, 65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.621, 65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.931, 65.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.563, 65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.562, 65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.218, 65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.218, 65.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.316, 65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 65.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.307, 65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.337, 65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.319, 65.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.208, 65.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.244, 65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 65.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.417, 65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.788, 65.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.381, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.581, 65.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.721, 66.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.528, 65.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.59, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.572, 65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.876, 65.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.862, 65.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.568, 65.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.83, 65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 65.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.602, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.626, 65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.528, 65.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.575, 65.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.496, 65.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.737, 65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.545, 65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.555, 65.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.521, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.053, 65.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.458, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.309, 65.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.02, 66.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.376, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.507, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.38, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.832, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.358, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.362, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.455, 65.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -56.74, 66.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.671, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.385, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.268, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.535, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.317, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.317, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.228, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.468, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.289, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.331, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.781, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.555, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.071, 65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.764, 65.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.596, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.301, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.121, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.416, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.386, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.356, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.713, 66.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.498, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.741, 65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.681, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -55.175, 58.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.089, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.393, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.359, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.25, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.275, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.27, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.315, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.521, 66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.454, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.425, 65.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.383, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.559, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.74, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.377, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.389, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.26, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.381, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.739, 65.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.907, 65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.366, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.799, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.418, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.411, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.515, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.325, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.615, 65.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.759, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.68, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.668, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.64, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.545, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.653, 65.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.765, 65.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.644, 65.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.667, 65.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.566, 65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.548, 65.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.689, 65.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.586, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.579, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.595, 65.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.696, 65.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.393, 66.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.843, 65.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.074, 65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.598, 65.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.69, 65.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.683, 65.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.327, 65.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.718, 65.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.04, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.489, 65.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.439, 65.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.579, 65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.527, 65.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.489, 65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.446, 65.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.461, 65.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.065, 65.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.427, 65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.374, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.518, 65.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.537, 65.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.483, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.495, 65.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.195, 65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.437, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.389, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.105, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.23, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.558, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.959, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.45, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.09, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.38, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.078, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.512, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.397, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.347, 65.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.429, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.427, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.386, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.409, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.397, 65.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.346, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.394, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.497, 65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.497, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.766, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 65.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.971, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.43, 65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.526, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.595, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.683, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.07, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.671, 65.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.682, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.572, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.172, 65.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.615, 65.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.207, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.595, 65.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.502, 65.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.534, 65.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.448, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 65.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.376, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.463, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.386, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.018, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.867, 65.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 65.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.39, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.853, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.414, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.589, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.782, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.017, 66.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.3, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.341, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.373, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.173, 65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.228, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.06, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.266, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.355, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.411, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.353, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.526, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.955, 65.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.003, 65.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.198, 64.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.184, 64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.343, 64.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.389, 64.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.481, 64.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.337, 64.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.35, 65.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.878, 65.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.422, 65.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.264, 64.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.306, 64.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.294, 64.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.712, 64.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.966, 64.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.277, 64.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.63, 64.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.243, 64.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.97, 64.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.093, 64.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.175, 65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.113, 64.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.046, 64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.017, 64.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.069, 64.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.035, 64.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.007, 64.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.922, 64.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.888, 64.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.029, 64.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.594, 64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.022, 65.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.471, 64.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.19, 64.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.437, 64.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 64.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.061, 64.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.029, 64.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.043, 64.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.969, 64.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.008, 64.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.997, 64.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 64.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.24, 64.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 64.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.209, 64.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.154, 64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.195, 64.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 64.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 64.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.253, 64.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.248, 64.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 64.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.244, 64.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.238, 64.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.278, 64.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.325, 64.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.291, 64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.009, 64.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.846, 64.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.69, 64.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.662, 64.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.321, 64.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.293, 64.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.227, 64.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 64.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.259, 64.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.077, 64.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 64.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.255, 64.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.215, 64.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.145, 64.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.109, 64.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.407, 64.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.093, 64.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 64.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.404, 64.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.985, 64.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.396, 64.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.362, 64.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.147, 64.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.825, 64.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.931, 64.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.844, 64.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.838, 64.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.816, 64.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.931, 64.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.959, 64.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.63, 64.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.648, 64.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.903, 64.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.286, 64.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.191, 64.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.304, 64.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.041, 64.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.069, 64.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.06, 64.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.851, 64.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.048, 64.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.196, 64.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.514, 64.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.107, 64.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.223, 64.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.078, 64.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.14, 64.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.204, 64.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.064, 64.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.54, 64.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.014, 64.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.592, 64.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.05, 64.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.424, 64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.081, 64.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.285, 64.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.368, 64.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.287, 64.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.971, 64.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.278, 63.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.081, 64.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.106, 64.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.162, 64.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.223, 64.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.833, 64.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.885, 64.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.82, 64.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.088, 64.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.08, 64.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.174, 64.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.097, 64.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.007, 64.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.158, 64.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.968, 64.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.367, 64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.172, 64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.113, 64.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.394, 64.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.272, 64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.066, 64.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.888, 64.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.164, 64.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.567, 64.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.278, 64.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.037, 64.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.024, 64.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.25, 64.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.291, 64.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.162, 64.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.31, 64.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.925, 64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.078, 64.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.173, 64.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.436, 64.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.392, 64.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.395, 64.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.05, 63.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.592, 64.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -59.397, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.467, 64.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.537, 64.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.286, 64.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.245, 64.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.409, 64.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.398, 64.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.442, 64.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.423, 64.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.757, 64.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.092, 64.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.448, 64.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.126, 64.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.372, 64.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.804, 64.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.353, 64.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -20.536, 56.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.716, 64.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.119, 64.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.45, 64.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.954, 63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.097, 64.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.055, 64.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.231, 64.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.854, 64.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.012, 64.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.031, 64.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.478, 64.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.604, 70.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.398, 64.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.446, 64.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.438, 64.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.004, 64.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.254, 64.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.276, 64.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.039, 64.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.158, 64.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.178, 64.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.16, 64.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.065, 64.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.096, 64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.077, 64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.53, 64.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.318, 63.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.007, 63.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.168, 63.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.311, 63.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.383, 63.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.408, 63.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.543, 63.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.593, 63.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.532, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.738, 62.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.797, 62.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.958, 62.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.749, 61.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.304, 62.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.688, 62.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.073, 62.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.783, 62.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.709, 62.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.555, 62.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.06, 62.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.627, 62.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.559, 62.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.545, 62.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.46, 62.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.568, 62.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.514, 61.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.589, 61.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.257, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.228, 62.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.147, 62.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.319, 61.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.255, 62.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.433, 61.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.818, 61.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.54, 61.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 61.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.566, 62.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.502, 62.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.601, 62.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 62.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.694, 62.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.279, 61.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.231, 61.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.326, 61.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.388, 61.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.891, 61.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.839, 61.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.832, 61.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.833, 61.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.113, 60.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.751, 61.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.402, 61.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.708, 61.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.794, 61.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.72, 61.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.918, 60.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.804, 61.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.943, 61.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.858, 61.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.184, 61.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.855, 61.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.114, 61.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.119, 61.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.134, 61.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.403, 61.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.391, 61.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.005, 61.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.621, 61.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.294, 61.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.452, 61.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.454, 61.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.4, 61.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.336, 61.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.94, 61.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.308, 61.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.48, 62.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.788, 61.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.392, 61.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.583, 61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.305, 62.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.874, 61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.283, 62.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.921, 62.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.411, 62.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.639, 62.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.652, 61.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.839, 61.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.863, 61.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.968, 61.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.868, 61.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.549, 61.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.93, 61.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.592, 61.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.566, 61.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.283, 61.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.333, 61.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.794, 61.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.292, 61.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.957, 61.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.006, 61.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.194, 61.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.058, 61.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.001, 61.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.032, 61.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.379, 61.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.969, 61.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.461, 61.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.525, 61.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.413, 61.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.44, 61.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.193, 61.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.936, 61.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.383, 61.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.606, 61.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.064, 61.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.014, 61.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.225, 61.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -127.31, 70.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.282, 61.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.78, 61.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.635, 61.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.261, 60.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.281, 61.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.141, 61.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.187, 60.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.588, 61.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.599, 60.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.622, 61.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.578, 61.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.655, 61.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.504, 61.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.708, 60.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.56, 60.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.57, 60.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.567, 60.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.372, 60.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.35, 60.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.307, 61.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.329, 61.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.221, 60.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.629, 61.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.707, 61.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.462, 61.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.316, 61.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.748, 61.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.761, 61.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.762, 61.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.769, 61.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.882, 61.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.902, 61.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.573, 61.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.847, 61.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.114, 61.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.953, 61.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.032, 61.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.607, 61.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.586, 61.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.611, 61.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.726, 61.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.645, 61.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.04, 61.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.194, 62.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.201, 62.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.689, 62.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.545, 62.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.375, 61.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.226, 62.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.98, 61.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.031, 61.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.972, 61.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.901, 61.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.144, 61.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.206, 61.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.145, 61.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.102, 61.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.08, 61.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.18, 61.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.209, 61.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.262, 61.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.261, 61.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.52, 62.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.382, 62.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.374, 62.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.359, 62.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.229, 62.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.346, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.198, 62.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.062, 62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.216, 62.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.109, 62.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.024, 62.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.004, 62.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.722, 62.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.251, 62.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.849, 61.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.078, 61.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.85, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.073, 61.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.682, 61.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.797, 61.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.875, 62.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.146, 62.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.059, 62.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.838, 62.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.916, 62.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.01, 62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.052, 62.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.091, 62.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.26, 62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.068, 62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.941, 62.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.736, 62.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.771, 62.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.546, 62.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.754, 62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.312, 62.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.835, 62.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.169, 62.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.182, 62.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.283, 62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.706, 62.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.667, 62.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.644, 62.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.934, 62.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.925, 62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.507, 62.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.694, 62.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.312, 61.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.852, 62.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.788, 62.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.237, 62.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.522, 62.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.49, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.29, 62.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.575, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.346, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.529, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.531, 62.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.21, 62.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.936, 62.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.019, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.102, 62.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.128, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.397, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.058, 62.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.836, 62.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.578, 62.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.168, 73.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.585, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -53.955, 64.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.03, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.128, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.892, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.988, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.985, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.337, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.62, 66.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.69, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.549, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.572, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.365, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.191, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.107, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.693, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.227, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.08, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.686, 66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.013, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.103, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.632, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.056, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.818, 65.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.336, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.832, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.329, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.533, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.824, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.981, 65.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.067, 65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 65.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.923, 65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.743, 65.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.085, 65.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.713, 65.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.901, 65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.785, 65.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.867, 65.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.928, 65.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.678, 64.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.759, 65.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 65.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.784, 65.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.847, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.049, 65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.888, 65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.919, 65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.93, 65.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.693, 65.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.915, 65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.914, 65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.627, 65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.912, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.855, 65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.032, 65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.956, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.061, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.997, 65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.968, 65.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.207, 65.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.076, 65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 65.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.711, 65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.031, 65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.138, 65.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.168, 65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.969, 65.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.238, 65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.189, 65.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.159, 65.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.051, 65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.862, 65.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.994, 65.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.255, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.075, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.389, 64.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.041, 65.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.855, 65.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.361, 65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.944, 65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.377, 65.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.955, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.888, 65.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.411, 65.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 65.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.397, 65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.281, 65.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.598, 65.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.962, 65.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 65.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.266, 65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.876, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.97, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.228, 65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.124, 65.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.173, 65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.249, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 65.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.124, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.188, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.048, 65.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 65.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.218, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.12, 65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.026, 65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.739, 65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.535, 65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.466, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.154, 65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.834, 65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.862, 65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.81, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.208, 65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.923, 65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.74, 65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.825, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.855, 65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.024, 65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.757, 65.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.249, 65.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 65.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.922, 65.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.609, 65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.012, 65.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.89, 65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.891, 65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.498, 64.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 65.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.834, 65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.829, 65.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.891, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.959, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.8, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.937, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.813, 65.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.051, 65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.07, 65.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.917, 65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.89, 65.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.802, 65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.969, 65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.758, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.89, 65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.894, 65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.882, 65.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.98, 65.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.775, 65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.862, 65.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.974, 65.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.746, 65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.977, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.943, 65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.745, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.115, 65.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.435, 65.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.091, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 65.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.111, 65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.974, 65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.001, 65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.424, 83.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.682, 65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.566, 65.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.464, 65.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.025, 65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.605, 65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.991, 65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.98, 65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.036, 65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.964, 65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.099, 65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.139, 65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.134, 65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.222, 65.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.041, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.087, 65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.716, 65.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.725, 65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.653, 65.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.603, 65.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.437, 65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.419, 65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.527, 65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.522, 65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.553, 65.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.473, 65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.511, 65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.531, 65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.658, 65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.531, 65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.781, 65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.618, 65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.589, 65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.287, 65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.78, 65.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.701, 65.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.683, 65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.519, 65.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.766, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.586, 65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.484, 65.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.245, 65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.52, 65.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.136, 65.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.195, 65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.414, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.732, 65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.553, 65.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.741, 65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.963, 65.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.837, 65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.605, 65.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.512, 65.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.427, 65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.497, 65.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.441, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.48, 65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.479, 65.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.41, 65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.527, 65.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.536, 65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.576, 65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.55, 65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.502, 65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.655, 65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.847, 65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.664, 65.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.601, 65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.42, 65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.499, 65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.527, 65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.537, 65.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.864, 65.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.732, 65.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.88, 65.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 65.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.595, 65.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.571, 65.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.683, 65.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.498, 65.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.597, 65.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.351, 65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.69, 64.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.338, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.421, 65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.335, 65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.473, 65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.326, 65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.453, 65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.153, 65.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.14, 65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.113, 65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.113, 65.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.118, 65.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.129, 65.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.192, 65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.333, 65.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.421, 65.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.728, 65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.647, 65.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.664, 65.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.679, 65.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.785, 65.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.825, 65.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.032, 65.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.885, 65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.929, 65.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.014, 65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.925, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.888, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.503, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.475, 65.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.367, 65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.651, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.1, 65.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.167, 65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.123, 65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.099, 65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.122, 65.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.758, 65.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.122, 65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 65.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.08, 65.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.099, 65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.92, 65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.123, 65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.066, 65.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.219, 65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.189, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.226, 65.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.376, 65.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 65.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.522, 65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.315, 65.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.228, 65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.847, 65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.724, 65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.862, 65.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.05, 65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.604, 65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 65.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.071, 65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 65.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.158, 65.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 65.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.648, 65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.741, 65.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.699, 65.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.308, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.739, 65.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.242, 65.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.691, 65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.665, 65.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.991, 65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 65.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.911, 65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.707, 65.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.753, 65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.712, 65.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.481, 65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.23, 65.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.389, 65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.384, 65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.342, 65.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.354, 65.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.507, 65.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.455, 65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.441, 65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.404, 65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.426, 65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.442, 65.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.55, 65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.3, 65.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.208, 65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.044, 65.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.896, 65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.057, 65.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.749, 65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.717, 65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.749, 65.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.731, 65.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.74, 65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.81, 65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.726, 65.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.693, 65.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.681, 65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.929, 65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.746, 65.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.495, 65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.503, 65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.414, 65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.422, 65.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.494, 65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.547, 65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.76, 65.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.891, 65.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.832, 65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.727, 65.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.781, 65.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.736, 65.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.682, 65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.666, 65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.648, 65.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.701, 65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.529, 65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.742, 65.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.876, 65.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.079, 65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.824, 65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.876, 65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 65.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.672, 65.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.762, 65.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.537, 65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.444, 65.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.596, 65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.991, 65.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 65.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.122, 65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.208, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.54, 65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.648, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.644, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.602, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.594, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.62, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.681, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.907, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.592, 65.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.657, 65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.649, 65.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.172, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.469, 65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.632, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.634, 65.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.693, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.897, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.539, 64.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.825, 65.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.664, 65.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 65.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.61, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.624, 65.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.956, 65.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.734, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.501, 65.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.343, 65.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.39, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.16, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.933, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.077, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 66.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.723, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.719, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.816, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.832, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.787, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.881, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.993, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.822, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.469, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 65.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 65.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.779, 65.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.59, 65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.597, 65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.784, 65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.683, 65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.834, 65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.312, 64.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.389, 64.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.479, 64.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.28, 64.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.979, 64.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.203, 64.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.572, 64.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.358, 64.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.281, 64.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.283, 64.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.514, 64.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.397, 64.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.387, 64.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.302, 64.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.171, 64.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.56, 64.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.572, 64.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.651, 64.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.656, 64.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.596, 64.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.004, 64.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.988, 64.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.711, 64.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.241, 64.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 64.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.236, 64.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.558, 64.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.329, 64.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.239, 64.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.236, 64.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.221, 64.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.194, 64.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.244, 64.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 64.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.237, 64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 64.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 64.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.237, 64.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.187, 64.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.102, 64.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.168, 64.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.237, 64.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.223, 64.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.099, 64.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.281, 64.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.219, 64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.24, 64.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.17, 64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.8, 64.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.147, 64.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 64.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.203, 64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.43, 63.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.961, 63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.379, 63.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.3, 63.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.264, 63.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.167, 63.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.264, 63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.244, 63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.206, 63.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.313, 63.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.14, 63.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.38, 63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.118, 63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.288, 63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.282, 63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.24, 63.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.296, 63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.154, 63.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.822, 63.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.94, 63.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.93, 63.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.92, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.9, 63.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.355, 62.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.075, 62.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.423, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.372, 62.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.523, 62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.595, 62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.531, 62.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.576, 62.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.691, 62.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.628, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.69, 63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.973, 63.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.943, 63.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.767, 63.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.744, 63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.71, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.717, 63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.692, 63.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.705, 63.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.822, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 63.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 63.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.665, 62.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.808, 62.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.622, 62.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.693, 62.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.763, 62.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.785, 62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.759, 62.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.764, 62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.7, 62.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.71, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.716, 62.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.841, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.617, 62.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.382, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.65, 62.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.694, 63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.941, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.665, 63.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.768, 63.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.812, 63.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.837, 63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.849, 63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.859, 63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.838, 63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.935, 63.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.853, 63.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.823, 63.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.829, 63.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.847, 63.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.034, 63.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 63.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.687, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.721, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.701, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.675, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.715, 63.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.91, 63.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.565, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.599, 62.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.242, 62.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.715, 62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.545, 62.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.549, 62.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.014, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.936, 62.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.946, 62.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.044, 61.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.978, 62.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.218, 61.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 61.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.707, 61.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.228, 61.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.908, 61.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.087, 61.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.558, 61.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.637, 61.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.793, 62.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.952, 61.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 75.308, 80.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.556, 61.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.582, 61.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.695, 61.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.674, 61.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.607, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.771, 62.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.754, 62.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.323, 62.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.735, 62.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.835, 62.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.62, 62.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.538, 62.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.857, 60.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.383, 61.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.466, 62.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.795, 62.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.831, 62.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.992, 62.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.018, 62.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.89, 62.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.413, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.421, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.405, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.134, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.05, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.581, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.647, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.644, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.594, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.346, 62.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.163, 62.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.032, 62.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.05, 62.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.474, 62.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.081, 62.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.935, 62.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.88, 61.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.56, 61.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.713, 61.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.616, 61.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.537, 61.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.395, 61.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.284, 61.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.473, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.004, 62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.837, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 62.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.079, 62.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.061, 62.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.825, 62.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.159, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.249, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.881, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -23.578, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.861, 62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.302, 63.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.685, 63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.434, 63.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.674, 63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.346, 64.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.333, 64.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.362, 64.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.255, 64.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.338, 64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.876, 65.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.377, 65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.482, 65.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.536, 65.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.616, 65.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.585, 65.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.498, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.616, 65.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.785, 65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.876, 65.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.811, 65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.743, 65.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.851, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.928, 65.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.923, 65.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.728, 65.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.805, 65.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.768, 65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.931, 65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.821, 65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.838, 65.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.843, 65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.826, 65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.816, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.815, 65.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.748, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.939, 65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.796, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.728, 65.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.956, 65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.921, 65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.003, 65.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.675, 65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -56.859, 63.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.74, 65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.724, 65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.891, 65.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.73, 65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.736, 65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.778, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.776, 65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.881, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.534, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.759, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.059, 65.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.912, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.425, 65.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.846, 65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.839, 65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.872, 65.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.893, 65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.801, 65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.687, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.346, 65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.444, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.506, 65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.5, 65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.455, 65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.857, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.844, 65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.595, 65.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.423, 65.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.42, 65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.584, 65.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.354, 65.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.514, 65.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.341, 65.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.588, 65.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.449, 65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.514, 65.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.351, 65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.802, 65.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.862, 65.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.925, 65.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.843, 65.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.938, 65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.95, 65.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.719, 64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.922, 64.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.771, 64.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -29.585, 59.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.378, 65.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 66.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.585, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.242, 66.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.335, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.315, 65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.377, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.207, 65.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.932, 65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.597, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.139, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.645, 66.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.315, 64.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.406, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.578, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.412, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.26, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.466, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.296, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.278, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.899, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.106, 65.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.901, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.334, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.851, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.65, 66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 66.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 66.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.951, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.255, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.331, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.399, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.378, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.426, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.797, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.88, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.896, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.855, 66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.037, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.863, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.019, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.028, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.157, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.342, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.693, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.014, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.714, 66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.654, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.889, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.813, 66.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.792, 66.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.879, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.117, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.907, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.822, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.432, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.421, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.335, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.227, 65.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.181, 65.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.662, 64.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.275, 64.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.833, 65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.701, 65.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.701, 65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.644, 65.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.178, 65.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.696, 65.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.856, 64.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.394, 65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.633, 65.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.428, 65.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.6, 65.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.365, 65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.186, 65.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.229, 65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.245, 65.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.144, 65.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 65.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.237, 65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.232, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.287, 65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.156, 65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.202, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.181, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.19, 65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.1, 65.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.117, 65.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.104, 65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.099, 65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.161, 65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.159, 65.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.741, 65.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.319, 65.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.513, 65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 65.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.407, 65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.518, 65.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 65.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.586, 65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.733, 65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.159, 65.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.497, 65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.491, 65.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.732, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.381, 65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 65.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 65.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.155, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.402, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.623, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.473, 65.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.165, 66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.11, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.945, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.213, 65.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.267, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.209, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.825, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.824, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.424, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.301, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.611, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.469, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.569, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.69, 65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.351, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.504, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.884, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.226, 65.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.232, 65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.284, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.326, 64.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.362, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.177, 65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.34, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.291, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.156, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.244, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.22, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.215, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.167, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.079, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.677, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.844, 66.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.923, 66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.769, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.82, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.835, 66.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.579, 65.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.941, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.129, 66.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.605, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.779, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.71, 66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.777, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.912, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -58.06, 64.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.8, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -59.205, 64.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.895, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.096, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.497, 66.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.729, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.742, 66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.833, 66.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.766, 66.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.948, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.758, 66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.782, 66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.381, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.775, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.677, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.47, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.233, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.021, 65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -49.496, 68.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.214, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.473, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.874, 66.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.662, 66.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.377, 63.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.342, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.769, 65.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.234, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.784, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.238, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.345, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.929, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.016, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.314, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.084, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.635, 65.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.277, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.973, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.412, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.427, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.634, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.091, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.431, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.609, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.554, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.497, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.035, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.68, 65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.344, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.639, 65.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.711, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.663, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.868, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.621, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.691, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.316, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.529, 65.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.232, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.329, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.081, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.013, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.541, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.023, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.234, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.025, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.965, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.076, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.108, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.979, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.138, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.091, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.245, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.182, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.246, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.262, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.195, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.27, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.465, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.398, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.455, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.985, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.407, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.406, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.455, 65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.408, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.753, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.461, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.316, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.399, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.457, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.113, 65.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.179, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.428, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.324, 65.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.687, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.349, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.923, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.712, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.369, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.276, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.418, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.458, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.482, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 65.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 66.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.357, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.217, 65.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.297, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.015, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.318, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.303, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.785, 65.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.458, 65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.263, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.17, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.357, 66.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.974, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.259, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.584, 65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.506, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.263, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.985, 65.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.357, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.465, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.307, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.506, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.857, 65.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.543, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.565, 65.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.079, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.668, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.214, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.266, 65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.124, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.451, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.011, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.489, 65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.307, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.563, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.691, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.981, 66.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.782, 66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.96, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.932, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.575, 66.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.37, 65.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.08, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.896, 66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.716, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.719, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.491, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.011, 66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.652, 66.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.764, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.895, 66.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.683, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.768, 65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.571, 66.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.89, 66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.919, 63.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.78, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.755, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.09, 66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.989, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.145, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.849, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.769, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.778, 66.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.258, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.57, 66.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.344, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.89, 66.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.671, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.995, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.176, 66.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.025, 66.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.839, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.949, 66.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.748, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.795, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.055, 66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.767, 66.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.374, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.57, 66.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.397, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.256, 63.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.562, 66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.674, 66.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.617, 66.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.513, 66.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -53.612, 64.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.675, 66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.605, 66.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.658, 66.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 66.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.721, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.65, 66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.995, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.491, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.673, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.543, 65.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.018, 66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.387, 66.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.276, 66.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.922, 66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.045, 66.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.933, 66.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.759, 66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.91, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.404, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.673, 66.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.446, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.935, 66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.929, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.725, 66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.044, 66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.594, 66.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.203, 66.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.408, 66.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.625, 65.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 66.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.92, 66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.724, 66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.675, 66.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.813, 66.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.913, 65.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.915, 66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.628, 66.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.321, 65.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.677, 66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.779, 66.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.824, 66.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.506, 66.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.155, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.365, 63.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.617, 66.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.495, 66.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.416, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.511, 66.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.75, 66.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.888, 66.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.58, 66.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.098, 66.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.088, 66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.003, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.708, 66.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.671, 66.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.239, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.308, 66.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.666, 66.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.3, 54.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.635, 66.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.776, 66.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.5, 66.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.881, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.677, 66.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.922, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.656, 66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.714, 66.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.65, 66.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.616, 66.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 66.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.577, 66.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.752, 66.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.674, 66.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.795, 66.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.489, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.419, 66.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.017, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.689, 66.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.305, 65.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.697, 65.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.831, 66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.875, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.841, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.847, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.859, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.856, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.891, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.928, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.867, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.86, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.057, 66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.136, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.818, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.787, 65.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.197, 66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.895, 66.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.615, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.268, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.833, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.086, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.6, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.929, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.879, 66.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.628, 66.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.819, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.123, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.952, 66.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.308, 65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.882, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.958, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.876, 67.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.66, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.697, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 66.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.904, 66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.774, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.992, 66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.977, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.714, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.542, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.5, 66.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.547, 66.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.617, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.553, 66.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.861, 66.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.942, 66.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.483, 66.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.948, 66.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.656, 66.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.581, 66.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.43, 66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.223, 66.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.945, 66.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.883, 66.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.176, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.588, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.719, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.665, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.914, 66.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.548, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.834, 66.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.881, 66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.649, 66.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.698, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.166, 66.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.607, 66.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.9, 66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.67, 66.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.663, 66.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.708, 66.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.739, 66.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.507, 66.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.69, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.663, 66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.002, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.557, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.552, 66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.47, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 66.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.526, 66.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.267, 66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.653, 66.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.741, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.539, 66.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.813, 66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.735, 66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.032, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.579, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 66.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.783, 66.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.834, 66.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.089, 66.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.897, 66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 66.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.499, 66.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.54, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.763, 66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.814, 66.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.976, 66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 66.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.771, 66.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.829, 66.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.442, 66.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.63, 66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.721, 66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.613, 66.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.223, 66.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.678, 66.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.618, 66.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 66.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.831, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.139, 66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.634, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.753, 66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.578, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.683, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.838, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.817, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.749, 66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.78, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.857, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.706, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.716, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.749, 66.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.744, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.68, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.043, 66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.546, 66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.696, 66.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.764, 66.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.721, 66.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.665, 66.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.721, 66.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.687, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.267, 66.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.917, 66.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.776, 66.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.684, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.689, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.379, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.92, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.707, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.956, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.975, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.094, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.499, 66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.991, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.861, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.581, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.673, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.805, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.227, 66.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.688, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.909, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.775, 66.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.878, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.886, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.314, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.72, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.015, 66.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.782, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.86, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.701, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.762, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.874, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.07, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.803, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.369, 66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.855, 66.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.057, 63.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.601, 66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.697, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.669, 66.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 66.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.76, 66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.688, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.543, 66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.823, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.748, 66.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.778, 66.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.325, 65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.065, 66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.745, 66.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.824, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 66.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.899, 66.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.718, 66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.723, 66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.771, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.851, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.779, 66.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.563, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.884, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.908, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.993, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.062, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.03, 66.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.033, 66.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.129, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.492, 66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.763, 66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.095, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.062, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.261, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.191, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.968, 66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.127, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.445, 65.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.366, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.406, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.442, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.432, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.457, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.497, 65.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.341, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.07, 65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.684, 65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.376, 65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.551, 65.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.56, 65.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.523, 65.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.664, 65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 65.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.594, 65.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.744, 65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.963, 65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.613, 65.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 65.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.483, 65.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.666, 65.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.415, 65.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.524, 65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.502, 65.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 65.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.419, 65.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.165, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.477, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.58, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.581, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.493, 65.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.02, 65.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.318, 65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 65.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.577, 65.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.43, 65.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.432, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.506, 65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 65.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.454, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.534, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 65.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.355, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 65.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.429, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 65.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.096, 65.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.529, 65.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 65.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.572, 65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.189, 65.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.457, 65.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.558, 65.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.449, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.409, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.721, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.335, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.248, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.062, 65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.302, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.091, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.878, 65.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.275, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.173, 65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.276, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.191, 65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.144, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.223, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.192, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.181, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.169, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.549, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.191, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.075, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.003, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.017, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.837, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.707, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.858, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.8, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.78, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.88, 66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.793, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.853, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.813, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.762, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.824, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.823, 66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.747, 66.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.896, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.885, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.634, 66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 66.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.789, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.829, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.909, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.766, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.78, 66.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.79, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.795, 66.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.703, 66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.911, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.812, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.956, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.833, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.86, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.864, 66.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.056, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.065, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.222, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.107, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.258, 65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.301, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.359, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.346, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.409, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.412, 66.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.397, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.158, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.331, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.19, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.107, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.086, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.157, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.953, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.025, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.088, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.478, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.743, 65.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.961, 66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.076, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.937, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.203, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.928, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.599, 66.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.907, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.917, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.803, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.777, 66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.78, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.725, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.806, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.769, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.816, 66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.763, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.813, 66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.763, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.771, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.724, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.339, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.792, 66.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 66.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.785, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.851, 66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.793, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.769, 66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.803, 66.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.763, 66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.891, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.771, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.903, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.694, 66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.882, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.01, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.311, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.828, 66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.284, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.315, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.718, 65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.457, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.205, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.22, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.141, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.066, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.357, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.062, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.048, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.09, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.986, 66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.126, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.986, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.04, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.078, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.811, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.718, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.952, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.321, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.301, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.172, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.276, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.165, 65.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.145, 66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.231, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.302, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.683, 66.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 65.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.291, 65.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.398, 65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.597, 65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.446, 65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.909, 65.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.978, 65.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.181, 65.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.394, 65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.919, 65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.275, 65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.232, 65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.37, 64.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.33, 64.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.369, 64.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.335, 64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.417, 64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.336, 64.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.43, 65.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.463, 64.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.361, 64.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.387, 64.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.369, 64.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.436, 64.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.599, 64.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.406, 64.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.379, 64.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.428, 64.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.46, 64.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.389, 64.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.163, 64.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.377, 64.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.154, 64.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.237, 64.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.976, 64.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.99, 64.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.954, 64.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.53, 63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.514, 63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.5, 63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.494, 63.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.612, 63.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.503, 63.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.534, 63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.523, 63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.498, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.604, 63.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.489, 63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.201, 63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.208, 63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.202, 63.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.191, 63.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.186, 63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.192, 63.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.23, 63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.157, 63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.109, 63.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.171, 63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.287, 63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.477, 63.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.405, 63.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.66, 63.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.446, 63.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 63.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.819, 63.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 63.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.891, 63.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.761, 63.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.848, 63.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.807, 63.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.832, 63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.787, 63.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.756, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.889, 63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.889, 63.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.879, 63.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.897, 63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.792, 63.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.858, 63.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.878, 63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.9, 63.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.857, 63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.878, 63.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.009, 63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.36, 63.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.645, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.68, 63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.71, 63.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.869, 63.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.947, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.606, 62.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.38, 62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.159, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.217, 62.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.318, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.139, 62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.151, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.965, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.158, 62.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.085, 62.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.226, 62.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.806, 61.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.861, 61.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.771, 61.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.784, 61.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.973, 61.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.026, 61.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.301, 61.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.216, 61.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.421, 61.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.703, 61.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.608, 61.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.665, 61.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.633, 61.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.701, 61.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.781, 61.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.282, 62.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.388, 62.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.302, 62.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.331, 62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.445, 62.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.888, 62.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.915, 62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.936, 62.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.146, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.283, 62.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.279, 62.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.273, 62.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.33, 62.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.675, 62.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.513, 62.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.641, 62.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.673, 62.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.719, 62.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.724, 62.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.709, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.792, 62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.816, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.169, 62.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.686, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.801, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.729, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.429, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.772, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.08, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.252, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.164, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.188, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.217, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.294, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.027, 62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.819, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.074, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.189, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.267, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.085, 62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.183, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.877, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.881, 62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.758, 62.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.668, 62.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.319, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.988, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.986, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.033, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.971, 62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.938, 62.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.007, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.014, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.058, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.088, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.226, 62.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.893, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.715, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.19, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.189, 62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.199, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.354, 62.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.349, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.406, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.367, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.373, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.167, 62.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.191, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.242, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.274, 62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.138, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.197, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.022, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.216, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.183, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.239, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.211, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.287, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.382, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.396, 62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.461, 62.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.477, 62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.963, 62.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.597, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.598, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.415, 62.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.668, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.606, 62.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.605, 62.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.575, 62.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.529, 62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.539, 62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.482, 62.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.503, 62.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.478, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.604, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.476, 62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.254, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.158, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.204, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.668, 62.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.447, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.451, 62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.426, 62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.407, 62.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.062, 63.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.068, 63.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.107, 63.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.292, 63.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.322, 63.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.173, 63.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.213, 63.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.096, 63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.208, 63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.037, 63.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.867, 63.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.958, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.979, 63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.833, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.863, 63.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.79, 63.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.965, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.896, 63.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.888, 63.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.883, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.276, 62.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.324, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.385, 62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.515, 63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.605, 63.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.653, 63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.625, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.827, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.05, 63.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.019, 63.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.054, 63.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.05, 63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.082, 63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.038, 63.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.729, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.84, 63.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.59, 63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.591, 63.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.556, 63.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.573, 63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.616, 63.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.455, 63.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.358, 63.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.356, 63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.384, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.474, 63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.79, 63.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.39, 63.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.486, 63.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.403, 63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.294, 63.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.476, 63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.381, 63.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.048, 63.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.097, 63.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.023, 63.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.624, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.582, 63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.431, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.629, 63.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.482, 63.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.43, 62.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.437, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.33, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.409, 63.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.337, 63.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.264, 63.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.278, 63.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.348, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.446, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.517, 63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.456, 63.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.191, 62.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.199, 63.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.225, 62.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.726, 62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.025, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.923, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.001, 62.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.095, 62.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.032, 62.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.738, 62.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.027, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.872, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.995, 62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.765, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.788, 62.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.775, 62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.779, 62.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.799, 62.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.814, 62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.799, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.773, 62.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.691, 62.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.876, 62.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.538, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.936, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.879, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.931, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.086, 62.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.065, 62.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.074, 62.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.02, 62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.825, 62.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.554, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.094, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.185, 63.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.376, 63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.528, 63.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.443, 63.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.436, 63.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.412, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.373, 63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.34, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.453, 63.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.537, 63.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.531, 63.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.545, 63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.698, 63.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.695, 63.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.603, 63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.592, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.569, 63.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.559, 63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.611, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.164, 62.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.465, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.176, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.38, 63.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.578, 63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.686, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.689, 63.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.611, 63.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.449, 63.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.433, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.457, 63.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.831, 63.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.841, 63.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.942, 63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.974, 63.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.092, 63.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.639, 63.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.957, 63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.083, 63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.008, 63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.088, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.172, 63.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.782, 63.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.215, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.697, 63.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.141, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.113, 63.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.107, 63.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.075, 63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.396, 63.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.976, 63.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.065, 63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.069, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.018, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.024, 63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.888, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.003, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.811, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.856, 63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.9, 63.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.91, 63.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.861, 63.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.88, 63.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.86, 63.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.893, 63.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.927, 63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.148, 63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.23, 63.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.992, 63.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.423, 63.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.854, 63.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.189, 63.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.433, 63.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.362, 63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.677, 63.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.691, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.574, 63.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.364, 63.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.619, 63.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.641, 64.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.673, 64.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.784, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.764, 64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.682, 64.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.471, 64.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.404, 64.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.2, 64.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.455, 64.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.516, 64.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.935, 63.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.73, 63.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.989, 63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.944, 63.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.949, 63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.941, 63.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.977, 63.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.866, 63.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.859, 63.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.141, 63.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.169, 64.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.07, 64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.095, 64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.047, 64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.952, 64.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.815, 64.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.919, 64.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.907, 64.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.99, 64.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.846, 64.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.938, 64.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.905, 64.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.007, 64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.662, 64.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.5, 64.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.555, 64.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.555, 64.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.569, 64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.47, 64.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.541, 64.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.448, 64.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.678, 64.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.49, 64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -27.09, 55.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.677, 63.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.582, 63.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.444, 63.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.858, 63.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.441, 63.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.349, 63.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.406, 63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.24, 63.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.216, 63.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.139, 63.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.1, 63.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.936, 63.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.958, 63.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.786, 63.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.771, 63.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.651, 63.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.605, 63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.0, 63.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.913, 63.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.775, 63.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.915, 63.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.951, 63.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.8, 63.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.822, 63.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.1, 63.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.308, 63.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.475, 63.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.133, 63.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.385, 63.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.383, 63.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.298, 63.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.551, 63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.345, 63.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.367, 63.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.367, 63.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.0, 63.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.344, 63.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.526, 63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.31, 63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.377, 63.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.395, 63.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.66, 63.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.428, 63.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.398, 63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.254, 63.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.402, 63.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.435, 63.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.486, 63.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.448, 63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.499, 63.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.476, 63.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.42, 63.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.165, 63.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.242, 63.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.169, 63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.108, 63.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.715, 62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.793, 62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.307, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.487, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.96, 66.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.695, 64.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.593, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.693, 66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.664, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.375, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.301, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.535, 65.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.201, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.444, 65.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.463, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.318, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.48, 63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.708, 65.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.551, 65.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.326, 65.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.593, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.494, 65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.863, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.003, 65.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.345, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.693, 65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.565, 65.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.689, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.503, 65.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.7, 65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.442, 65.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.577, 65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.583, 65.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.456, 65.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.483, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.603, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.197, 65.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.296, 65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.923, 65.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.559, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.639, 65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.471, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.255, 65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.683, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.601, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.169, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.808, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.199, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.806, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.515, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.747, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.704, 65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.061, 66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.632, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.495, 66.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.63, 65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.291, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.036, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.266, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 66.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.918, 66.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.263, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.042, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.281, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.782, 66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.423, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.353, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.265, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.053, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.412, 66.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.546, 65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.054, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.243, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.423, 65.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.479, 65.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 65.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.493, 65.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.029, 65.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.016, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.743, 65.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.042, 65.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.024, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.644, 65.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.247, 65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.335, 65.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.967, 65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.151, 63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.516, 66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 65.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.602, 65.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.906, 65.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.919, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.599, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.596, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.603, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.589, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.687, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.514, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.718, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.751, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.646, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.911, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.807, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.983, 66.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.61, 65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.036, 65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.63, 65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.49, 65.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.636, 65.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.059, 65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.731, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.631, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.538, 65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.716, 64.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.618, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.407, 65.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.5, 65.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.567, 65.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 66.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.092, 66.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.023, 65.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.773, 66.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.565, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.422, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.498, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.469, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.778, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.378, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.998, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.825, 65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.363, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.345, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.275, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.478, 65.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.104, 65.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.468, 65.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.34, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.421, 65.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.06, 65.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.96, 65.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 65.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.41, 65.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.007, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.631, 65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.954, 65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.864, 65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 65.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.588, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.202, 65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.087, 67.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.448, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.514, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.818, 65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.6, 65.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.617, 65.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.656, 65.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.657, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.393, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -52.157, 63.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.349, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.194, 65.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.084, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.654, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.984, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.841, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.297, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.592, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.262, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.484, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.683, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.281, 66.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.266, 65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.124, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 65.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.319, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.638, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.605, 65.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.103, 65.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.555, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.733, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.499, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.725, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.314, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.812, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.445, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.265, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.838, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.107, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.529, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.863, 66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.363, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.498, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.359, 65.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.442, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.448, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.188, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.344, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.298, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.596, 65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.376, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.097, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.7, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.475, 66.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.057, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.132, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.055, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.197, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.712, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.949, 66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.606, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.083, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.465, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.359, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.374, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.119, 65.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.365, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.648, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.237, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.223, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.232, 65.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.469, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.802, 65.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.206, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.362, 65.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.277, 65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.425, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.06, 65.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.336, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.652, 65.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.934, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.995, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.148, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.72, 65.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.008, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.993, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.886, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.316, 66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.622, 66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.821, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.617, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.135, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.241, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.588, 65.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.318, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.521, 65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.673, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.59, 65.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.523, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.795, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.769, 65.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.781, 65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.447, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.451, 65.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.415, 65.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.597, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.63, 65.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.759, 65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.598, 66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.184, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.146, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.073, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.03, 65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.993, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.118, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.772, 66.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.113, 65.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.529, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 65.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.471, 65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.041, 65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.202, 66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.045, 65.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.05, 65.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.083, 65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.094, 65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.034, 65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.053, 65.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.982, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.89, 65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.928, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.927, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.945, 65.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.871, 65.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.803, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.111, 65.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.046, 65.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.044, 65.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.982, 65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.188, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.096, 65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.046, 65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.064, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.911, 65.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.864, 65.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.779, 65.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.779, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.759, 65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.767, 65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.656, 65.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 65.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.909, 65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.131, 65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.831, 65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.847, 65.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.922, 65.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.907, 65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.893, 65.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.944, 65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.006, 65.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.877, 65.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.847, 65.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.596, 65.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.312, 64.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 65.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.66, 65.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.612, 65.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.292, 65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.236, 65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.236, 65.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.245, 65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.167, 65.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.14, 65.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.141, 65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.158, 65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.037, 65.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.023, 65.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.973, 65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.218, 65.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.052, 65.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.088, 65.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.084, 65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.058, 65.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.08, 65.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.072, 65.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.51, 65.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.0, 65.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.974, 65.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.996, 65.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.962, 65.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.053, 65.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.778, 65.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.795, 64.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.651, 64.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.658, 64.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.541, 64.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.617, 64.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.683, 64.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.679, 64.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.646, 64.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.741, 64.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.737, 64.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.586, 64.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.907, 64.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.579, 65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.619, 64.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.549, 64.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.763, 64.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.623, 64.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.796, 64.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.781, 64.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.722, 64.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.9, 64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.873, 65.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.872, 65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.936, 65.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.848, 65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.667, 65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.514, 67.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.94, 65.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.875, 65.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.779, 65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.29, 65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.878, 65.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.897, 65.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.901, 65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.0, 65.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.009, 65.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.086, 65.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.107, 65.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.092, 65.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.229, 65.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.181, 65.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.182, 65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.076, 65.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.144, 65.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.413, 65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.222, 65.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.175, 65.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.247, 65.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.317, 65.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.309, 65.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.069, 65.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.825, 65.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.822, 65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.573, 65.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 65.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.893, 65.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.864, 65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.859, 65.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.885, 65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.891, 65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.878, 65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.956, 65.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.731, 65.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.882, 65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.888, 65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.231, 62.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.895, 65.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.829, 65.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.891, 65.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.835, 65.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.952, 65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.012, 65.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.758, 64.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.277, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 65.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.824, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.953, 65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.923, 65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.897, 65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.895, 65.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.875, 65.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.872, 65.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.026, 65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.959, 65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.014, 65.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.386, 65.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.948, 65.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.993, 65.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.914, 65.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.994, 65.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.932, 65.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.879, 65.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.872, 65.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.082, 64.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.654, 65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.192, 64.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.336, 64.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.143, 64.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.106, 64.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.246, 64.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.192, 64.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.105, 64.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.155, 64.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.161, 64.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.874, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.124, 64.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.081, 64.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.117, 64.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.069, 64.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.134, 64.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.135, 64.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.063, 64.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.079, 64.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.99, 64.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.06, 64.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.351, 64.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.162, 65.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.17, 64.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.315, 64.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.285, 64.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.364, 64.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 64.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.602, 64.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.692, 64.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.731, 64.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.034, 64.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.508, 64.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.341, 64.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.387, 64.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 64.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.417, 64.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.236, 64.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.32, 64.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.926, 64.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.218, 63.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.935, 63.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 64.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 64.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.936, 64.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.028, 63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.747, 64.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.868, 64.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.232, 63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.239, 63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.745, 63.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.749, 63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.958, 63.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.943, 63.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.939, 63.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 63.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.542, 63.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.737, 63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.781, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.196, 63.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.859, 63.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.797, 63.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.831, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.871, 63.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.824, 63.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.778, 63.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.693, 63.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.661, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.741, 63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.742, 63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.685, 63.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.697, 63.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.705, 63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.368, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.415, 62.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.432, 62.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.553, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.628, 62.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.465, 62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.585, 62.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.623, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 63.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.751, 63.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.843, 63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.781, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.419, 63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.337, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.349, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.235, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.593, 65.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.541, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.297, 63.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 66.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.751, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.27, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.557, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.12, 66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.894, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.904, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.73, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.893, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.063, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.59, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.05, 66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.913, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.583, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.008, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.661, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.669, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.965, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.997, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.787, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.862, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.818, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.833, 66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.739, 65.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.435, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.509, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.811, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.03, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.905, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.889, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.844, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.836, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.02, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.613, 66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.724, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.949, 66.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.912, 66.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.91, 66.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.735, 66.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.707, 66.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.805, 66.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.899, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -57.575, 65.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 66.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.129, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.898, 66.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.16, 66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.748, 66.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.572, 66.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.042, 66.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.239, 66.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.624, 66.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.627, 66.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.488, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 66.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.731, 66.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.728, 66.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.761, 66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.789, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.268, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.206, 65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.619, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.518, 66.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.793, 66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.622, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.241, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.884, 66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.39, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.764, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.855, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.713, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.728, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 66.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.892, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.108, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.181, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.82, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.127, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.691, 66.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.805, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.039, 66.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.642, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.823, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.782, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.778, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.391, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.956, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.093, 66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.463, 65.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.424, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.414, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.193, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.953, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.936, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.778, 66.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.783, 66.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.551, 66.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.828, 66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.919, 66.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.515, 66.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.738, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.951, 66.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.875, 66.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 66.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.756, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.841, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.397, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.4, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.933, 65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.238, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.451, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.525, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -30.811, 71.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.796, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.196, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.009, 66.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.059, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.087, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.946, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.704, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.998, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.104, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.087, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.059, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.139, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.97, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.95, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.935, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.97, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.8, 66.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 65.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.52, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.904, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.426, 66.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.434, 65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.812, 66.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.807, 66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.577, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.903, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.103, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.379, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.669, 66.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.378, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.19, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.131, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.407, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.246, 66.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.358, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.277, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.193, 65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.376, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.424, 66.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.823, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.109, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.155, 66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.8, 66.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.854, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.928, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 66.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.771, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.805, 66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.763, 66.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.719, 66.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.611, 66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.798, 66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.74, 66.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.704, 66.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.012, 66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.501, 67.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.787, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.894, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.104, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.978, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.029, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.044, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.095, 66.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.031, 66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.227, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.018, 66.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.242, 66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.031, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.92, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.931, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.696, 66.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.436, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.152, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.134, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.9, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.045, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.345, 65.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.925, 65.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.92, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.954, 66.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.748, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.961, 66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.984, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.803, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.043, 66.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.623, 66.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.138, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.909, 66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.822, 66.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.859, 66.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.929, 66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.554, 66.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.683, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.862, 66.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.838, 66.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.775, 66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.819, 66.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.695, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 66.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.86, 66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.103, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.183, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.714, 66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.762, 66.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.566, 66.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.109, 66.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.727, 66.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.616, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.743, 66.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.837, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.782, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.81, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.837, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.821, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.776, 66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.802, 66.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.904, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.066, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.735, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.841, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.615, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.523, 65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.668, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.815, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.585, 65.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 65.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.5, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.446, 65.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.322, 65.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.065, 65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.051, 65.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.027, 65.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.045, 65.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.997, 65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.022, 65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.227, 65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.504, 65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.136, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.762, 65.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.768, 63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.494, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.488, 63.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.434, 63.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.474, 63.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.677, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.64, 63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.738, 63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.818, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.688, 63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.246, 62.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.086, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.724, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.938, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.989, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.784, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.766, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.705, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.038, 62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.11, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.058, 62.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.188, 62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.248, 62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.116, 62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.161, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.242, 62.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.246, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.1, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.124, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.116, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.192, 62.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.143, 62.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.18, 62.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.685, 62.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.382, 62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.542, 62.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.408, 62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.476, 62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.338, 62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.358, 62.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.7, 62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.68, 62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.605, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.111, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.677, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.732, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 107.489, 82.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.667, 62.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.996, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.64, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 99.559, 82.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.652, 63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.265, 63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.42, 62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.405, 62.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.589, 62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.594, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.349, 62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.205, 62.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.108, 62.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.345, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.419, 62.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.396, 62.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.397, 62.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.801, 62.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.815, 62.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.788, 62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.517, 63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.033, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.029, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.001, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.006, 62.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.853, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.915, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.636, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.589, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.579, 62.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.692, 62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.574, 62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.381, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.285, 62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.34, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.15, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.043, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.365, 62.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.348, 62.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.322, 62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.243, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.247, 62.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.232, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.325, 62.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.389, 62.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.403, 62.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.353, 62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.315, 62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.373, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.382, 62.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.37, 62.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.337, 62.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.303, 62.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.3, 62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.054, 62.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.144, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 29.997, 78.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.505, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.401, 62.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.088, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.218, 62.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.152, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.162, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.217, 62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.475, 62.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.862, 62.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.583, 62.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.152, 62.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.225, 62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.147, 62.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.475, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.133, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.473, 62.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.18, 62.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.166, 62.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.016, 62.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.249, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.175, 62.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.091, 62.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.123, 62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.122, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.123, 62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.993, 62.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 62.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 62.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.494, 62.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.718, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.68, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.761, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.947, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.831, 62.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.84, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.101, 62.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.777, 62.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.05, 62.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.04, 62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.972, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.008, 62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.046, 62.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.153, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.147, 62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.172, 63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.239, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.849, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.946, 63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.387, 62.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.392, 62.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.495, 62.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.496, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.316, 63.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.197, 63.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.216, 63.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.302, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.015, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.012, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.992, 63.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.986, 62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.066, 62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.018, 62.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.931, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.061, 62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.9, 62.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.958, 62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.885, 63.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.074, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.038, 63.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.036, 63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.143, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.741, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.244, 63.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.292, 62.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.506, 63.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.362, 63.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.395, 63.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.494, 63.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.437, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.452, 63.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.513, 63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.58, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.487, 63.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.484, 63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.842, 63.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.675, 63.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.62, 63.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.657, 63.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.638, 63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.541, 63.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.555, 63.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.613, 63.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.556, 63.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.612, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.166, 63.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.316, 63.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.213, 63.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.11, 63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.218, 63.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.249, 63.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.037, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.534, 63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.029, 62.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.565, 62.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.652, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.344, 62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.079, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.199, 62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.044, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 62.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.863, 62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.818, 62.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.261, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.806, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.848, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.019, 62.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.02, 62.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.986, 62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.902, 62.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.417, 62.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.314, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.235, 62.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.659, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.471, 62.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.109, 62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.258, 62.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.272, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.213, 63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.67, 63.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.271, 63.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.65, 63.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.73, 64.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.112, 64.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.075, 64.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.183, 64.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.12, 64.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.283, 65.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.088, 64.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.203, 64.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.702, 64.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.646, 64.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.853, 64.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 65.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.331, 65.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.442, 65.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.002, 65.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.931, 65.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.807, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.103, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.239, 65.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.241, 65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.257, 65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.785, 65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.695, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.772, 65.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.788, 65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.73, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -56.486, 63.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.247, 65.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 65.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.038, 65.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.578, 65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.104, 65.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.016, 65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.801, 65.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.813, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.489, 65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.769, 65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.664, 65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.057, 65.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.846, 65.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.783, 65.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.696, 65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.692, 65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.688, 65.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.485, 65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.589, 65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.61, 65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.611, 65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.663, 65.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.56, 65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.157, 65.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.397, 65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.591, 65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.63, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.583, 65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.994, 65.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.587, 65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.352, 65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.575, 65.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.553, 65.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.554, 65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.533, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.538, 65.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.541, 65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.553, 65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.413, 65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.566, 65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.625, 65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.693, 65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.638, 65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.625, 65.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.687, 65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.724, 65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.456, 65.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.806, 65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.9, 65.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.715, 65.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.728, 65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.639, 65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.695, 65.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.766, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.758, 65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.285, 65.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.315, 65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.796, 65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.82, 65.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.531, 65.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.377, 65.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.375, 65.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.069, 64.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.348, 65.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.267, 65.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.228, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.812, 65.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.295, 65.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.273, 65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.569, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.6, 65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.816, 65.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.88, 65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.735, 65.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.875, 65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.962, 65.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.893, 65.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.838, 65.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.138, 84.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.096, 65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.971, 65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.83, 65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.892, 65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.325, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.911, 65.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.891, 65.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.892, 65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.818, 65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.821, 65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.026, 65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.707, 65.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.786, 65.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.115, 65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.943, 65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 65.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.755, 65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.798, 65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.616, 65.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.335, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.549, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.563, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.513, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.484, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.381, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.429, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.058, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.235, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.847, 66.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.18, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.784, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.204, 66.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.674, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.009, 66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.891, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.511, 66.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.063, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.031, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.874, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.071, 66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.264, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.021, 65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.824, 66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.085, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.081, 66.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.054, 66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.936, 66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.802, 66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.235, 66.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.097, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.045, 66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.54, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.665, 65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.13, 66.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.29, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.384, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.399, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.539, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.256, 65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.148, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.262, 65.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.287, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.421, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.123, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.942, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.823, 66.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.988, 66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.115, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.906, 66.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.86, 66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.931, 66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.076, 65.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.2, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.887, 65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.206, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.987, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.916, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.72, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.208, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.861, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.919, 66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.573, 66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.903, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.056, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.913, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.308, 66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.963, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.94, 66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.179, 66.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.851, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.619, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.145, 66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.151, 66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.029, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.212, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 66.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.034, 66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.609, 66.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.139, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.294, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.997, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.195, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.5, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.437, 65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.303, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.55, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.698, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.016, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.373, 65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.153, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.137, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.069, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.542, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.92, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.47, 66.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.563, 66.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.407, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.886, 66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 66.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.797, 66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.707, 66.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.744, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.862, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.092, 66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.112, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.898, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.912, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.337, 66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.147, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.988, 66.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.969, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.709, 65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.727, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.093, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.105, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.076, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.865, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.333, 65.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.952, 65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.892, 65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.057, 65.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.427, 65.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.435, 65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.269, 65.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.511, 65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.293, 65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.269, 65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.168, 65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.275, 65.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.202, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.789, 65.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.48, 65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.909, 65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.832, 65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.652, 65.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.586, 65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.662, 65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.962, 65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.104, 64.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.091, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.098, 64.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.097, 64.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.08, 64.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.102, 64.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.128, 64.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.038, 64.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.062, 64.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.915, 64.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.109, 64.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 63.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.82, 63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.851, 63.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.75, 63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.699, 63.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.748, 63.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.808, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 63.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.888, 63.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.593, 63.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 63.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.809, 63.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.766, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.834, 63.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.693, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.341, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.384, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.381, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.241, 62.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.202, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.205, 62.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.185, 62.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.196, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.996, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.148, 62.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.158, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.198, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.256, 62.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.197, 62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.393, 62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.486, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.648, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.552, 62.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.428, 62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.97, 62.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.335, 62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.318, 62.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.159, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.419, 62.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.453, 62.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.605, 62.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.446, 62.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.052, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.078, 62.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.542, 61.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.99, 61.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.672, 61.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.81, 61.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.83, 61.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.941, 61.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.931, 61.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.965, 61.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.036, 61.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.174, 61.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.336, 61.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.282, 61.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.174, 61.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.102, 61.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.202, 61.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.882, 61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.411, 62.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.455, 62.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.436, 62.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.417, 62.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.241, 62.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.36, 62.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.588, 62.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.129, 62.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.126, 62.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.334, 62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.831, 62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.558, 62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.077, 62.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.004, 62.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.299, 62.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.226, 62.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.295, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.203, 62.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.585, 62.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.652, 62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.671, 62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.651, 62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.638, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.732, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.752, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.756, 62.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.703, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.833, 62.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.177, 62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.291, 62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.145, 62.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.13, 62.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.31, 62.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.525, 62.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.426, 62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.393, 62.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.387, 62.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.821, 62.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.747, 62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.832, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.842, 62.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.045, 62.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.784, 62.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.04, 62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.915, 62.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.922, 62.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.145, 62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.178, 62.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.303, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.189, 62.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.16, 62.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.175, 62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.171, 62.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.171, 62.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.091, 62.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.999, 62.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.027, 62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.07, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.121, 62.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.11, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.272, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.273, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.425, 62.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.181, 62.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.239, 62.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.24, 62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.213, 62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.196, 62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.192, 62.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.949, 62.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.565, 62.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.649, 62.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.551, 62.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.723, 62.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.692, 62.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.769, 62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.855, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.145, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.661, 62.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.906, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.932, 62.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.972, 62.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.236, 62.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.524, 62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.682, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.678, 62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.737, 62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.764, 62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.859, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.14, 62.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.132, 62.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.185, 62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.16, 62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.198, 62.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.157, 62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.165, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.119, 62.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.897, 62.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.899, 62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.919, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.682, 63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.362, 63.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.483, 63.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.621, 63.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.632, 63.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.977, 63.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.405, 63.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.247, 63.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.54, 63.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.578, 63.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.574, 63.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.616, 63.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.575, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.434, 63.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.326, 63.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.345, 63.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.583, 63.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.545, 63.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.824, 63.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.699, 63.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.867, 63.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.739, 63.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.341, 63.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.579, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.525, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.465, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.404, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.458, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.46, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.445, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.442, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.431, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.434, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.437, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.441, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.419, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.412, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.364, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.431, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.396, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.376, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.382, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.242, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.254, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.255, 69.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.292, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.239, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.249, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.263, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.267, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.768, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.798, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.798, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.831, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.783, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.787, 69.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.801, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.792, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.782, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.766, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.816, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.804, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.789, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.787, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.814, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.786, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.795, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.809, 69.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.799, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.784, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.786, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.783, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.783, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.787, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.797, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.715, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.801, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.787, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.782, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.723, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.794, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.793, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.796, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.773, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.799, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.775, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.797, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.796, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.802, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.792, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.8, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.796, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.795, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.793, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.804, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.794, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.8, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.805, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.821, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.799, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.83, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.791, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.799, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.794, 69.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.793, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.8, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.791, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.8, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.804, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.623, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.798, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.795, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.796, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.831, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.794, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.793, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.817, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.793, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.874, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.749, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.804, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.749, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.706, 69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.009, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.786, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.801, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.808, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.869, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.794, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.88, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.764, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.328, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.823, 69.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.912, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.817, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.715, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.814, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.024, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.697, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.921, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.796, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.921, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.981, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.779, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.766, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.759, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.679, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.802, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.821, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.815, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.82, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.825, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.818, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.815, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.818, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.817, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2, 67.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.336, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.916, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.911, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.875, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.725, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.857, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.822, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.838, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.823, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.717, 69.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.771, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.865, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.149, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.998, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.884, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.528, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 69.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.395, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.275, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.46, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.88, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.116, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.311, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.413, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.329, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.216, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.387, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.98, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.949, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.482, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.471, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.583, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.454, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.439, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.478, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.474, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.47, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.2, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.606, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.558, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.553, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.419, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.265, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.523, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.893, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.589, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.885, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.866, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.911, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.533, 69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.035, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.136, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.315, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.31, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.66, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.823, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.694, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.862, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.872, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.177, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.202, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.331, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.406, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.392, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.483, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.483, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.501, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.505, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.604, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.56, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.625, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.63, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.749, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.137, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.088, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.855, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.181, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.981, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.436, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.434, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.495, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.571, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.625, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.607, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.605, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.501, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.616, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.533, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.635, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.839, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.827, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.153, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.851, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.913, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.853, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.103, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.541, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.687, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.414, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.435, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.578, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.786, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.407, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.997, 70.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.193, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.444, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.617, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.597, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.826, 70.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.691, 70.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.077, 70.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.204, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.214, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.366, 70.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.112, 70.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.001, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.197, 70.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.335, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.404, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.483, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.357, 71.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.503, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.771, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.837, 71.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.928, 71.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.831, 71.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.989, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.146, 71.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.754, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.265, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.286, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.443, 72.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 72.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.171, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.266, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 72.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 72.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.795, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 72.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.1, 72.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 72.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.979, 72.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 72.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.391, 72.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 72.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.304, 72.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.309, 72.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.467, 72.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 72.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.435, 72.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.341, 72.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 72.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.502, 72.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 72.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.642, 72.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.449, 72.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 72.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.527, 72.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.514, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.284, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 72.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 72.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 72.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66, 72.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.685, 72.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.821, 72.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 72.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.91, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 72.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.564, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.064, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 71.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.584, 70.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.521, 70.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49, 70.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.461, 70.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.957, 70.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.374, 70.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.296, 70.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.244, 70.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.594, 70.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.613, 70.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.635, 70.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.326, 70.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.969, 70.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.999, 70.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.226, 70.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.127, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.005, 70.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.028, 70.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.971, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.908, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.041, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.882, 70.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.467, 70.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.592, 70.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.526, 70.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.467, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.209, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.506, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.638, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.805, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.643, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.457, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.309, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.238, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.548, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 68.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 68.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.026, 68.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.086, 68.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.947, 68.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 68.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 68.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.079, 69.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.022, 69.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.99, 68.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.324, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.577, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.485, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.428, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.576, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.62, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.659, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.713, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.784, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.009, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.222, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.372, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.835, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.208, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.559, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.539, 69.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.835, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.802, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.941, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.995, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.121, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.335, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.27, 69.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.559, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.782, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.975, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.653, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.838, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.029, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.149, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.505, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.538, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.939, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.048, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.718, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.348, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.688, 70.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.739, 70.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.715, 70.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.898, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.541, 70.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 70.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 71.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.367, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.383, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.975, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.991, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.855, 70.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.816, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.035, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.674, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.777, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.462, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.269, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.185, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.135, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.944, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.777, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.783, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.896, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.702, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.645, 69.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.645, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.562, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.863, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.515, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.433, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.316, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.248, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.799, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.746, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.314, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.74, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.998, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.692, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.029, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.943, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.957, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.901, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.939, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.826, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.003, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.152, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.689, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.323, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.224, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.32, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.459, 69.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.332, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.199, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.011, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.22, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.51, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.66, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 71.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.159, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.164, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.175, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.242, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.408, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.11, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.949, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.958, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.801, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.732, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.643, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.432, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.538, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.567, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.66, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.761, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.674, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.733, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.854, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.994, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.724, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.813, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.805, 69.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.819, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.942, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.867, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.272, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.076, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.794, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.295, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.192, 70.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.44, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.539, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.539, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.427, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.4, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.425, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.365, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.323, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.005, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.438, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.403, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.418, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.285, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.871, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.603, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.5, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.547, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.503, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.039, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.436, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.302, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.371, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.345, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.622, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.441, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.389, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.356, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.309, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.26, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.549, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.771, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 69.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.52, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.457, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.456, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.445, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.441, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.444, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.52, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.347, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.302, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.438, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.313, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.453, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.267, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.566, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.523, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.371, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.371, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.495, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.499, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.596, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.377, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.6, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.932, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.368, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.343, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.93, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 69.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.307, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.455, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.244, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.269, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.266, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.495, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.41, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.476, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.449, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.482, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.543, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.502, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.534, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.53, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.427, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.778, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.468, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.182, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.578, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.395, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.346, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.371, 69.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.651, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.298, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.506, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.191, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.075, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.78, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.199, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.485, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.361, 70.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.706, 70.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 70.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.281, 71.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.466, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.557, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.527, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 71.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.441, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.65, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.311, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 72.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.751, 72.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 72.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.801, 72.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.812, 72.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.813, 72.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.076, 72.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.091, 72.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.169, 72.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.669, 72.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.384, 72.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.323, 72.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.398, 72.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.706, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.41, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.022, 72.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.175, 72.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.472, 72.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.405, 72.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.695, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.599, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.664, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.668, 72.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.469, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.604, 72.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.6, 72.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.679, 72.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.888, 72.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.749, 72.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.296, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 72.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.703, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.568, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.653, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.574, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.511, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.65, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.708, 72.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.55, 72.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.534, 72.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.158, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.854, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.809, 72.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.619, 72.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.663, 72.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.55, 72.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.424, 72.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.346, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.365, 72.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.381, 72.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.424, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.496, 72.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.418, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.812, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.637, 72.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.855, 71.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.174, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.998, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.624, 72.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.635, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.747, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.679, 72.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.711, 72.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.76, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.839, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.453, 72.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.433, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.656, 72.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.519, 72.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.765, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.561, 72.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.45, 72.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.524, 72.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.524, 72.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.601, 72.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.724, 72.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.72, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.686, 72.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.563, 72.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.786, 72.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.07, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.4, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.062, 72.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.0, 72.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.866, 72.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.407, 72.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.844, 72.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.927, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.841, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.721, 72.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.869, 72.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.877, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.824, 72.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.917, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.824, 72.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.743, 71.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.382, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.299, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.166, 72.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.461, 72.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.286, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.271, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.039, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.199, 72.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.866, 72.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.951, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.98, 72.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.888, 72.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 72.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.85, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 72.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66, 72.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.756, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.747, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 72.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.939, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 72.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.818, 72.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.758, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.228, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 72.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.756, 72.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 72.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.693, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.581, 72.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 72.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.646, 72.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 72.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.577, 72.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 72.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.386, 72.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 72.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.427, 72.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.157, 72.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 72.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 72.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.531, 72.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.394, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 72.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.508, 72.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 72.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.271, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.422, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 72.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.173, 72.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 72.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 72.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.737, 72.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 72.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 72.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 72.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 72.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.423, 72.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.489, 72.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 72.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.595, 72.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.463, 72.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.659, 72.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.28, 72.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 72.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 72.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 72.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 72.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.533, 72.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.774, 72.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 72.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.326, 72.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 72.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 72.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.467, 72.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.498, 72.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.48, 72.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 72.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.466, 72.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 72.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 72.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65, 72.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 72.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.737, 72.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.693, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 72.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 72.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 72.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 72.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.228, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.176, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.729, 72.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.763, 72.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.727, 72.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.564, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.841, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.967, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.972, 72.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.983, 72.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.117, 72.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.056, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 72.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 72.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.098, 72.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.085, 72.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.861, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.849, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.667, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.524, 72.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 71.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.266, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.388, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.613, 71.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 71.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 71.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 71.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.118, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 71.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.137, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 71.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.124, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.131, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 71.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36, 71.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.21, 71.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 71.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.474, 71.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.739, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.718, 71.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.63, 71.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.749, 71.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.704, 71.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.781, 71.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.923, 71.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.921, 71.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.906, 71.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.076, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.628, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.96, 71.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.818, 71.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.774, 71.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.882, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.903, 71.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.832, 71.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.672, 71.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.92, 71.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.793, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.745, 71.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.776, 71.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.979, 71.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.974, 71.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.915, 71.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.979, 71.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.119, 71.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.833, 71.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.875, 71.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.857, 71.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.968, 71.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.956, 71.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.887, 71.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.81, 71.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.865, 71.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.015, 71.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.739, 71.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.986, 71.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.998, 71.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.524, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.977, 71.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.13, 71.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.202, 71.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.131, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.927, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.309, 71.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.86, 71.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.484, 71.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.195, 71.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.044, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.007, 71.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.915, 71.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.079, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.147, 71.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.145, 71.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.11, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.103, 71.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.958, 71.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.953, 71.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.951, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.117, 71.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.859, 71.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.135, 71.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.048, 71.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.818, 71.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.946, 71.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.065, 71.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.542, 71.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.949, 71.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.897, 71.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 71.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.428, 71.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.452, 71.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.562, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 71.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.593, 71.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.496, 71.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 71.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 71.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.933, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 71.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.021, 71.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 71.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 71.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 70.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 70.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.925, 70.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.778, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.954, 71.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 70.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31, 70.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.555, 70.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 70.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.924, 70.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.934, 70.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.813, 70.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.881, 70.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.891, 70.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.608, 70.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.642, 70.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 70.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.728, 70.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.941, 70.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.872, 70.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 70.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 70.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77, 70.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 70.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 70.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 70.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.435, 70.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 70.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 71.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 71.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 71.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.657, 71.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 71.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 71.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95, 71.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 71.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 71.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.954, 71.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.103, 71.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 71.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.186, 71.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 71.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.242, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.085, 71.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.151, 71.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.216, 71.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.198, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.132, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.122, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.125, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.517, 71.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.083, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.126, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.131, 71.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.976, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 71.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.311, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.195, 71.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.045, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.108, 71.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.142, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.133, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.118, 71.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.133, 71.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.152, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.213, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.203, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.001, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.888, 71.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.972, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.842, 71.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.111, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.073, 71.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.023, 71.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.117, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.123, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.111, 71.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.996, 71.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.122, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.179, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.116, 71.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.872, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.203, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.057, 71.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.132, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.006, 71.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.179, 71.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.281, 71.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.183, 71.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.093, 71.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.935, 71.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.883, 71.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.918, 71.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.904, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.863, 71.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.878, 71.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.474, 71.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.665, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.461, 71.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.786, 71.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.886, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.472, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.761, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.162, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.638, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.814, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.554, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.747, 70.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.642, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.061, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.793, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.74, 70.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.707, 70.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.988, 70.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.097, 70.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.569, 70.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.796, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.649, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.902, 70.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.852, 70.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.872, 70.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.679, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.828, 70.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.007, 71.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.825, 70.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.486, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.474, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.435, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.432, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.572, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.124, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.118, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.137, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.323, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.357, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.211, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.446, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.46, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.524, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.697, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.474, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.484, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.498, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.391, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.516, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.81, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.45, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.201, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.225, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.295, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.547, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.45, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.736, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.629, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.524, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.679, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.052, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.454, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.672, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.579, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.002, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.359, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.343, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.427, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.424, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.545, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.977, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.735, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.293, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.283, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.28, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.314, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 69.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.406, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.424, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.466, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.417, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.445, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.604, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.562, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.607, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.495, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.528, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.502, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.342, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.357, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.405, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.473, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.291, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.396, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.408, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.518, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.443, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.467, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.531, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.529, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.533, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.751, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.378, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.134, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.55, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.351, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.383, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.666, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.582, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.504, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.712, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.834, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.316, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.604, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.65, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.629, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.625, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.695, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.492, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.582, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.535, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.534, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.722, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.554, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.569, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.432, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.545, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.431, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.436, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.331, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.314, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.326, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.346, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.286, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.273, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.193, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.242, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.237, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.257, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.013, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.159, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.245, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.26, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.135, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.132, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.131, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.294, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.307, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.308, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.29, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.35, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.314, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.406, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.355, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.441, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.464, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.402, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.094, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.688, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.343, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.264, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.57, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.41, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.3, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.512, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.576, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.451, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.433, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.417, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.389, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.41, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.195, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.134, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.051, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.216, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.349, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.567, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.737, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.426, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.439, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.199, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.219, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.155, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.259, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.333, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.404, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.446, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.726, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.472, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.286, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.08, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.072, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.754, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.712, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.742, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.758, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.718, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.704, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.887, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.566, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.945, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.002, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.479, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.901, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.91, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.011, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.002, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.923, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.941, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.991, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.071, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.812, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.846, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.872, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.856, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.755, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.004, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.046, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.975, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.814, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.75, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.565, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.564, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.495, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.955, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.474, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.554, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.154, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.146, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.187, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.217, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.582, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.557, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.575, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.757, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.059, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.618, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.694, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.502, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.473, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.456, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.784, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.497, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.767, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.796, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.464, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.535, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.623, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.575, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.596, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.53, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.159, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.575, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.466, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.59, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.155, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.441, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.723, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.618, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.601, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.612, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.594, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.29, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.586, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.656, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.68, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.585, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.601, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.53, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.499, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.502, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.534, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.533, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.136, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.408, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.83, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.479, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.492, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.515, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.476, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.522, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.498, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.484, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.355, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.37, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.37, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.969, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.436, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.37, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.386, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.336, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.357, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.187, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.386, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.173, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.976, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.862, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.168, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.291, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.327, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.193, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.034, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.062, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.392, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.183, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.271, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.195, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.097, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.077, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.714, 71.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.441, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.093, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.951, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.156, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.175, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.245, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.103, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.79, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.71, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.235, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.189, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.21, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.111, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.449, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.41, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.941, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.371, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.267, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.637, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.174, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.21, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.634, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.15, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.245, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.535, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.217, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.117, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.424, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.187, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.219, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.221, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.884, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.071, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.188, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.241, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.372, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.504, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.172, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.841, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.869, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.902, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.797, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.693, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.857, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.815, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.964, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.897, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.161, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.948, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.013, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.925, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.71, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.221, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.157, 69.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.404, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.986, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.024, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.184, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.511, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.128, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.735, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.242, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.198, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.029, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.932, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.216, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.692, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.38, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.138, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.364, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.954, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.923, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.751, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.79, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.932, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.113, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.914, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.039, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.498, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.703, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.102, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.456, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.83, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.185, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.343, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.346, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.419, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.646, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.265, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.113, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.712, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.638, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.278, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.448, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.037, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.188, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.545, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.246, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.256, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.682, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.348, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.256, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.276, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.548, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.108, 69.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.858, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.024, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.916, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.521, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.165, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.23, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.203, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.254, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.247, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.254, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.095, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.168, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.036, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.141, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.156, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.269, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.698, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.355, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.328, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.289, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.312, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.277, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.025, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.027, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.374, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.954, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.984, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.951, 70.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.523, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.598, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.818, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.419, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.702, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.686, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.812, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.462, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.951, 69.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.727, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.946, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.887, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.119, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.33, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 69.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.864, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.818, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.749, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.797, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.55, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.737, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.715, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.525, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.526, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.473, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.321, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.317, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.319, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.392, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.492, 70.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.507, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.575, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.611, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.199, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.393, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.675, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.515, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.548, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.507, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.468, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.353, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.22, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.318, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.311, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.569, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.256, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.372, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.359, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.356, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.47, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.228, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.508, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.584, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.242, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.323, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.18, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.264, 69.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.296, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.137, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.13, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.231, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.123, 69.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.136, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.358, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.46, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.442, 69.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.452, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.517, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.202, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.241, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.008, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.946, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.962, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.967, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.285, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.239, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.165, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.142, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.134, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.749, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.275, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.972, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.786, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.714, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.752, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.706, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.849, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.764, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.752, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.697, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 69.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.789, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.807, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.824, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.192, 69.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.706, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.82, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.735, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.042, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.907, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.921, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.732, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 69.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.871, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 69.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.949, 69.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.865, 69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.851, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 69.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.058, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.718, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.039, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.068, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.949, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.996, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.162, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.021, 69.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.984, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.958, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.146, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.109, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.974, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.254, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.226, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.927, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.145, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.245, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.256, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.323, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.517, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.451, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.432, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.541, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.378, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.51, 70.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.512, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.564, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.631, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.582, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.515, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.473, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.447, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.298, 70.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.199, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.339, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.211, 70.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.96, 69.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.253, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.238, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.921, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.275, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.435, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.932, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.874, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.758, 70.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.796, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.746, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.478, 70.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.912, 70.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.451, 70.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.414, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 70.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 70.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.95, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.717, 70.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.43, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03, 70.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.945, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.684, 70.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.676, 70.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.386, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.713, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.069, 70.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.177, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.512, 70.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.716, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.994, 70.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.221, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.247, 70.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.396, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.614, 70.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.741, 70.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 70.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.891, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.875, 70.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.949, 70.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.895, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 70.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.808, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 70.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.056, 70.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.635, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 70.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 70.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 70.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 70.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.841, 70.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 70.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 70.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.192, 70.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 70.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 70.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 70.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.987, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 70.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.249, 70.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 71.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 70.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.743, 70.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.111, 70.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.869, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11, 70.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.375, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 70.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.821, 70.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.136, 71.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.505, 71.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.684, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 70.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.667, 70.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77, 71.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 71.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.542, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 71.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 71.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.989, 71.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.041, 71.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.042, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.045, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 71.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.023, 71.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 71.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 71.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 71.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 71.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.79, 71.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.775, 71.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.649, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.636, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.483, 71.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.632, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.61, 71.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.564, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.603, 71.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.61, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.362, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.108, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.076, 72.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.089, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.92, 72.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.968, 72.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.899, 72.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.864, 72.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.824, 72.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.474, 72.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.797, 72.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.826, 72.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.822, 72.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.852, 72.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.952, 72.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.132, 72.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.13, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.259, 72.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.328, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.449, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.388, 72.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.755, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.696, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.578, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.582, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.585, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.552, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.554, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.555, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.04, 71.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.917, 71.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 71.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.659, 71.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.579, 70.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.481, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5, 70.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.509, 70.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.428, 70.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.445, 70.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.111, 70.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.183, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.12, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.906, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.646, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.332, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.24, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.661, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.129, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.087, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.581, 69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.283, 68.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.054, 68.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.09, 68.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.083, 68.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.133, 68.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.083, 68.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.907, 67.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.01, 68.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.08, 68.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.093, 68.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.122, 68.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.131, 66.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.274, 66.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.671, 66.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.391, 66.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.428, 66.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.575, 66.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.64, 66.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.77, 66.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.606, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.549, 65.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.573, 65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.604, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.2, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.47, 65.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.011, 65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.939, 65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.18, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.99, 65.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.963, 65.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.905, 65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.894, 65.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.905, 65.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.582, 65.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.368, 65.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.339, 65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.414, 65.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.429, 65.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.297, 65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.818, 65.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.845, 65.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.86, 65.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.887, 65.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.894, 65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.736, 65.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.792, 65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.765, 65.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.828, 65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.773, 65.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.69, 65.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.576, 65.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.817, 65.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.722, 65.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.649, 65.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.496, 65.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.644, 65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.772, 65.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.745, 65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.696, 65.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.792, 65.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.753, 65.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.216, 64.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.903, 64.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.798, 64.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.736, 64.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.524, 64.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.41, 64.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.307, 64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.799, 63.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.679, 63.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.711, 63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 63.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.891, 63.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.077, 63.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.186, 63.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.105, 63.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.168, 63.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.092, 63.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.102, 63.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.587, 63.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 63.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.634, 63.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.447, 63.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.442, 63.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.364, 63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.376, 63.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.208, 63.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.272, 63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.182, 63.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.197, 63.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.149, 63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.182, 63.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.093, 63.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.074, 63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.021, 63.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.968, 63.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.423, 62.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.103, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.31, 62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.217, 62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.949, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.232, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.321, 63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.21, 62.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.251, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.278, 63.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.398, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.329, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.3, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.318, 63.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.715, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.275, 63.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.557, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.423, 62.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.549, 62.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.434, 63.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.43, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.483, 63.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.505, 62.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.423, 62.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.294, 63.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.397, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.341, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.512, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.463, 62.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.484, 62.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.348, 62.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.507, 62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.486, 62.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.176, 62.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.582, 63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.468, 62.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.472, 62.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.22, 62.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.299, 62.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.108, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.29, 62.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.419, 62.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.046, 63.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.101, 62.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.067, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.102, 62.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.376, 63.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.864, 62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.175, 62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.311, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.519, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.546, 62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.35, 62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.108, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.081, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.004, 62.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.187, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.798, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.237, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.065, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.242, 62.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.137, 62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.137, 62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.179, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.89, 62.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.865, 62.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.278, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.384, 62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.654, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.741, 62.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.588, 62.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.6, 62.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.695, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.919, 62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.724, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.977, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.939, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.787, 62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.953, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.016, 62.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.432, 62.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.662, 62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.106, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.01, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.064, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.171, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.094, 62.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.843, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.179, 62.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.191, 62.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.219, 62.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.319, 62.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.24, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.155, 62.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.019, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.116, 62.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.498, 62.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.162, 62.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.159, 63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.489, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.152, 62.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.577, 62.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.54, 62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.518, 62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.654, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.774, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.703, 62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.776, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.764, 62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.675, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.822, 62.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.802, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.716, 62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.88, 62.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.693, 62.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.919, 60.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.476, 62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.448, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.273, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.211, 62.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.32, 62.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.245, 62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.301, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.337, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.015, 62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.363, 62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.682, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.666, 62.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.83, 62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.738, 62.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.834, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.772, 62.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.831, 62.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.211, 62.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.773, 62.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.668, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.304, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.801, 62.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.459, 62.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.669, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.648, 62.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.814, 62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.876, 62.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.75, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.607, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.85, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.582, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.731, 62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.158, 62.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.451, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.039, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.413, 62.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.847, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.916, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.967, 62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.683, 62.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.795, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.715, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.719, 62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.719, 62.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.928, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.314, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.654, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.974, 62.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.871, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.837, 62.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.7, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.906, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.794, 62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.778, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.709, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.649, 62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.835, 62.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.992, 62.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.64, 62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.69, 62.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.846, 62.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.85, 62.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.869, 63.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.502, 63.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.637, 63.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.536, 63.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.296, 63.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.563, 63.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.622, 63.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.619, 63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.248, 63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.152, 62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.93, 62.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.556, 62.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.126, 62.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.539, 62.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.749, 62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.509, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.746, 62.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.687, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.722, 62.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.761, 62.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.166, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.977, 62.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.906, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.94, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.961, 62.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.324, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.78, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.775, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.699, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.019, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.296, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.308, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.257, 62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.514, 62.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.601, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.409, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.469, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.741, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.755, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.837, 62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.924, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.992, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.867, 62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.832, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.765, 62.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.777, 62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.447, 62.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.831, 62.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.868, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.136, 62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.979, 62.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.062, 62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.027, 62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.974, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.215, 62.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.254, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.238, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.671, 63.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.912, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.522, 63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.511, 63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.504, 63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.514, 63.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.426, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.497, 63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.035, 63.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.698, 63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.727, 63.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.777, 63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.737, 63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.631, 63.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.806, 63.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.829, 63.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.642, 63.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.654, 63.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.861, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.79, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.799, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.808, 63.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.866, 63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.826, 63.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.837, 63.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.916, 63.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.332, 62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.652, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.684, 63.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.694, 63.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.647, 63.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.698, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.76, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.999, 63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.221, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.301, 63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.297, 63.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.242, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.463, 63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.61, 62.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.649, 63.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.707, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.774, 62.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.086, 62.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.939, 62.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.871, 63.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.308, 63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.857, 63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.327, 63.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.138, 63.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.074, 63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.456, 63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.29, 63.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.955, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.919, 63.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.915, 63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.938, 62.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.012, 62.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.056, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.482, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.482, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.532, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.607, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.648, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.378, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.451, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.665, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.641, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.724, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.991, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.477, 62.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.218, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.43, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.036, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.388, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.32, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.369, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.368, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.36, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.361, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.383, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.433, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.675, 62.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.736, 62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.721, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.712, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.549, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.433, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.371, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.286, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.291, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.305, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.355, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.447, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.921, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.313, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.299, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.227, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.197, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.529, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.364, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.494, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.081, 62.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.664, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.266, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.184, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.094, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.036, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.929, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.015, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.887, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.782, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.859, 62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.259, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.275, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.321, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.216, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.33, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.348, 62.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.541, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.715, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.559, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.754, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.716, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.609, 62.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.698, 62.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.704, 62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.616, 62.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.632, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.617, 62.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.767, 62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.825, 62.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.757, 62.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.836, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.792, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.745, 62.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.79, 62.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.566, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.577, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.553, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.529, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.482, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.452, 62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.525, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.777, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.516, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.549, 62.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.58, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.592, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.637, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.657, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.521, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.604, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.643, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.735, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.612, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.635, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.169, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.628, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.532, 62.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.736, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.632, 62.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.347, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.575, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.664, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.449, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.606, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.537, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.529, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.564, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.253, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.139, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.148, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.123, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.253, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.148, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.168, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.174, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.244, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.164, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.306, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.361, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.595, 62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.407, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.327, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.36, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.389, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.4, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.445, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.1, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.021, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.112, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.152, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.112, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.422, 62.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.547, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.536, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.534, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.59, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.555, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.638, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.633, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.657, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.905, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.961, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.934, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.966, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 62.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.907, 61.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 61.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 61.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.165, 61.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.223, 61.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.62, 61.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.727, 61.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.577, 61.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.739, 61.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.646, 61.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.614, 62.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.717, 61.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.65, 61.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.806, 61.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.101, 61.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.134, 61.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.992, 61.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.619, 61.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.08, 61.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.946, 61.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.569, 61.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.435, 61.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.535, 61.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.859, 61.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.637, 61.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.662, 61.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.672, 61.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.594, 61.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.585, 61.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.746, 61.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.788, 61.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.923, 61.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.028, 61.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.908, 61.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.895, 61.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.607, 61.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.044, 61.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.647, 61.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.659, 61.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.694, 61.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.485, 61.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.752, 61.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.733, 61.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.7, 61.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.531, 61.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.479, 61.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.465, 61.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.458, 61.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.467, 61.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.482, 61.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.501, 61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.43, 61.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.283, 61.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.205, 61.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.938, 62.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.87, 62.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.885, 62.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.896, 62.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.86, 62.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.801, 62.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.886, 62.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.888, 62.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.868, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.016, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.877, 62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.786, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.876, 62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.76, 62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.796, 62.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.771, 62.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.952, 62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.75, 62.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.791, 62.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.599, 62.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.722, 62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.712, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.78, 62.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.653, 62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.756, 62.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.706, 62.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.816, 62.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.629, 62.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.792, 61.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 61.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.491, 61.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.7, 61.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.713, 61.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.537, 62.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.511, 62.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.51, 62.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.652, 62.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.135, 61.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 62.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.557, 62.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.507, 62.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.532, 62.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 62.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.086, 62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.055, 62.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.514, 62.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.614, 62.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.678, 62.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.636, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.835, 62.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.581, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.601, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.477, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 62.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.708, 63.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.943, 63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.729, 63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.699, 63.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.211, 63.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.899, 63.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.209, 63.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.973, 63.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.331, 63.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.178, 63.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 63.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.288, 63.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.448, 63.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.964, 63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.05, 63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.269, 63.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.238, 63.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.512, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.626, 63.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.014, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.958, 63.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.485, 63.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.0, 63.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.973, 63.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.907, 63.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.135, 63.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.905, 63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.471, 63.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.895, 63.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.14, 63.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.094, 63.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.972, 63.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.29, 63.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.27, 63.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.29, 63.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.273, 63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.31, 63.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.163, 63.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.151, 63.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.276, 63.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.448, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.579, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.845, 63.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.439, 63.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.379, 63.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.458, 63.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.467, 63.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.468, 63.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.183, 63.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.505, 63.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.432, 63.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.415, 63.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.406, 63.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.159, 63.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.47, 63.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.146, 63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.282, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.142, 63.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.719, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.466, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.56, 62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.332, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.846, 63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.354, 63.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.789, 63.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.547, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.882, 63.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.874, 63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.933, 63.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.933, 63.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.989, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.953, 63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.098, 63.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.0, 63.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.199, 63.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.805, 63.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.174, 63.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.04, 63.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.905, 63.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.814, 63.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.92, 63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.696, 64.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.226, 65.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.878, 63.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.039, 63.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.284, 63.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.052, 63.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.007, 63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.94, 63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.08, 63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.448, 63.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.226, 63.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.808, 63.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.37, 63.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.365, 63.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.232, 63.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.802, 63.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.676, 63.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.531, 63.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.676, 63.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.673, 63.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.684, 63.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.667, 63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.652, 63.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.672, 63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.58, 63.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.695, 63.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.691, 63.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.794, 63.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.026, 63.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.16, 63.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.158, 63.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.135, 63.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.632, 63.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.728, 63.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.853, 63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.814, 63.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.944, 63.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.947, 63.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.984, 63.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.983, 63.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.106, 63.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.115, 63.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.103, 63.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.991, 63.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.145, 63.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.922, 63.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.909, 63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.94, 63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.091, 63.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.008, 63.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.039, 63.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.086, 63.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.248, 63.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.282, 63.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.471, 63.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.613, 63.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.226, 63.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.475, 63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.376, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.542, 63.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.482, 63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.406, 63.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.363, 63.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.36, 63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.988, 63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.032, 63.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.054, 63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.044, 63.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.954, 63.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.957, 63.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.943, 63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.998, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.006, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.014, 63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.937, 63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.863, 63.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.761, 64.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.585, 64.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.676, 64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.54, 64.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.381, 64.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.528, 64.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.463, 64.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.563, 64.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.452, 64.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.278, 64.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.448, 64.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.38, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.546, 64.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.456, 63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.499, 64.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.423, 64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.472, 64.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.342, 64.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.689, 64.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.368, 64.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.403, 64.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.389, 64.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.455, 64.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.295, 64.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.401, 64.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.358, 64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 64.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.278, 64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.426, 64.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.738, 64.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.382, 64.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.443, 64.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.209, 64.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.357, 64.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.359, 64.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.721, 64.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.439, 64.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.28, 64.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.533, 64.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.333, 64.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.334, 64.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.425, 64.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.487, 64.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.383, 64.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.352, 64.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.528, 64.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.579, 64.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.324, 64.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.283, 64.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.309, 64.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.455, 64.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 64.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.27, 64.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.376, 64.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.409, 64.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.633, 64.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.463, 64.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 64.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.405, 64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.421, 64.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.45, 64.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.449, 64.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.415, 64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.447, 64.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.38, 64.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 64.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.343, 64.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.402, 64.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.394, 64.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.399, 64.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.487, 64.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.503, 64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.596, 64.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.344, 64.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.398, 64.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.763, 64.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.511, 64.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.477, 64.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.33, 64.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.691, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.627, 64.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.441, 64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.678, 64.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.315, 64.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.651, 64.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.467, 64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.548, 64.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.5, 64.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.64, 64.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.512, 63.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.071, 64.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.779, 64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.398, 64.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.02, 64.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.831, 64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.84, 64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.937, 63.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.739, 63.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.999, 63.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.095, 63.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.186, 63.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.186, 63.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.142, 63.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.065, 63.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.967, 64.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.947, 64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.906, 63.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.926, 63.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.815, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.766, 64.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.772, 64.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.117, 64.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.796, 64.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.729, 64.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.78, 64.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.628, 64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.928, 64.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.695, 64.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.761, 64.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.075, 64.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.728, 64.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.908, 64.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.096, 64.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.649, 64.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.728, 64.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.581, 63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.713, 64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.652, 64.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.821, 64.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.811, 63.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.721, 64.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.247, 64.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.584, 64.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.164, 64.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.873, 64.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.733, 64.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.727, 64.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.71, 64.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.772, 64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.768, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.759, 64.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.721, 64.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.726, 64.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.716, 64.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.71, 64.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.729, 64.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.617, 64.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.707, 64.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.745, 64.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.815, 64.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.808, 64.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.721, 64.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.555, 64.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.659, 64.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.685, 64.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.651, 64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.61, 64.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.641, 64.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.807, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.499, 64.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.676, 64.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.493, 64.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.477, 64.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.564, 64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.605, 64.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.576, 64.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.716, 64.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.613, 64.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.253, 64.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.491, 63.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.628, 64.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.5, 64.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.652, 64.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.516, 64.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.062, 64.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.614, 64.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.725, 64.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.591, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.483, 64.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.751, 64.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.54, 64.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.7, 64.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.549, 64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.577, 64.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.589, 64.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.45, 64.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.513, 64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.494, 64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.405, 64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.508, 64.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.546, 64.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.499, 64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.442, 64.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.513, 64.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.477, 64.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.598, 64.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.325, 64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.407, 63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.567, 64.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.718, 64.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.723, 64.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.851, 64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.943, 64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.974, 64.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.772, 64.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.801, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.753, 64.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.762, 64.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.692, 64.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.689, 64.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.408, 64.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.538, 64.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.55, 64.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.43, 64.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.487, 64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.437, 64.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.618, 64.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.596, 64.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.021, 64.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.099, 63.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.875, 64.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.256, 64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.529, 64.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.431, 64.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.226, 64.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.412, 64.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.413, 64.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.477, 64.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.575, 64.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.38, 64.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.477, 64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.487, 64.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.343, 64.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.458, 64.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.339, 64.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.515, 64.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.516, 64.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.365, 64.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.666, 64.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.482, 64.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.301, 64.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.996, 64.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.95, 64.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.185, 64.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.552, 64.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.681, 64.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.573, 64.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.953, 64.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.071, 64.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 64.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.228, 64.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.329, 64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.488, 64.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 64.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.21, 64.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.582, 64.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.325, 64.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.067, 64.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.378, 64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.732, 64.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.639, 64.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.62, 64.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.905, 64.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.522, 64.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.544, 64.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.579, 64.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.486, 64.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.569, 64.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.487, 64.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.669, 64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 64.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.937, 64.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.448, 64.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.443, 64.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.389, 64.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 64.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.415, 64.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.412, 64.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36, 64.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 64.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.254, 64.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.967, 64.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.308, 64.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.636, 64.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.308, 64.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.288, 64.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.928, 64.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 64.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.569, 64.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.288, 64.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 64.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.412, 64.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.415, 64.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.991, 64.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.404, 64.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.367, 64.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.193, 64.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.552, 64.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.386, 64.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.342, 64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.407, 64.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.506, 64.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.436, 64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 64.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.419, 64.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3, 64.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.398, 64.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.315, 64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.425, 64.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.454, 64.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.407, 64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.422, 64.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.447, 64.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.411, 64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 64.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.961, 64.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.304, 64.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.495, 64.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.396, 64.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.851, 64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.499, 64.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 64.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.602, 64.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.912, 64.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.188, 64.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.376, 64.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 64.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.442, 64.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.564, 64.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.447, 64.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.656, 64.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.341, 64.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.243, 64.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.45, 64.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.412, 64.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 64.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 64.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.409, 64.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.348, 64.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.793, 64.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.551, 64.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.259, 64.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.203, 64.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.453, 64.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41, 64.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.78, 64.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.477, 64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.447, 64.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.409, 64.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.513, 64.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.334, 64.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.531, 64.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.486, 64.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.718, 64.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.476, 64.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.397, 64.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.383, 64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.324, 64.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.413, 64.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.177, 64.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.417, 64.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.455, 64.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.565, 64.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.364, 64.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.439, 64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.455, 64.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.408, 64.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.512, 64.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.639, 64.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.399, 64.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.471, 64.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.373, 64.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.493, 64.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.035, 64.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.464, 64.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.514, 64.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.293, 63.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.668, 64.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.473, 64.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.475, 64.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.477, 64.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 64.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.398, 64.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.278, 64.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.419, 64.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.477, 64.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.453, 64.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.377, 64.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.277, 64.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 64.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.224, 64.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.311, 64.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.286, 64.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.278, 64.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.279, 64.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.673, 64.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.404, 64.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.728, 64.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.103, 64.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.196, 64.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.53, 64.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.057, 64.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.231, 64.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.218, 64.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.299, 64.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.178, 64.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.338, 64.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.069, 64.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.355, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.466, 64.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.395, 64.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.363, 64.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.251, 64.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.524, 64.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.179, 64.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.417, 64.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.314, 64.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.296, 64.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.368, 64.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.177, 64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.359, 64.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.229, 64.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.439, 64.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.307, 64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.392, 64.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.321, 64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.358, 64.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.346, 64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.377, 64.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.459, 64.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.482, 64.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.375, 64.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.474, 64.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.716, 64.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.357, 64.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.448, 64.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.391, 64.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.228, 64.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.456, 64.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.382, 64.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.398, 64.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.353, 64.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.989, 64.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.258, 64.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.038, 64.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.067, 64.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.4, 64.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.234, 65.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.003, 64.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.115, 64.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.324, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.505, 64.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.416, 64.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.315, 64.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.236, 64.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.212, 64.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.076, 65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.204, 65.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.312, 64.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.79, 65.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.338, 65.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.934, 64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.256, 64.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.401, 64.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.436, 64.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.261, 64.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.505, 65.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.259, 64.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.894, 65.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.259, 64.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.261, 64.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.258, 64.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.246, 64.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.194, 64.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.215, 65.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.194, 65.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.37, 64.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.214, 65.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.245, 65.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.389, 65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36, 65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.139, 64.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.194, 64.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.204, 64.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.167, 65.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.443, 64.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.169, 64.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.415, 64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.482, 65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.092, 64.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.31, 64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.202, 64.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 64.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.172, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.288, 64.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.224, 64.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.205, 64.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.475, 64.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.285, 64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.232, 64.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.259, 64.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.232, 64.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.187, 64.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.21, 64.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.417, 64.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.268, 64.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.292, 64.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.389, 64.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.251, 64.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.227, 64.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.885, 64.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 64.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.256, 64.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.336, 64.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.162, 64.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.407, 64.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.421, 64.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.399, 64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.386, 64.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.219, 64.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.38, 64.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.366, 64.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.249, 64.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.501, 64.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.329, 64.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.524, 64.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.317, 64.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.584, 64.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.489, 64.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.393, 64.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.672, 64.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.39, 64.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.488, 64.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.438, 64.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.449, 64.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.518, 64.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.453, 64.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.48, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.536, 64.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.21, 64.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.299, 64.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.528, 64.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 64.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.343, 64.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.422, 64.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.454, 64.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.407, 64.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.413, 64.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.458, 64.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.174, 64.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.43, 64.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.371, 64.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.487, 64.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.477, 65.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 64.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.332, 64.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.383, 64.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.194, 64.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.466, 64.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.542, 64.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.397, 64.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.296, 64.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.422, 64.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.209, 64.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.323, 64.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.4, 64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.231, 64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 64.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.371, 64.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.417, 64.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.304, 64.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.411, 64.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.264, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.339, 64.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.34, 64.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.517, 64.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.434, 64.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.386, 64.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.405, 64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.448, 64.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.437, 64.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.442, 64.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 64.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.792, 64.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.393, 64.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.406, 64.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.434, 64.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.308, 64.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44, 64.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.613, 64.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.417, 64.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.411, 64.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.403, 64.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.506, 64.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.406, 64.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.4, 64.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 64.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.382, 64.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.31, 64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.423, 64.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.426, 64.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.347, 64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.46, 64.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.338, 64.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.372, 64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.403, 64.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.315, 64.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.476, 64.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.472, 64.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.449, 64.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.47, 64.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.367, 64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.413, 64.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.458, 64.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.343, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.379, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.273, 64.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.327, 64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.508, 64.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.744, 64.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.543, 64.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.564, 64.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.352, 64.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.368, 64.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41, 64.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.397, 64.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.546, 64.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.211, 64.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.435, 64.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.288, 64.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.374, 64.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41, 64.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.451, 64.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.361, 64.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.549, 64.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.353, 64.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.348, 64.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.434, 64.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.387, 64.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.388, 64.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.387, 64.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.352, 64.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.291, 64.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.471, 64.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.511, 64.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.45, 64.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.45, 64.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.286, 64.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.389, 64.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.413, 64.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.368, 64.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.434, 64.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.481, 64.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 64.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.427, 64.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.294, 64.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41, 64.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.409, 64.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.305, 64.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.419, 64.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.415, 64.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.241, 64.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.283, 64.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.143, 64.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.908, 64.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.391, 64.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.254, 64.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.688, 64.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.823, 64.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.512, 64.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.772, 65.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.335, 64.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.431, 64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.352, 64.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.907, 64.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.823, 64.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.597, 64.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.419, 64.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.167, 64.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.444, 64.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.425, 64.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.317, 64.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.032, 64.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.355, 64.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.356, 64.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.457, 64.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.307, 64.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.447, 64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.294, 64.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.366, 64.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.263, 64.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.47, 64.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.373, 64.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.576, 64.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 64.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.309, 64.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.633, 64.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.492, 64.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.068, 64.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.221, 64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.507, 64.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.45, 64.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.607, 64.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.46, 64.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.548, 64.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.488, 64.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.526, 64.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.274, 64.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.442, 64.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.337, 64.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.338, 64.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.512, 64.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.353, 64.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.38, 64.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.536, 64.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.379, 64.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 64.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.381, 64.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.379, 64.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.34, 64.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.365, 64.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.391, 64.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.332, 64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.336, 64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.205, 64.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.328, 64.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.35, 64.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.264, 64.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.153, 64.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.484, 64.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.281, 64.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.346, 64.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.374, 64.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.312, 64.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36, 64.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.392, 64.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.389, 64.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.37, 64.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.348, 64.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.323, 64.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.492, 64.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.397, 64.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.432, 64.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.197, 64.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.296, 64.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 64.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.353, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.251, 64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.416, 64.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.37, 64.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.304, 64.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 64.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.262, 64.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.323, 64.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.246, 64.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.432, 64.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.326, 64.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.278, 64.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3, 64.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.218, 64.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.301, 64.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3, 64.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.817, 64.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.327, 64.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.388, 64.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.363, 64.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.549, 64.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.129, 64.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.56, 64.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.11, 64.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.277, 64.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.1, 65.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.613, 64.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.493, 64.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.222, 64.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.396, 64.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.401, 64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.377, 64.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.249, 64.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23, 64.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.328, 64.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.37, 64.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.307, 64.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.307, 64.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.327, 64.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.355, 64.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.259, 64.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.272, 64.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.372, 64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.383, 64.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.343, 64.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 64.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.926, 64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.283, 64.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.432, 64.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.342, 64.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.356, 64.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.377, 64.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.269, 64.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.301, 64.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.316, 64.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.287, 64.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.752, 64.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.241, 64.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 64.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.329, 64.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.189, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.295, 64.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44, 64.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.881, 64.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.204, 64.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.405, 64.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23, 64.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3, 64.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.94, 64.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 64.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 64.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.163, 64.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.601, 64.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.192, 64.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.299, 64.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.989, 64.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.252, 64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.298, 64.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.308, 64.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.335, 64.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.358, 65.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.324, 64.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.286, 64.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.111, 64.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22, 64.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.181, 65.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.06, 64.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.322, 64.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.007, 64.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.186, 64.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.318, 64.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.206, 65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.176, 64.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.197, 64.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.289, 65.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.212, 65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.309, 65.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.333, 65.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.651, 65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.277, 65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.383, 65.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.135, 65.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.178, 64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.876, 64.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.312, 64.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.285, 64.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.305, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.288, 64.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.278, 64.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.318, 64.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.238, 64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.2, 64.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.298, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.473, 64.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.79, 64.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.53, 64.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.464, 64.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.435, 64.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.578, 64.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.116, 64.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.371, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.426, 64.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.392, 64.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 64.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.401, 64.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.438, 64.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.843, 64.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.894, 64.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.102, 64.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.355, 64.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.991, 64.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.337, 64.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.342, 65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 64.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.505, 64.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 64.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.459, 64.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.573, 64.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.69, 64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.295, 64.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.432, 64.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.39, 64.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.469, 64.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.394, 64.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.322, 64.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.241, 64.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.004, 64.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.382, 64.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.398, 64.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.396, 64.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.164, 64.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.162, 64.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.152, 64.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.182, 64.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.188, 64.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.268, 64.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.211, 64.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.341, 64.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.445, 64.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.339, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.391, 64.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.391, 64.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.268, 64.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.618, 64.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44, 64.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.268, 64.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.217, 64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.236, 64.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.151, 64.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.891, 65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3, 64.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.256, 64.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.288, 64.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.298, 64.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.373, 64.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.261, 64.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.35, 64.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.358, 64.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.469, 64.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.595, 64.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.273, 64.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.347, 64.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.338, 64.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.355, 64.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.88, 64.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.255, 64.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.366, 64.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.403, 64.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.458, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.372, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.352, 64.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.199, 64.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.264, 64.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.584, 64.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22, 64.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.601, 64.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.254, 64.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.253, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.281, 64.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.304, 64.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.278, 64.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.288, 64.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.242, 64.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.238, 64.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29, 64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.258, 64.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.27, 64.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.276, 64.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.289, 64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.307, 64.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.232, 64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.269, 64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.263, 64.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.253, 64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.291, 64.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.318, 64.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.296, 64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.136, 64.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.135, 64.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.317, 64.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29, 64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.566, 64.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 64.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.223, 64.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.331, 64.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.425, 64.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.356, 64.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.129, 64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.414, 64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.229, 64.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.174, 64.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.474, 64.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.472, 64.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.06, 64.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.239, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.41, 65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.27, 64.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.373, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.299, 64.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.232, 64.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.378, 64.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.685, 64.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.378, 64.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.554, 64.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.184, 64.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.541, 64.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.4, 64.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.682, 64.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.285, 64.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.574, 64.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.686, 64.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.199, 64.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.225, 64.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.198, 64.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.108, 65.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.066, 64.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.504, 64.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.072, 64.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.492, 64.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.148, 64.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.545, 64.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.139, 64.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.319, 64.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.249, 64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.257, 64.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.301, 64.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.875, 64.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.086, 64.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.694, 64.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.393, 64.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.165, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.308, 64.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.442, 64.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.167, 64.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.437, 64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.729, 64.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.732, 64.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.99, 64.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.375, 64.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.287, 65.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.551, 64.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.266, 65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.681, 64.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.523, 64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.869, 64.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.182, 64.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.545, 64.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.293, 64.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.553, 64.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.266, 64.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29, 64.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.244, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.238, 64.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.256, 64.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.101, 64.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.981, 64.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.121, 64.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.056, 64.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.308, 64.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.149, 64.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.35, 64.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.571, 64.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.985, 65.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.911, 64.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.516, 64.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.327, 64.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.538, 64.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.359, 64.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.397, 64.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.072, 64.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.287, 64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.099, 64.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.284, 61.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.386, 64.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.855, 64.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.894, 64.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.072, 65.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.974, 64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.183, 65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.251, 64.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.973, 64.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.827, 64.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.167, 65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.177, 64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.287, 64.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.305, 64.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.535, 64.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.048, 65.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.421, 64.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.108, 64.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.201, 64.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.178, 64.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22, 64.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.154, 64.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.282, 64.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.146, 65.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.576, 65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.282, 65.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.159, 65.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.399, 65.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.362, 65.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.204, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.175, 65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.153, 65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.516, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.335, 66.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.378, 66.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.219, 66.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.306, 66.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.326, 66.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.81, 66.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.777, 66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.27, 66.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.569, 66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.493, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.534, 66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.595, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.18, 65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.393, 65.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.008, 65.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.67, 65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.561, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.555, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.263, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.404, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.091, 66.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.697, 66.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.744, 66.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.732, 66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.028, 66.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.875, 66.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.977, 66.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.886, 66.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.909, 66.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.792, 66.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.534, 66.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.378, 66.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.26, 66.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.044, 67.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 66.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.41, 66.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.051, 66.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.763, 67.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.146, 66.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 66.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.992, 67.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.597, 67.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.236, 67.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.502, 67.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.44, 67.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.345, 67.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.231, 67.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.267, 67.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.148, 67.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.169, 67.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.971, 67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.963, 67.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.746, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.361, 67.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.957, 67.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.085, 67.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.041, 67.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.934, 68.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.356, 68.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.402, 68.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.501, 68.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.993, 68.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.39, 68.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.129, 68.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.619, 68.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.436, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 69.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.164, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.221, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.333, 69.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.911, 69.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.675, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.532, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.799, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.285, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.016, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.159, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.307, 69.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.241, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.449, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.292, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.821, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.152, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.078, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.439, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.026, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.362, 69.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.873, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.705, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.056, 70.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.03, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.127, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.826, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.296, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.306, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.891, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.971, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.904, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.304, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.488, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.149, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.195, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.253, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.263, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.219, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.628, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.718, 70.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.595, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.831, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.446, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.251, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.921, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.402, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.46, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.424, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.59, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.707, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.794, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.652, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.903, 70.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.218, 70.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.721, 70.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.682, 70.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.961, 70.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.081, 70.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.494, 70.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.377, 70.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.393, 70.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.675, 70.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.871, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 70.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.784, 70.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6, 70.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 70.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 70.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.991, 70.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 70.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.978, 70.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.885, 70.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.952, 70.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.004, 70.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 70.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.766, 70.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.308, 70.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.254, 70.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 70.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.284, 70.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.314, 70.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.315, 70.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 70.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 70.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.385, 70.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.422, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 70.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.14, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.433, 70.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 71.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.994, 71.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 71.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.632, 71.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.202, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 71.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 70.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.344, 71.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.42, 71.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 71.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 71.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 71.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 71.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.502, 71.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 71.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 71.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.077, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 71.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 71.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 71.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 71.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.546, 71.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.615, 71.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.184, 71.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.928, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.154, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 71.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.237, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.911, 71.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.172, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.612, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.822, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.916, 71.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.746, 71.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.834, 71.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.891, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.129, 70.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.158, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.654, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.68, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.841, 71.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.904, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.914, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.718, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.736, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.734, 71.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 71.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.88, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.44, 71.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.476, 71.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.644, 71.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.581, 71.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 71.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 71.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.204, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.731, 71.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.396, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 71.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.481, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.367, 71.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.64, 71.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.41, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.547, 71.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 71.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.04, 71.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 71.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.993, 71.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.154, 71.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.421, 71.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.583, 71.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.808, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.778, 71.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.776, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.793, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.896, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.717, 71.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.661, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.986, 70.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.119, 70.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.638, 70.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.613, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 70.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 70.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 70.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.662, 70.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 70.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.736, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.502, 70.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 70.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.187, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.206, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.922, 70.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.856, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.912, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.811, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.626, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.199, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.245, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.246, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.607, 69.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.215, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.584, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.782, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.216, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.451, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.357, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.294, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.815, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.043, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.267, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.924, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.218, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.378, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.361, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.373, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.497, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.417, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.541, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.723, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.402, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.77, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.225, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.427, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.113, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.193, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.811, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.009, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.184, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.138, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.327, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.402, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.361, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.543, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.493, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.378, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.024, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.319, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.679, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.064, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.821, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.85, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.783, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 69.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.345, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.397, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.426, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.08, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.696, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.439, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.219, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.283, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.624, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.396, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.723, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.574, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.393, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.792, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.034, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.999, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 69.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.371, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.259, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.237, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.38, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.027, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.825, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.849, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.326, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.423, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.311, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.554, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.168, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.128, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.267, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.41, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.259, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.077, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.135, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.021, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.954, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.923, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.945, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.051, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.838, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.814, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.343, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.649, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.575, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.323, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.868, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.056, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.931, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.065, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.029, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.083, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.027, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.903, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.522, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.91, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.992, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.009, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.952, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.29, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.004, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.987, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.936, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.063, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.994, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.951, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.986, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.992, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.057, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.056, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.778, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.447, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.723, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 69.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.937, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.277, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.497, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.285, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.257, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.245, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.405, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.349, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.666, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.93, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.932, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.93, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.158, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.726, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.393, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.488, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.452, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.651, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.56, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.143, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.117, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.036, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.057, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.011, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.649, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.897, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.702, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.985, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.987, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.011, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.146, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.605, 69.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.968, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.297, 69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.28, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.978, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.142, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.291, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.977, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.039, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.458, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.155, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.021, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.132, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.217, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.949, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.084, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.043, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.944, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.132, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.172, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.768, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.608, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.577, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.625, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.787, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.797, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.618, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.687, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.269, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.872, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.981, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.086, 69.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.68, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.787, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.776, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.845, 69.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.791, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 69.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94, 68.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 68.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.683, 68.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.018, 68.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.83, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.062, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.634, 69.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.773, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.717, 68.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.307, 68.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 69.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.992, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.877, 69.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 69.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.152, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.912, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.651, 69.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.596, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.505, 69.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.335, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.551, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.327, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.419, 69.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.334, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.16, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.124, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.059, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.966, 68.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.757, 68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.474, 68.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.451, 68.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.169, 68.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.217, 68.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.136, 68.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.967, 68.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.831, 68.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.56, 68.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.43, 68.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.681, 68.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.805, 68.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.611, 68.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.678, 69.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.713, 68.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.976, 68.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.93, 68.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.944, 69.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.726, 69.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.326, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.556, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.61, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.161, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.516, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.585, 69.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.659, 69.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.907, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.679, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.122, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.232, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.238, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.313, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.654, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.424, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.376, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.444, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.479, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.503, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.472, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.441, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.162, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.25, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.247, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.549, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.538, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.336, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.597, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.952, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.705, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.674, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.48, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.287, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.063, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.263, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.267, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.258, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.279, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.264, 69.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.224, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.261, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.324, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.264, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.253, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.254, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.281, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.358, 69.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.024, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.048, 69.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.964, 68.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.889, 69.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.973, 68.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.007, 68.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.079, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.053, 68.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.127, 68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.85, 68.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.794, 68.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.811, 68.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.826, 68.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.867, 68.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.85, 68.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.879, 68.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.791, 68.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.901, 68.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.668, 68.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.878, 68.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.874, 68.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.086, 68.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.916, 68.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.769, 68.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.984, 68.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.769, 68.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.651, 68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.687, 68.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.655, 68.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.745, 68.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.666, 68.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.61, 68.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.842, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.839, 68.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.654, 68.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.369, 68.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.654, 68.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.544, 68.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.917, 68.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.138, 68.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.333, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.139, 68.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.093, 68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.874, 69.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.045, 69.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.952, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.523, 69.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.475, 69.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.606, 69.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.481, 69.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.521, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.413, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.468, 69.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.724, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.348, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.59, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.549, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.604, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.579, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.543, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.624, 69.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.799, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.717, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.736, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.88, 69.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.783, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.006, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.968, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.87, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.885, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.977, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.912, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.096, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.238, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.449, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.679, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.623, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.758, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.377, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.446, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.429, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.246, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.347, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.296, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.574, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.518, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.581, 69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.24, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.673, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.798, 70.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.782, 70.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.833, 70.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.002, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.089, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.18, 70.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.199, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.221, 70.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.185, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.403, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.705, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.35, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.131, 70.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.458, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.631, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.507, 70.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.674, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 70.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.515, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.281, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.926, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.396, 70.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.512, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.418, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.502, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.432, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.695, 70.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.372, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.319, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.462, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.527, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.414, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.62, 70.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.36, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.791, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.255, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.375, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.077, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.98, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.384, 70.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.435, 70.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.575, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.567, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -51.31, 63.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.036, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.62, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.198, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.134, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.365, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.18, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.337, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.542, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.454, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.259, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.429, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.413, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.395, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.651, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.418, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.442, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.836, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.516, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.374, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.64, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.388, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.31, 70.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.634, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.569, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.578, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.152, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.444, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.734, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.348, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 70.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.889, 70.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.882, 70.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.827, 70.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.611, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.284, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.514, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.662, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.508, 70.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.625, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.731, 70.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.971, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.632, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.032, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.895, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 70.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.563, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.519, 70.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.793, 70.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.815, 70.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.846, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.652, 70.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.181, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.003, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.671, 70.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.81, 70.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.349, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.764, 70.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.83, 70.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.784, 70.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.056, 70.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.77, 70.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.833, 70.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 70.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.277, 70.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.609, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.389, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.791, 70.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.469, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.463, 70.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.33, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.339, 70.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.219, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.395, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.318, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.295, 70.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.543, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.593, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.607, 70.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1, 70.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.839, 70.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.795, 70.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.815, 70.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.792, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 70.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.745, 70.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.456, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.586, 70.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.491, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71, 70.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.658, 70.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.876, 70.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.881, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.53, 70.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 70.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.851, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.883, 70.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.743, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.697, 70.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 70.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.692, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.631, 70.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.865, 70.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.693, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.723, 70.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.624, 70.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.314, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.442, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.727, 70.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.853, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 70.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 70.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.796, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.867, 70.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.619, 70.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.74, 70.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.702, 70.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.749, 70.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.996, 70.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.791, 70.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.823, 70.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98, 70.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.923, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.673, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 70.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.424, 70.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7, 70.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.756, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.732, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.899, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.443, 70.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.971, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.979, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 70.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.175, 70.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1, 70.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.791, 70.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 70.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 70.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 70.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 70.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.284, 70.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 70.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 70.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.986, 70.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 70.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 70.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 70.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.159, 70.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 70.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.264, 70.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 70.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 71.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.743, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11, 71.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.481, 71.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.057, 71.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 71.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 71.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.528, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 71.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.986, 71.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.194, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.865, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.699, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.711, 71.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.582, 71.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.467, 71.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.36, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.366, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.24, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0, 72.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 72.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.797, 72.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.834, 72.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.708, 72.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.465, 72.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.337, 72.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.601, 72.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.39, 72.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.437, 72.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.408, 72.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.386, 72.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.29, 72.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.286, 73.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.359, 73.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.259, 73.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.433, 72.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.444, 72.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.214, 73.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.097, 73.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.011, 73.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7, 73.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.789, 73.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.593, 73.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.845, 73.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.431, 73.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.15, 73.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.825, 73.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.356, 73.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.325, 73.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.958, 73.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.952, 73.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.921, 73.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.233, 73.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.836, 73.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.979, 73.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.548, 73.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 73.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.296, 73.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.25, 73.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 73.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.708, 73.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.719, 73.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.799, 73.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 73.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.059, 73.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.677, 73.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.287, 73.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.239, 73.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.026, 73.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.004, 73.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.708, 73.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.353, 73.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.131, 73.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.107, 73.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.777, 73.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.552, 73.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.909, 73.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.238, 73.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.135, 73.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.107, 73.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.14, 73.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.299, 73.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.11, 73.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.091, 73.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.818, 72.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.868, 72.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.879, 72.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.208, 72.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.497, 72.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.052, 72.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.872, 72.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.841, 72.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.399, 72.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.403, 72.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.958, 72.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.808, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.129, 71.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.278, 71.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.24, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.422, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.387, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.309, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.244, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.712, 71.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.72, 70.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.648, 70.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.69, 70.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.402, 70.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.39, 70.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.196, 70.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.147, 70.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.818, 70.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.718, 70.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.457, 70.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.439, 70.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.268, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.239, 70.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.37, 70.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.37, 70.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.148, 70.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.157, 70.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.765, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.67, 70.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.69, 70.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.855, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.807, 68.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.836, 68.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.819, 68.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.959, 68.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.028, 68.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.014, 68.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.5, 68.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.168, 68.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.154, 68.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.219, 68.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.086, 68.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.201, 68.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.196, 68.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.592, 67.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.489, 67.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.903, 67.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.593, 67.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.598, 67.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.912, 67.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.61, 67.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.556, 67.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 68.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.74, 67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.764, 67.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.824, 67.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.612, 67.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.55, 67.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.564, 67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.896, 67.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.404, 67.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.525, 67.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.545, 67.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.568, 67.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.495, 67.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.549, 67.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.305, 67.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.249, 67.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.58, 67.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.427, 67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.142, 68.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.803, 67.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.736, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.763, 67.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.829, 67.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.763, 67.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 67.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 67.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.792, 67.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.81, 67.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.766, 67.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.688, 67.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.985, 67.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.726, 67.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.465, 67.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.645, 67.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.675, 67.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.629, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.694, 67.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.608, 67.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.679, 67.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.899, 67.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.776, 67.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.728, 67.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.648, 67.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.707, 67.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.66, 67.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.633, 67.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.595, 67.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.626, 67.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.507, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.547, 67.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.653, 67.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.618, 67.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.597, 67.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.666, 67.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.714, 67.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.674, 67.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.649, 67.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.672, 67.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.618, 67.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.695, 67.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.525, 67.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.692, 67.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.632, 67.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.616, 67.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.68, 67.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.651, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.669, 67.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.65, 67.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.286, 68.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.281, 68.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.294, 67.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.618, 68.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.192, 68.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.512, 67.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.516, 67.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.611, 67.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.656, 67.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.655, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.719, 67.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.729, 67.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.746, 67.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.787, 67.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.81, 67.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.6, 67.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.526, 67.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.275, 67.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.217, 67.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.148, 67.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.137, 67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.796, 67.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.242, 67.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.11, 67.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.316, 67.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.378, 67.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.287, 67.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.302, 67.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.962, 67.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.769, 67.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.866, 67.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.044, 67.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.279, 67.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.086, 67.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.954, 67.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.898, 67.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.878, 67.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.799, 67.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.758, 66.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.738, 66.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.704, 66.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.532, 66.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.712, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.708, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.77, 66.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.78, 66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.706, 66.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.639, 66.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.607, 66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.663, 66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.962, 66.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.578, 64.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.524, 64.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.381, 64.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.373, 64.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.531, 64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.492, 64.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -59.751, 64.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.292, 64.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.336, 64.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.373, 64.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.42, 64.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.373, 64.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.36, 64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.329, 64.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.224, 64.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.015, 64.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.41, 64.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.509, 64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.341, 64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.446, 64.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.451, 64.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.35, 64.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.417, 64.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.459, 64.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.47, 64.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.498, 64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.509, 64.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.494, 64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.613, 64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.444, 64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.807, 63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.695, 63.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.418, 63.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -58.821, 63.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.309, 63.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.823, 63.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.908, 63.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.24, 63.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.867, 63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.523, 63.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.824, 63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.417, 63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.405, 63.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.582, 63.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.585, 63.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.65, 63.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.779, 63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.523, 63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.638, 63.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.681, 63.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.813, 63.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.875, 63.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.016, 63.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.656, 63.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.663, 63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.739, 63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.723, 63.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.713, 63.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.684, 63.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.744, 63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.851, 63.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.616, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.728, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.784, 63.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.258, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.751, 62.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.813, 62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.978, 62.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.956, 62.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.99, 62.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.993, 62.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.132, 62.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.248, 62.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.272, 62.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.255, 62.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.305, 62.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.559, 62.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.632, 62.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.854, 62.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.842, 62.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.925, 62.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.869, 62.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.822, 62.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.811, 62.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.947, 62.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.955, 62.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.926, 62.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.922, 62.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.071, 62.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.915, 62.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.872, 62.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.817, 62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.205, 62.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.812, 62.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.705, 62.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.804, 62.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.75, 62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.812, 62.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.851, 62.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.855, 62.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.693, 62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.594, 62.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.75, 62.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.877, 62.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.882, 62.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.215, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.788, 62.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.866, 62.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.739, 62.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.79, 62.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.749, 62.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.79, 62.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 62.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 62.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.883, 62.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.487, 62.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.652, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.817, 62.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.818, 62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.913, 62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.692, 62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.901, 62.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.896, 62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.929, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.66, 62.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.71, 62.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.681, 62.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.707, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.865, 62.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.696, 62.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.79, 62.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.831, 62.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.802, 62.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.883, 62.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.68, 62.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.666, 62.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.744, 62.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.689, 62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.81, 62.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.801, 62.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.786, 62.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.752, 62.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 62.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.759, 62.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.781, 62.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.753, 62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.769, 62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.993, 62.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.156, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.401, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.703, 62.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.929, 62.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.834, 62.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.991, 62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.973, 62.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.97, 62.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.736, 62.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.48, 62.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.916, 62.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.868, 62.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.792, 62.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.87, 62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.835, 62.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.884, 62.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.874, 62.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.66, 62.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.287, 62.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.754, 62.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.713, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 62.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.737, 62.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.117, 62.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.685, 62.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.579, 62.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.555, 62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.696, 62.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.686, 61.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.562, 62.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.686, 62.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.753, 62.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.611, 62.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.725, 62.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.666, 62.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.66, 62.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.59, 61.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.69, 61.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.756, 61.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.712, 61.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.755, 61.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.812, 62.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.801, 62.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.782, 62.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.699, 62.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.755, 62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.658, 62.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.723, 62.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.599, 62.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.617, 62.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.808, 62.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.756, 62.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.694, 62.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.607, 62.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.674, 62.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.765, 62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.74, 62.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.731, 62.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.79, 62.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.729, 62.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.931, 62.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.918, 62.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.68, 62.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.723, 62.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.675, 62.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.586, 62.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.715, 62.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.165, 62.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.641, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.766, 62.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.802, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.85, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.804, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.819, 62.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.801, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.813, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.853, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.837, 62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.767, 62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.802, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.33, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.377, 62.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.338, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.176, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.334, 63.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.39, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.621, 62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.591, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.29, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.717, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.037, 63.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.621, 63.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.614, 63.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.763, 63.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.817, 63.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.987, 62.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.218, 62.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.131, 62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.042, 63.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.904, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.9, 63.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.058, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.944, 62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.993, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 98.426, 82.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.013, 62.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.937, 62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.045, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.972, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.852, 62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.142, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.102, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.075, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.07, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.066, 62.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.812, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.132, 62.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.761, 62.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.881, 62.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.806, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.676, 62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.638, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.737, 62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.614, 62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.801, 62.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.581, 62.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.94, 62.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.949, 62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.98, 62.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.036, 62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.125, 62.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.312, 63.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.233, 63.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.447, 63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.447, 63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.159, 63.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.31, 63.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.111, 63.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.244, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.713, 63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.747, 63.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.968, 63.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.308, 63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.336, 63.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.168, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.098, 62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.113, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.076, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.712, 62.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.9, 62.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.783, 62.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.671, 62.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.591, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.508, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.542, 62.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.524, 62.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.339, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.049, 63.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.085, 63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.354, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.462, 63.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.47, 62.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.121, 63.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.464, 62.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.31, 62.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.452, 62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.516, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.521, 62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.529, 62.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.523, 62.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.557, 62.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.619, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.778, 62.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.837, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.992, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 62.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.515, 62.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.575, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 62.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.387, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 62.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.717, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.55, 62.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.613, 62.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 62.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.566, 62.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.546, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.565, 62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.662, 62.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.636, 62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.669, 62.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.649, 62.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.518, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.26, 63.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.711, 62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.701, 62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.61, 62.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.696, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.249, 62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.695, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.692, 62.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.643, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.645, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.68, 62.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.672, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 62.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.625, 62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.732, 62.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.492, 62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.627, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.576, 62.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.608, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.616, 62.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.809, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.814, 62.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.877, 62.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.599, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.598, 62.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.635, 62.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.615, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.471, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.527, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.455, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.347, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.956, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.808, 62.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.321, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.464, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.705, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.523, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 62.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.689, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.592, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.548, 62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.329, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.141, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.46, 62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.197, 62.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.19, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.541, 62.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.366, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.665, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.636, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.663, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.64, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.978, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.691, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.535, 62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.607, 62.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.693, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.738, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.177, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.156, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.151, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.212, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.608, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.384, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.268, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.302, 62.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.636, 62.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.793, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 62.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.514, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.311, 62.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.944, 62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.941, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.924, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.927, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.913, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.889, 62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.917, 62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.546, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.555, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.54, 63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.583, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.61, 63.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.503, 63.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.199, 63.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.346, 62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.622, 62.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.848, 62.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.678, 62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.823, 62.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.82, 62.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.817, 62.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.797, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.681, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.711, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.744, 62.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.79, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.846, 62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.881, 62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.745, 62.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.728, 62.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.417, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.916, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.259, 62.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.351, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.526, 62.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.578, 62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 62.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.334, 62.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.34, 62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.401, 62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.383, 62.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.349, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.059, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.412, 62.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.923, 62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.22, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.207, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.341, 62.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.258, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 62.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.931, 62.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 62.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.397, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.108, 62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.356, 62.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.355, 62.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.296, 62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 62.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.513, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.664, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.394, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.533, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.487, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.393, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.543, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.566, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.486, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.49, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.437, 62.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.463, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.471, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.472, 62.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.465, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.312, 62.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.41, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.405, 62.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.34, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.43, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.336, 62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.315, 62.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.438, 62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.432, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.314, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.312, 62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 62.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.331, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.46, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.321, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.494, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 62.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.374, 62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.419, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.366, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.289, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.269, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.223, 62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.355, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.291, 62.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.197, 62.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.16, 62.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.218, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.273, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.379, 62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.259, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.242, 62.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.361, 62.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.595, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.365, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.404, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.39, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.005, 62.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.44, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.446, 62.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.36, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 62.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.461, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.159, 62.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.225, 62.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.092, 62.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.19, 62.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.08, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.306, 62.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 62.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.318, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.371, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.333, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.314, 62.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.213, 62.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.108, 62.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.031, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.729, 62.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.877, 62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.871, 62.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.751, 62.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.867, 62.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.841, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.22, 62.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.952, 62.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.262, 62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.051, 62.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 62.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.178, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.401, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.24, 62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.211, 62.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.09, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 62.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.094, 62.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.166, 62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.138, 62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.119, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.725, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.068, 62.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.065, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.144, 62.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.072, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.095, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.166, 62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.051, 62.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.171, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.126, 62.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.155, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.004, 62.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.143, 62.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.125, 62.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.15, 62.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.079, 62.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.058, 62.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.478, 62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.863, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.57, 62.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.885, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.298, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.738, 62.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 62.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.124, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.062, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.25, 62.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.156, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.346, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.287, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.278, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.41, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 62.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.373, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.267, 62.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.11, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.082, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.13, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.803, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.05, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.828, 62.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.054, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.493, 62.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.848, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.412, 62.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.157, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.196, 62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.238, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.175, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.638, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.376, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.336, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.403, 62.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.106, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.289, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.343, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.228, 62.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.362, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.354, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.291, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.439, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.338, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.276, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.313, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.51, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.288, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.251, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.24, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.293, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.303, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.287, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.271, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.27, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.374, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.517, 62.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.282, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.148, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.239, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.216, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.557, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.297, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.316, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.181, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.29, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.32, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.315, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.247, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.29, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.248, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.266, 62.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.427, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.128, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.245, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.233, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.321, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.293, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.431, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.312, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.309, 62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.404, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.117, 62.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.038, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.208, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.197, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.258, 62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.277, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.33, 62.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.261, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.344, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.176, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.381, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.343, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.378, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.222, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.189, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.253, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.128, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.352, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.275, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.165, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.341, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.203, 62.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.386, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.355, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.327, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.328, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.286, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.255, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.21, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.271, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.343, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.324, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.793, 62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.31, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.443, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.347, 62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.168, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.336, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.103, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.558, 62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.093, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.29, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.326, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.37, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.397, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.357, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.331, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.329, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.45, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.149, 62.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.646, 62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.264, 62.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.722, 62.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.392, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.477, 62.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.539, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.419, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.417, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.444, 62.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.408, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.554, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.661, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.532, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.478, 62.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.395, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.458, 62.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.445, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.453, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.434, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.589, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.351, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.167, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.23, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.874, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.418, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.41, 62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.514, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.341, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.296, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.457, 62.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.545, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.188, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.479, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.312, 62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.359, 62.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.221, 62.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.296, 62.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.287, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.105, 62.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.504, 62.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.388, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.339, 62.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.392, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.377, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 62.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.364, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.368, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.35, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.267, 62.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.249, 62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.58, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.445, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.39, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.552, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.317, 62.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 62.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.295, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.387, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.434, 62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.312, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.867, 62.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.38, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.3, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.32, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.308, 62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.383, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.323, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.543, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.381, 62.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.327, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.299, 62.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.185, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.166, 62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 62.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.243, 62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.234, 62.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.305, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.413, 62.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.156, 62.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.808, 62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.135, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.774, 62.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.007, 62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.58, 62.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.592, 62.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.637, 62.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.44, 62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.442, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.437, 62.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.419, 62.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.984, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.064, 62.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.08, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.316, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.602, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.166, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.533, 63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.695, 63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.53, 63.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.585, 63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.518, 63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.541, 63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.373, 63.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.276, 62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.534, 63.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.592, 63.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.478, 63.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.507, 63.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.504, 63.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.377, 63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.46, 63.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.412, 63.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.303, 63.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.193, 63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.301, 63.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.82, 63.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.358, 63.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.22, 63.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.317, 63.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.253, 63.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.127, 63.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.235, 63.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.306, 63.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.328, 63.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.026, 63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.932, 63.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.055, 63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.904, 63.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.875, 63.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.889, 63.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.924, 63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.858, 63.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.185, 64.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.929, 64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.112, 63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.677, 64.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.166, 64.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.358, 64.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.412, 64.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.31, 64.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.531, 64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.375, 64.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.706, 64.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.773, 64.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.472, 64.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.662, 64.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.525, 64.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.666, 64.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.635, 64.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.731, 64.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.948, 64.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.926, 64.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.945, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.215, 64.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.179, 64.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.338, 64.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.411, 64.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.647, 65.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.417, 65.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.913, 65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.629, 65.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.657, 65.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.777, 65.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.052, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.121, 65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.042, 65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.085, 65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.042, 65.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.021, 65.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.066, 65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.074, 65.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.069, 65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.809, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.717, 65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.729, 65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.608, 65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.546, 65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.551, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.547, 65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.515, 65.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.504, 65.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.538, 65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.704, 65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.614, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.565, 65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.459, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.465, 65.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.348, 65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.551, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.535, 65.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.42, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.284, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.488, 65.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.431, 65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.511, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.52, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.535, 65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.554, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.622, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 65.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.546, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.54, 65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.619, 65.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.644, 65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.678, 65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.675, 65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.657, 65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.634, 65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.622, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.594, 65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.594, 65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.562, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.559, 65.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.558, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.562, 65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.583, 65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.57, 65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.582, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.586, 65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.613, 65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.626, 65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.599, 65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.585, 65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.59, 65.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.607, 65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.595, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.631, 65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.748, 65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.143, 66.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.816, 65.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.509, 65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.561, 65.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.586, 65.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.221, 65.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.423, 65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.32, 65.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.376, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.46, 65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.524, 65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.9, 65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.563, 65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.707, 65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.561, 65.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.589, 65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.581, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.553, 65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.372, 73.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.338, 74.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.871, 74.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.459, 74.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.456, 74.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.424, 74.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.149, 74.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.165, 74.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 74.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.448, 73.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.494, 73.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.465, 73.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.253, 73.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.155, 73.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.188, 73.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.151, 73.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.055, 73.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.072, 73.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.699, 73.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.843, 73.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.922, 73.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.493, 74.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.823, 74.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.739, 73.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.669, 73.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.792, 73.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.638, 73.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.853, 73.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.61, 73.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.211, 73.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.909, 73.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.802, 73.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.689, 73.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.652, 72.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.857, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.147, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.605, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.312, 72.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.057, 72.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.19, 72.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.011, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.297, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.135, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.251, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.215, 72.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.507, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.19, 72.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.972, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.833, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.895, 62.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.331, 62.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.172, 62.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.442, 62.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.44, 62.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.464, 62.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.466, 62.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.454, 62.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.492, 62.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.431, 62.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.667, 61.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.572, 61.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.543, 61.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.54, 61.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.481, 61.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.573, 61.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.411, 61.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.322, 61.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.309, 61.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.343, 61.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.424, 61.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.415, 61.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.514, 61.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.592, 61.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.56, 61.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.54, 61.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.279, 61.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.168, 61.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.149, 61.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.102, 61.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.132, 61.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.137, 61.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.147, 61.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.147, 61.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.143, 61.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.203, 61.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.143, 61.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.03, 61.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.993, 61.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.923, 61.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.913, 61.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.109, 61.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.299, 61.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.478, 61.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.653, 61.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.98, 61.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.817, 61.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.406, 62.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.352, 62.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.44, 62.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.169, 61.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.09, 61.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.094, 61.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.169, 61.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.977, 61.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.964, 61.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.908, 61.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.309, 61.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.298, 61.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.299, 61.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.499, 61.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.51, 61.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.71, 61.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.065, 61.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.415, 62.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.428, 62.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.4, 62.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.416, 62.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.362, 62.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.401, 62.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.367, 62.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.465, 62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.093, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.333, 62.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.568, 63.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.636, 63.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.555, 63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.682, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.218, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.047, 63.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.253, 63.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.952, 63.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.435, 63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.375, 63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.854, 63.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.803, 63.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.881, 63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.042, 63.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.781, 63.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.769, 63.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.731, 63.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.745, 63.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.77, 63.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.221, 63.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.207, 63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.177, 63.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.175, 63.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.204, 63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.187, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.28, 63.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.06, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.067, 63.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.318, 63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.387, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.395, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.249, 63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.203, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.331, 63.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.293, 63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.271, 63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.191, 63.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.022, 63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.087, 63.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.034, 63.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.058, 63.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.475, 63.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.485, 63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.686, 63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.81, 63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.792, 63.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.218, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.179, 63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.129, 63.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.207, 63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.193, 63.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.282, 63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.336, 63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.388, 63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.547, 63.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.026, 62.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.477, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.478, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.52, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.567, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.426, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.688, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.733, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.712, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.085, 62.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.735, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.696, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.653, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.607, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.7, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.598, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.651, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.718, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.73, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.735, 62.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.765, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.675, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.734, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.601, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.0, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.997, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.043, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.076, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.126, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.129, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.266, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.386, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.397, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.182, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.341, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.305, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.357, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.25, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.38, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.431, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.307, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.308, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.396, 62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.327, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.598, 62.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.494, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.5, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.302, 62.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.557, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.523, 62.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.465, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.321, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.197, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.286, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.278, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.369, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.433, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.397, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.456, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.366, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.557, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.436, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.91, 62.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.366, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.265, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.333, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.471, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.586, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.353, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.486, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.441, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.347, 62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.157, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.428, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.439, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.552, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.334, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.378, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.346, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.337, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.364, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.31, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.363, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.075, 62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.651, 62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.376, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.403, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.437, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.344, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.496, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.69, 62.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.706, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.653, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.671, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.762, 62.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.504, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.454, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.479, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.667, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.831, 62.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.453, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.361, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.316, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.3, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.386, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.363, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.349, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.492, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.392, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.294, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.331, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.415, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.328, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.376, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.425, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.481, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.374, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.322, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.277, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.302, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.255, 62.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.263, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.554, 62.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.314, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.331, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.284, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.267, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.045, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.922, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.336, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.379, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.298, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.37, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.333, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.416, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.319, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.615, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.506, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.192, 62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.41, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.177, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.432, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.472, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.475, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.529, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.515, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.463, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.493, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.516, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.518, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.539, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.616, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.619, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.303, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.37, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.326, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.417, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.193, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.368, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.511, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.88, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.893, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.904, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.925, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.004, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.979, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.012, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.91, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.828, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.897, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.898, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.948, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.883, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.862, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.021, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.199, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.211, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.114, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.025, 62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.052, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.952, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.226, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.999, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.832, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.986, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.984, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.855, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.806, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.826, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.776, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.761, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.854, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.866, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.542, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.898, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.87, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.807, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.722, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.53, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.934, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.861, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.207, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.925, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.378, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.423, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.324, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.341, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.31, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.533, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.245, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.33, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.299, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.421, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.342, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.388, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.577, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.325, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.3, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.416, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.363, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.516, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.482, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.407, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.382, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.49, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.379, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.426, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.49, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.405, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.48, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.437, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.297, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.267, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.441, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.357, 62.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.851, 62.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.339, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.36, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.15, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.386, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.371, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.034, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.315, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.358, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.414, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.457, 62.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.116, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.317, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.33, 62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.749, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.348, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.444, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.63, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.439, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.532, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.422, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.605, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.303, 62.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.343, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.991, 62.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.476, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.494, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.476, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.356, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.389, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.383, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.488, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.294, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.305, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.289, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.439, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.45, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.313, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.294, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.245, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.13, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.059, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.186, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.102, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.173, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.135, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.41, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.175, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.234, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.372, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.324, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.694, 62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.403, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.341, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.456, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.436, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.351, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.406, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.41, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.358, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.483, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.438, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.231, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.422, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.471, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.362, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.34, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.278, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.312, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.222, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 62.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.279, 62.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.462, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.236, 62.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.384, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.442, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.264, 62.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.415, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.504, 62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.406, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.675, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.626, 62.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.034, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.089, 62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.839, 62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.19, 62.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.342, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.246, 63.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.509, 62.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.505, 62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.571, 63.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.643, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.713, 62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.862, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.864, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.853, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.899, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.904, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.793, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.336, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.801, 62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.145, 62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.694, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.148, 62.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.844, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.634, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.831, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.673, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.657, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.641, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.833, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.836, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.516, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.465, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.435, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.463, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.406, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.457, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.233, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.503, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.101, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.472, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.255, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.396, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.391, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.393, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.219, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.385, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.375, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.518, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.411, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.466, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.4, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.411, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.671, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.276, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.47, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.513, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.437, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.518, 62.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.371, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.394, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.393, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.417, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.393, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.35, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.433, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.336, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.357, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.223, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.416, 62.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.191, 62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.632, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.681, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.882, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.837, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.14, 62.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.107, 62.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.368, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.997, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.379, 62.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.458, 62.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.581, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.558, 62.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.599, 62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.196, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.784, 62.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.5, 62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.795, 62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.366, 62.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.804, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.988, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.607, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.048, 62.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.384, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.835, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.38, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.551, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.451, 63.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.122, 63.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.366, 63.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.38, 63.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.287, 63.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.417, 63.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.377, 63.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.423, 63.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.517, 63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.444, 63.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.549, 63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.594, 64.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.591, 63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.871, 64.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.805, 64.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.916, 64.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.249, 64.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.076, 64.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.155, 64.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.151, 64.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.261, 64.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 64.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.102, 64.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.298, 64.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.242, 64.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.575, 64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.195, 64.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.121, 64.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.083, 64.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.997, 64.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.144, 64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.143, 64.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 64.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.176, 64.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.149, 64.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.153, 64.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.91, 63.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.283, 64.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.053, 64.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.349, 64.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.4, 64.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 64.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.91, 64.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.275, 64.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.305, 64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.288, 64.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 64.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.284, 64.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.168, 64.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 64.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.267, 64.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.89, 64.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.93, 64.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.499, 64.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 64.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.807, 64.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.229, 64.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 64.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.357, 64.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.117, 64.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.27, 64.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.077, 64.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.142, 64.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.039, 64.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.288, 64.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.355, 64.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.083, 64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.279, 64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 64.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.407, 64.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.771, 64.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.094, 64.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.689, 64.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.239, 64.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.189, 64.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.52, 64.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.385, 64.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.422, 64.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.502, 64.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.392, 64.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.829, 64.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.572, 64.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.558, 64.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.56, 64.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.52, 64.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.605, 64.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.582, 64.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.659, 64.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.589, 64.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.524, 64.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.595, 64.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.639, 64.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 64.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.549, 64.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.382, 64.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.528, 64.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.521, 64.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.613, 64.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.629, 64.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.673, 64.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.535, 64.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.427, 64.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.738, 64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.663, 64.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.561, 64.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.216, 64.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.587, 65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.406, 64.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.618, 64.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.865, 64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.624, 64.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.539, 64.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.555, 64.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.602, 64.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.331, 64.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 64.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 64.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.501, 64.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.72, 64.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 64.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.602, 64.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.37, 64.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.257, 64.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 64.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.37, 64.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.284, 64.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.362, 64.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.418, 64.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.121, 64.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.401, 64.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 64.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.011, 64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.066, 64.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.448, 64.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.349, 64.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.394, 64.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.376, 64.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.458, 64.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.36, 64.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.394, 64.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.429, 64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 64.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.379, 64.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 64.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.576, 64.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.879, 64.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.506, 64.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.626, 64.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 64.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.403, 64.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.528, 64.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.557, 64.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.651, 64.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.564, 64.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.808, 64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.679, 64.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.917, 64.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.498, 65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.629, 65.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.519, 65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.599, 65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.517, 65.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.653, 65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.49, 65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 65.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.44, 65.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.345, 65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.51, 65.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.543, 65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.558, 65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.593, 65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.499, 66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.443, 66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.53, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.58, 66.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.582, 66.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.578, 66.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.572, 66.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.573, 66.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.121, 66.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.399, 66.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.343, 66.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 66.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.916, 66.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.963, 66.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 66.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.033, 66.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 66.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.715, 66.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 66.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.894, 66.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.022, 67.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.967, 67.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.767, 67.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 67.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.84, 67.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.448, 67.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.924, 67.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 67.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 67.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.126, 67.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 67.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.09, 67.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.929, 67.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.974, 68.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.135, 68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.426, 68.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.002, 68.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.947, 68.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.858, 68.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.865, 68.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.215, 68.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.839, 68.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.802, 68.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.809, 68.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.002, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.005, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.121, 69.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.003, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.209, 69.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.195, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.164, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.996, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.835, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.844, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.795, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.747, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.588, 69.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.54, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.585, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.661, 69.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.641, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.214, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.146, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.284, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.286, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.357, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.369, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.504, 69.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.366, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.231, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 69.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.166, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.876, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.133, 68.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.624, 68.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.201, 69.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.164, 69.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.463, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.816, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 69.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.124, 69.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 69.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.131, 69.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.077, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.968, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.191, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.191, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.305, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.098, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.033, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.465, 69.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.26, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.255, 69.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.212, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.016, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.468, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.456, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.568, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.653, 69.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.381, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.585, 69.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.871, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.872, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.367, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 69.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.367, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.299, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.306, 69.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.102, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.023, 69.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.925, 68.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.262, 69.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.753, 68.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.009, 69.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.272, 69.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.257, 69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.425, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.416, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.286, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.298, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 69.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.875, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.261, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.383, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.406, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.392, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.428, 69.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.352, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 69.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.362, 69.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.257, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.352, 69.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.259, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.273, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 68.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.395, 68.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.31, 68.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.221, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.284, 68.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 68.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.194, 68.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 68.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 68.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.223, 68.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 68.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 68.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 68.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 68.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 68.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 68.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.138, 68.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.104, 68.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 68.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.853, 67.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.618, 68.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.062, 68.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.932, 67.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.711, 67.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 68.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.456, 67.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.957, 67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.412, 67.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.731, 68.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.735, 67.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.554, 67.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.607, 67.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.831, 67.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.675, 67.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.631, 67.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.486, 68.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.99, 68.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.865, 68.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 68.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.48, 68.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.013, 68.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.627, 68.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.038, 68.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.869, 68.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.892, 68.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.238, 69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.512, 68.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.802, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.819, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.787, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.543, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.142, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.005, 69.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.213, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.2, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.133, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.959, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.194, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.21, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.386, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.373, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.501, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.474, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.533, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.485, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.953, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.648, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.577, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.649, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.739, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.799, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.426, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.296, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.32, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.436, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.517, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.591, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.578, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.159, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.803, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.666, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.159, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.203, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.224, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.585, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.599, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.418, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.382, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.422, 70.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.635, 70.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.365, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.625, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.888, 70.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.129, 70.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.452, 70.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 70.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 71.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05, 71.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 71.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 71.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 71.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.194, 71.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.279, 71.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 71.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 71.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.246, 71.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.265, 71.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 71.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 71.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.566, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.567, 71.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.701, 71.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.711, 71.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.798, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 71.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.009, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.491, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.522, 72.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.98, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 72.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.112, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 72.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 72.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.611, 72.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 72.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.502, 72.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.956, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.739, 72.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.559, 72.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.227, 72.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 72.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.371, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 72.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 72.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.463, 72.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 72.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.182, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.485, 72.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.256, 72.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.941, 72.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.268, 72.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.286, 72.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 72.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.388, 72.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33, 72.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.995, 72.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.888, 72.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 72.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.91, 72.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.718, 72.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.881, 72.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.797, 72.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.865, 72.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.693, 72.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.791, 72.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.729, 72.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.704, 72.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.719, 72.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 72.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.779, 72.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.732, 72.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.55, 72.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.625, 72.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.668, 72.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 72.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.713, 72.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.673, 72.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.598, 72.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.943, 72.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.552, 72.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.664, 72.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.577, 72.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.59, 72.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.675, 72.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.593, 72.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.462, 72.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.657, 72.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.508, 72.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.311, 72.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.446, 72.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 72.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 72.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 72.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.174, 72.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.027, 72.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.238, 72.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.901, 72.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.487, 72.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.292, 72.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.057, 72.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.22, 72.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.219, 72.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.339, 72.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.355, 72.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.305, 72.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 72.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.057, 72.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.114, 72.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 72.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.434, 72.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.98, 72.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.075, 72.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.931, 72.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.667, 72.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.393, 73.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.632, 72.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.278, 73.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.228, 73.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.034, 73.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.062, 73.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.064, 73.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11, 73.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.141, 73.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.604, 73.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 73.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.441, 72.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.71, 73.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.003, 73.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 72.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.756, 73.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.855, 72.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.763, 72.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.706, 72.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.676, 72.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.744, 72.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.798, 72.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.818, 72.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.866, 72.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.899, 72.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.919, 72.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94, 72.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.892, 72.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 72.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.882, 72.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.83, 72.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.765, 72.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 72.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.773, 72.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.998, 72.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.786, 72.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.773, 72.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.789, 72.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.075, 72.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.874, 72.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.854, 72.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.588, 72.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 72.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89, 72.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.909, 72.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.05, 72.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.92, 72.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.014, 72.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.358, 72.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.037, 72.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 72.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.607, 72.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.548, 72.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.021, 72.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 73.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.22, 72.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.409, 72.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 73.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.007, 72.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.953, 72.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.899, 72.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.931, 72.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.057, 72.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.846, 72.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.373, 72.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.828, 72.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.867, 72.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.833, 72.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 72.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 72.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 72.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.186, 71.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.854, 72.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.719, 72.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 72.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.032, 72.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 72.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.352, 72.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.039, 72.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.414, 72.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.303, 72.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.252, 72.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.614, 72.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.396, 72.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.173, 72.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.22, 72.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.308, 72.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.558, 72.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.355, 72.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.463, 72.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.008, 72.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.335, 72.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.216, 72.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.346, 72.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.313, 72.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.382, 72.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2, 72.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.307, 72.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.357, 72.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.41, 72.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.304, 72.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.285, 72.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.461, 72.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.46, 72.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 72.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.327, 72.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.366, 72.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.268, 72.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.329, 72.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.481, 72.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.456, 72.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.097, 72.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.46, 72.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.641, 72.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.51, 72.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.688, 72.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 72.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.58, 72.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.717, 72.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.692, 72.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.964, 72.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.289, 72.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.893, 72.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01, 72.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 72.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 72.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.241, 72.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.951, 72.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 72.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 72.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 72.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.96, 72.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 72.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 72.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 72.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.386, 73.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.823, 72.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.137, 72.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.576, 72.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.814, 72.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 72.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.825, 72.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.056, 72.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.059, 72.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 72.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.395, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.973, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.309, 72.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 72.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.359, 72.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 72.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 72.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 72.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.078, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.346, 72.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.081, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.259, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.031, 72.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.602, 72.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.496, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 71.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.381, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.293, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.518, 71.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.553, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.729, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.671, 71.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.606, 71.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.677, 71.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 71.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.37, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.656, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.639, 71.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.583, 71.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.473, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.449, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.568, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.493, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.56, 71.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 71.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.282, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 71.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.925, 71.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.524, 71.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.246, 71.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.026, 71.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 71.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.229, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.202, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.765, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.419, 71.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.137, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 71.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.283, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 71.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.957, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.012, 71.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.012, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.358, 71.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.326, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.971, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.995, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.175, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.846, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.743, 71.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.826, 71.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.584, 71.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.77, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.472, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.883, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.629, 71.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.651, 71.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.552, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.404, 70.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.637, 70.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.568, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.798, 70.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.677, 70.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.273, 70.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.418, 70.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.542, 70.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.748, 70.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.759, 70.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.399, 70.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.311, 70.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.051, 70.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.223, 70.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.071, 70.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.236, 70.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.781, 70.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.813, 70.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.641, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.256, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.015, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.057, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.971, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.795, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.514, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.633, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.702, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.433, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.704, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.672, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.404, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.932, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.598, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.976, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.053, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.153, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.661, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.312, 73.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.935, 73.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.884, 73.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.765, 73.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 73.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 74.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.068, 73.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.091, 73.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.877, 73.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.708, 73.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.564, 73.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.202, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.137, 71.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.273, 75.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.047, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.536, 71.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.053, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.955, 71.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.573, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.414, 71.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.082, 71.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.929, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.068, 71.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.821, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.641, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.855, 70.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.756, 70.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.221, 70.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.505, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.233, 70.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.197, 70.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.914, 70.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.418, 70.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.403, 70.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.362, 70.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.104, 70.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.851, 70.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.98, 70.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.596, 70.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.588, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.273, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.287, 70.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.482, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.225, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.115, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.064, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.462, 68.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.717, 68.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.563, 67.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -13.682, 59.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.557, 67.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.601, 67.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.672, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.835, 67.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 67.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.805, 67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 67.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.89, 67.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.874, 67.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.788, 67.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.723, 67.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.748, 67.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.668, 67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.706, 67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.836, 67.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.835, 67.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.827, 67.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.722, 67.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.559, 67.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.736, 67.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.643, 67.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.915, 67.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.475, 67.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.71, 67.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.988, 67.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.681, 67.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.586, 67.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.747, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.746, 67.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.685, 67.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.541, 67.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.349, 67.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.785, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.638, 67.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.228, 67.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.533, 67.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.597, 67.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.536, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.731, 67.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.603, 67.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.629, 67.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.682, 67.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.762, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.622, 67.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.602, 67.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.608, 67.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.602, 67.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.582, 67.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.479, 66.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.41, 66.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.438, 66.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.575, 66.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.595, 66.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.747, 66.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.113, 65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.163, 65.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.071, 65.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.854, 64.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -59.939, 64.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.527, 64.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.669, 64.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.043, 64.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.841, 64.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.103, 64.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.224, 64.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.124, 64.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.048, 64.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.826, 64.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.844, 64.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.935, 64.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.791, 64.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.744, 64.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.467, 64.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.745, 64.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.899, 63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.864, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.807, 63.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.524, 64.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.653, 64.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.744, 64.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.035, 64.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.067, 64.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.715, 64.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.556, 64.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.443, 63.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.489, 63.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.608, 63.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.27, 63.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.344, 63.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.311, 63.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.514, 63.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.485, 63.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.57, 63.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.15, 62.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.176, 62.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.986, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.37, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.648, 62.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.831, 62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.855, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.986, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.144, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.152, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.166, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.155, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.013, 61.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.424, 61.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.614, 61.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.693, 61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.41, 62.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.489, 72.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 72.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.548, 72.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 72.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 72.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 72.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.47, 72.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 72.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 72.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 72.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.921, 73.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.247, 73.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 73.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.569, 73.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.684, 73.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.588, 72.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 73.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71, 73.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.798, 73.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 73.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 73.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 73.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.45, 73.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.044, 73.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.783, 73.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.647, 73.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.556, 73.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.16, 73.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.024, 73.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.192, 73.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.379, 73.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.33, 73.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.219, 73.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.044, 73.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.923, 73.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.663, 73.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.564, 73.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.585, 73.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.309, 74.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.385, 75.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.479, 73.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.559, 74.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.447, 74.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.608, 73.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.043, 73.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.296, 74.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.403, 74.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.614, 74.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.571, 74.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.394, 74.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.502, 74.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.352, 74.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.637, 74.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94, 74.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.435, 74.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.149, 74.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.643, 74.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.395, 74.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.168, 74.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.246, 74.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.231, 74.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.386, 73.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.535, 74.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.606, 74.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.837, 74.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.442, 74.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.349, 74.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.259, 74.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.728, 74.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07, 74.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.194, 74.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.178, 74.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.003, 74.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.743, 74.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.864, 74.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.096, 73.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14, 74.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.138, 74.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.422, 74.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.29, 74.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.105, 74.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.472, 74.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.999, 74.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.088, 74.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.864, 74.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.929, 74.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.695, 74.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.523, 74.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.489, 74.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.147, 74.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.274, 73.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.301, 73.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.3, 73.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.196, 74.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.04, 73.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.344, 73.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.212, 73.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.305, 73.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.363, 74.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.346, 74.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.471, 74.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.518, 74.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.504, 74.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.471, 74.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.464, 74.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.62, 74.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.544, 74.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.978, 74.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.025, 74.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.667, 73.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.705, 73.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.024, 73.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.221, 73.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.764, 73.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.95, 73.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.954, 73.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02, 74.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.155, 73.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.523, 73.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.923, 73.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.383, 73.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5, 73.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.135, 73.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.445, 73.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.887, 73.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.343, 73.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.432, 73.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.906, 73.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.948, 73.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.903, 73.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.359, 73.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.188, 73.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.322, 73.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.493, 73.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.533, 73.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.752, 73.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 73.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.736, 73.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 73.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.82, 73.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.131, 73.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.268, 73.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0, 73.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.844, 73.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 73.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.892, 73.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08, 73.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.003, 73.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 73.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.162, 73.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.051, 73.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.825, 73.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.406, 72.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.68, 72.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.662, 72.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.213, 73.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 72.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.241, 72.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.238, 72.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.078, 72.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.323, 72.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 72.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 72.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 72.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 72.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.559, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.945, 72.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93, 72.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.97, 72.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 72.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 71.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.927, 71.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.072, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 71.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.132, 71.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.343, 71.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.246, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.391, 71.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.461, 71.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.903, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.417, 71.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.493, 71.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.446, 71.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.727, 70.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.782, 71.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.907, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.675, 71.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.66, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.853, 71.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 71.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 71.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.036, 71.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 71.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 71.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 71.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 71.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 71.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 71.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.811, 72.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.742, 72.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.052, 73.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.981, 73.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.432, 73.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.413, 73.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.79, 73.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.655, 73.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.822, 73.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.434, 73.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.605, 73.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.311, 73.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.522, 73.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.204, 73.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.833, 73.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.725, 73.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.038, 73.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.666, 73.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.978, 73.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 73.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.916, 73.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.709, 73.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 73.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.353, 73.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.765, 73.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.394, 73.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.06, 73.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.248, 73.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.242, 73.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.292, 73.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.314, 73.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.35, 73.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 73.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.115, 73.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.226, 73.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.745, 73.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.238, 73.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.174, 72.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.988, 72.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.959, 72.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.866, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.758, 72.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.313, 71.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.16, 69.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.848, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.254, 71.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.301, 68.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.196, 68.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.116, 68.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.026, 68.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 68.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.042, 68.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.233, 68.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.367, 68.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.349, 68.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.285, 68.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.353, 68.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.674, 68.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 68.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.884, 68.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.187, 68.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.923, 68.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.116, 68.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.913, 68.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 68.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.91, 68.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.574, 67.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.234, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.643, 67.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.698, 67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.709, 67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.697, 67.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.738, 67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.7, 67.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.687, 67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.644, 67.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.619, 67.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.588, 67.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.462, 67.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.563, 67.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.62, 67.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.586, 67.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.574, 67.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.582, 67.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.602, 67.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.702, 67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.686, 66.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.606, 66.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.295, 66.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.322, 66.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.305, 66.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.291, 66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.344, 66.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.177, 66.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.61, 66.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.357, 66.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.873, 66.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.922, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.972, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.797, 64.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.813, 64.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.954, 64.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.082, 64.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.887, 64.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.829, 64.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.632, 64.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.767, 64.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.15, 64.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.915, 64.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.921, 63.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.973, 63.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.952, 63.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.963, 63.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.048, 63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.094, 63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.136, 63.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.005, 63.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.01, 63.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.68, 63.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.631, 63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.676, 63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.757, 63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.725, 63.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.897, 63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.046, 63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.891, 63.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.864, 63.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.805, 63.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.875, 63.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.882, 63.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.758, 63.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.403, 62.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.469, 62.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.552, 62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.457, 62.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.504, 62.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.652, 62.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.854, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.674, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.428, 62.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.341, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.622, 62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.559, 62.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.605, 62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.482, 62.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.367, 62.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.339, 62.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.432, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.175, 62.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.171, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.163, 62.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.144, 62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.999, 62.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.1, 62.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.003, 62.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.942, 62.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.068, 62.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.279, 62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.95, 62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.073, 62.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.0, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.218, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.02, 62.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.618, 62.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.632, 62.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.5, 61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.641, 62.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.524, 62.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.461, 62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.04, 61.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.091, 62.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.295, 62.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.345, 62.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.414, 62.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.504, 62.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.487, 62.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.585, 62.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.496, 62.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.328, 62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.473, 62.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.405, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.237, 62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.484, 62.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.544, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.508, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.327, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.439, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.467, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.439, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.36, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.325, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.083, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.06, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.295, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.918, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.004, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.256, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.026, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.283, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.214, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.438, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.437, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.594, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.812, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.924, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.818, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.963, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.958, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.963, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.157, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.125, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.203, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.272, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.357, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.449, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.754, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.053, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.991, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.8, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.894, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.557, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.609, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.491, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.56, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.61, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.798, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.883, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.937, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.067, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.706, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.526, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.507, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.82, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.884, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.939, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.087, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.435, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.511, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.833, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.928, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.991, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.613, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.035, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.541, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.008, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.173, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.003, 70.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.316, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98, 70.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.723, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.185, 70.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.37, 70.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.101, 70.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.495, 70.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.248, 70.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.839, 70.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.113, 71.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.351, 71.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.184, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 71.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.604, 71.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.511, 71.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.956, 71.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.918, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.887, 71.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 71.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.225, 71.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 71.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.593, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 71.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.455, 71.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.103, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.687, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 71.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 72.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.677, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.696, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 72.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 72.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.621, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 72.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 72.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 72.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.581, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63, 72.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.469, 72.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 72.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.42, 72.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 72.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.322, 72.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.347, 72.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 72.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 72.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.155, 72.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.151, 72.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 72.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.222, 72.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11, 72.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.765, 72.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.195, 72.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 72.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.232, 72.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 72.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.037, 72.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 72.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.222, 72.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 72.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.238, 72.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36, 72.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 73.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.367, 73.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 73.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 73.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 73.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27, 73.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.383, 73.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 73.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36, 73.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 73.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.138, 73.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.295, 73.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 73.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 73.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.301, 73.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 73.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.145, 73.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.276, 73.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.435, 73.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16, 73.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 73.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.206, 73.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.211, 73.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 73.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02, 73.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.729, 73.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.652, 73.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.293, 73.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.851, 73.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 73.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.482, 73.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.489, 73.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.281, 73.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.286, 73.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.234, 73.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.974, 73.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.254, 73.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.204, 73.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.367, 73.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.725, 73.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 73.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.073, 73.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.041, 73.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.051, 73.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.023, 73.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.164, 73.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.889, 73.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 73.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.56, 73.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.527, 73.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.265, 73.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.302, 73.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.24, 73.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.093, 73.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.167, 73.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.182, 73.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.055, 73.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.102, 73.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.02, 73.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98, 73.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.093, 73.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.959, 73.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.623, 73.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.645, 73.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.631, 73.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61, 73.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.404, 73.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.589, 73.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.658, 73.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.577, 73.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.606, 73.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.547, 73.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.531, 73.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.412, 73.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.807, 73.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.531, 73.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.629, 74.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.496, 73.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.586, 73.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 73.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.399, 73.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.429, 73.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.412, 73.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.421, 73.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.383, 73.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.371, 73.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.428, 73.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.407, 73.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.437, 73.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.462, 73.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.483, 73.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.464, 73.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.481, 73.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.478, 73.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.63, 73.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.451, 73.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.553, 73.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.565, 73.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.634, 73.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.517, 73.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.019, 73.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56, 73.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.357, 73.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.378, 73.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.621, 73.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.44, 73.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.524, 73.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.203, 73.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77, 73.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.331, 73.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.059, 73.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.528, 73.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.535, 73.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.396, 73.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.604, 73.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.542, 73.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.618, 73.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 73.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.648, 73.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.715, 73.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.527, 73.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.545, 73.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.357, 73.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.547, 73.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.618, 73.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.451, 73.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.678, 73.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.713, 73.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.683, 73.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.748, 73.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.717, 73.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79, 73.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.809, 73.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.812, 73.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.408, 73.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56, 73.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.101, 73.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.638, 73.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.632, 73.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.248, 73.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.176, 73.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.983, 73.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.956, 73.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.182, 73.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.427, 73.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.317, 73.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.843, 74.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.207, 73.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.165, 73.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.282, 73.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.407, 73.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.098, 73.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.164, 73.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.137, 73.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.134, 73.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.122, 73.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.19, 73.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.149, 73.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.179, 73.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.044, 73.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.066, 73.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06, 73.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.174, 73.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.076, 73.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.526, 73.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.281, 73.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.937, 73.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.096, 73.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.697, 74.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.055, 73.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.916, 73.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.968, 73.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.035, 73.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.828, 73.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.791, 74.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.871, 73.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.726, 73.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.368, 73.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.367, 73.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.346, 73.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.479, 73.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.165, 73.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.386, 73.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.187, 73.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.367, 73.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.446, 73.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.401, 73.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.385, 73.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.571, 73.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.682, 73.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.671, 73.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.618, 73.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.583, 73.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.131, 73.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.762, 73.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 73.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 73.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.901, 73.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.734, 73.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 73.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.062, 73.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.988, 73.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.044, 73.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.079, 73.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.982, 73.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.034, 73.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.05, 73.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.043, 73.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.012, 73.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.008, 73.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.985, 73.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.338, 73.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 73.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.932, 73.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.946, 73.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 73.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 73.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 73.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.997, 73.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.04, 73.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.105, 73.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 73.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.875, 73.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.926, 73.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.909, 73.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 73.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 73.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.602, 73.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.98, 73.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 73.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.974, 73.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.935, 73.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97, 73.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02, 73.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.155, 72.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.017, 73.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.028, 73.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 73.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.615, 73.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 73.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.231, 73.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.095, 73.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.976, 73.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.782, 73.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.833, 73.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 73.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.257, 73.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.447, 73.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.271, 73.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.266, 73.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.326, 72.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.499, 73.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.579, 73.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.723, 73.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.655, 73.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 73.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.829, 73.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.787, 73.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.783, 73.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.81, 73.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.945, 73.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.798, 73.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 73.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.961, 73.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 73.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.922, 72.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.972, 72.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.114, 73.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.955, 72.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.979, 72.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.915, 72.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.876, 72.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.776, 72.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.82, 72.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.846, 72.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.882, 72.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.769, 73.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 72.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92, 73.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 72.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.853, 72.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.938, 73.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.827, 73.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.552, 73.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.834, 72.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.842, 72.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.859, 73.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.78, 72.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.767, 72.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.788, 72.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 72.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.811, 72.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.779, 72.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 72.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.796, 72.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.885, 72.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.798, 72.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.871, 72.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.832, 72.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 72.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 72.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 72.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.76, 72.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 72.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.891, 72.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.659, 73.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 72.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 72.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.016, 72.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.964, 72.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.879, 72.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.886, 72.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 72.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.006, 72.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.89, 72.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 72.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.972, 72.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 72.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 72.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 72.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 72.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 72.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.001, 72.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.921, 72.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.903, 72.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.963, 72.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.949, 72.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 72.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 72.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.987, 72.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 72.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.994, 72.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 72.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 72.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.96, 72.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.724, 72.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 72.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.835, 72.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.941, 72.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 72.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 72.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01, 72.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.771, 72.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 72.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.704, 73.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.866, 72.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 72.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.979, 72.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 72.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.323, 72.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 72.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 72.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 73.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 72.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05, 72.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 72.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11, 72.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.944, 72.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 72.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 72.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 72.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.063, 72.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 72.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 72.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 72.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 72.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 72.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.213, 72.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 72.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 72.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.126, 72.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.438, 72.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 72.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 72.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 72.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 72.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.891, 72.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.855, 72.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.822, 72.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.874, 72.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 72.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 72.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.074, 72.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.223, 72.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.156, 72.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 72.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 72.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.348, 72.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 72.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.383, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.339, 72.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.42, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.479, 72.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.515, 72.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.466, 72.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.52, 72.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 72.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 72.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 72.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.439, 72.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.329, 72.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 72.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 72.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63, 72.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.733, 72.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 72.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 72.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 72.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 72.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 72.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 72.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.969, 72.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.977, 72.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 72.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.936, 72.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 72.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.527, 72.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 72.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.772, 72.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.85, 72.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 72.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.862, 72.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.758, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 73.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 72.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 72.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.486, 72.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 72.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 72.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.553, 72.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.589, 72.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.507, 72.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.583, 72.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 72.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 72.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 72.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 72.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.595, 72.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.453, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 72.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 72.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 72.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.223, 72.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 72.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.137, 72.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 72.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.499, 72.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 72.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 72.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 72.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 72.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 72.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 72.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 72.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.161, 72.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.434, 72.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.754, 72.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.458, 72.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 72.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 72.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.693, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 72.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65, 72.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 72.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 72.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 72.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 72.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 72.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 72.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.687, 72.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.522, 72.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 72.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66, 72.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.939, 72.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 72.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 72.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.638, 72.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 72.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 72.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 72.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.131, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 72.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.293, 72.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 72.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.257, 72.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.02, 72.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 72.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 72.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.396, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.412, 72.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 72.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.095, 72.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 72.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.725, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.063, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.948, 72.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.838, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.844, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.772, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.88, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 72.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.747, 72.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.823, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 71.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.754, 72.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.969, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.934, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.939, 71.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.936, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.26, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.037, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.009, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.351, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.078, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.143, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.034, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.542, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.992, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.932, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.978, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.011, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.724, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.798, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.117, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.952, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.952, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.118, 71.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.781, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.056, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 72.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.036, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 71.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.913, 71.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.403, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 71.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 71.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.978, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.976, 72.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 72.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 72.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.051, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 72.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.706, 72.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.992, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.174, 72.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.187, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.237, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.259, 71.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.237, 71.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.344, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.222, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.356, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.514, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.187, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.444, 71.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.235, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.217, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 71.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.158, 71.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.944, 71.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.083, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 71.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.348, 71.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.241, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.422, 71.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.701, 71.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.295, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.916, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.468, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 71.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.067, 71.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.497, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 71.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.458, 71.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 71.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.593, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 71.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.445, 71.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.998, 71.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.694, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.606, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.608, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.735, 71.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.549, 71.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 71.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.476, 71.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.662, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.739, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.473, 71.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.206, 71.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.815, 71.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 71.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 71.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 71.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.944, 71.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.331, 71.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.072, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 71.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.618, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.426, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.636, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 71.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.112, 71.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.811, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.841, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.769, 70.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.621, 70.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.111, 70.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.716, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.482, 70.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 70.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.294, 70.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 70.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 70.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 70.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.933, 70.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.574, 70.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45, 70.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.443, 70.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17, 70.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.101, 70.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.98, 70.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 70.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.635, 70.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.401, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.317, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.255, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.202, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.092, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.019, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.515, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.013, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.043, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.959, 70.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88, 70.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.537, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.144, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.976, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.817, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.958, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.849, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.94, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.93, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.812, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.737, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.705, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.56, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.67, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.35, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.648, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.581, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.623, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.334, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.303, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.26, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.081, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.179, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.096, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.085, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.861, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.92, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.897, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.113, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.481, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.094, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.07, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.03, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.84, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.847, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.957, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.787, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.008, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.827, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.796, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.778, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.675, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.8, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.003, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.097, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.775, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.695, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.629, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.68, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.863, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.611, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.664, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.593, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.502, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.291, 69.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.309, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.293, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.477, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.248, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.052, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.707, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.703, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.469, 69.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.565, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.651, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.556, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.34, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.218, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.579, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.724, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.661, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.154, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.272, 69.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.242, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.287, 69.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.325, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.283, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.331, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.598, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.655, 70.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.884, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.956, 70.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.694, 70.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.789, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.747, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.601, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.457, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.859, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.161, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.205, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.916, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.912, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.634, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.693, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.19, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.136, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.966, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.607, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.939, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.174, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.913, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.728, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.989, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.989, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.97, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.88, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.802, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.78, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.905, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.096, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.888, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.12, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.81, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.648, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.883, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.689, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.782, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.881, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.868, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.797, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.531, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.126, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.309, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.275, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.37, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.597, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.488, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.767, 69.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.616, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.579, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.372, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.368, 69.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.256, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.131, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.026, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.026, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.981, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.941, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.885, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.92, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.73, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.503, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.555, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.358, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.212, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.913, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.658, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.648, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.711, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.867, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.909, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.404, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.386, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.35, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.176, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.158, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.189, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.006, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.072, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.94, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.77, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.562, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.555, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.551, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.299, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.207, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.961, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.622, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.832, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.732, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.683, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.693, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.637, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.596, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.602, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.526, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.385, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.222, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.178, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.121, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.133, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.066, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.022, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.844, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.804, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.817, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.76, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.673, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.68, 69.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.728, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.884, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.581, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.604, 69.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.605, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.577, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.504, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.513, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.115, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.495, 69.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.333, 68.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.342, 68.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.054, 68.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.014, 68.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.053, 68.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.123, 68.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.967, 69.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.029, 68.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.029, 68.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.467, 68.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.115, 68.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.108, 68.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.14, 68.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.142, 68.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.125, 68.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.051, 68.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.126, 68.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.091, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.069, 68.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.108, 68.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.162, 68.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.147, 68.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.17, 68.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.184, 68.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.148, 68.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.224, 68.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 68.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.242, 68.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 68.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.254, 68.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 68.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.381, 68.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.448, 68.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 68.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.362, 68.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.409, 68.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.39, 68.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.385, 68.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 68.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.423, 68.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.606, 68.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.66, 68.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.496, 68.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.401, 68.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.604, 68.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.355, 68.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.492, 68.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.464, 68.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.51, 68.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.29, 68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.339, 68.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.283, 68.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.98, 68.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.922, 68.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.908, 68.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.919, 69.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.97, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.993, 69.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.851, 68.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.09, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.144, 68.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.646, 69.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 69.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.252, 68.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.292, 69.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.63, 69.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.747, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.968, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.066, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.413, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.242, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.467, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.962, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.064, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.511, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.489, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.51, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.483, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.461, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.532, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.483, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.51, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.54, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.562, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.131, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.488, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.577, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.644, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.604, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.511, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.604, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.851, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.814, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.787, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.843, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.096, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.316, 70.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.728, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.31, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.106, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.849, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.083, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.098, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.964, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.061, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.079, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.018, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.079, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.084, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.31, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.407, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.434, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.479, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.57, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.575, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.738, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.92, 69.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.015, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.823, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.128, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.181, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.163, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.157, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.207, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.564, 70.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.633, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.968, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.33, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.446, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.429, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.806, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.411, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.591, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.638, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.051, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.628, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.509, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.677, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.812, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.835, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.965, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.952, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.945, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.042, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.236, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.382, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.316, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.427, 69.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.229, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.171, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.206, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.947, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.061, 70.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.031, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.361, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.025, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.879, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.159, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.072, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.085, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.381, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.045, 70.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.93, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.81, 70.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.965, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.344, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.294, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.022, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.304, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.386, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.407, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.467, 69.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.457, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.563, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.814, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.712, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.201, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.39, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.64, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.916, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.321, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.963, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.642, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.275, 69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.142, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.539, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.874, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.914, 69.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.034, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.853, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.37, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.866, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.888, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.998, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.734, 68.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.943, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.637, 69.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.746, 68.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.681, 69.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.771, 69.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.892, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.561, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.918, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.925, 69.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.768, 69.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.18, 69.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.344, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.918, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.994, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.935, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.959, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.976, 69.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.841, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.609, 69.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.827, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.865, 68.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.791, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.899, 69.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.865, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 68.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.584, 68.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.669, 69.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.063, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.808, 69.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 69.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.874, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.316, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 69.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.901, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 69.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.022, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.083, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.539, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.821, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 69.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 69.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.932, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.013, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.952, 69.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.011, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.184, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.131, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.236, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.22, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.271, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.31, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.443, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.425, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.543, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.68, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.964, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.182, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.142, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 70.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.405, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.685, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.731, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.742, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.846, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.686, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 70.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.453, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.932, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.436, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.755, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.341, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.706, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 70.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.692, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.383, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.731, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 70.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.859, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.768, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.826, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.294, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.367, 70.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 70.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.457, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.386, 70.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.489, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.463, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.009, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.022, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.269, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.388, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.336, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.589, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.398, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.496, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.646, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 70.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.783, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.168, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 69.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.449, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.429, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.271, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.48, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.379, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.526, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.792, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.739, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.308, 69.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.248, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.482, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.48, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.515, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.238, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.448, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.86, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.986, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.442, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.096, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.784, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.279, 70.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.126, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.42, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.688, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.132, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.267, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 70.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.319, 70.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 70.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.655, 70.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.271, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.604, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.559, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.907, 70.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.452, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.277, 70.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.768, 70.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.388, 70.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.326, 70.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.339, 70.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.429, 70.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.367, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 70.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 70.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 70.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45, 70.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.613, 70.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 70.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.215, 71.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 70.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 70.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 70.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.205, 70.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 70.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 70.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 70.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37, 70.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.023, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.151, 70.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.277, 70.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 70.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 70.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.124, 70.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.408, 70.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.604, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.514, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.683, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 70.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.745, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.782, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.787, 69.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.693, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.271, 75.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.028, 64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.135, 63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.963, 64.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.851, 64.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.825, 64.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.799, 64.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.292, 64.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.883, 64.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.874, 64.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.838, 64.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.519, 64.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.759, 64.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.479, 63.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.398, 63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.563, 63.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.747, 63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.821, 63.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.808, 63.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.772, 63.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.825, 63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.795, 63.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.854, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.985, 63.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.27, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.293, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.585, 63.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.632, 63.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.651, 63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.617, 63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.692, 63.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.771, 63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.742, 63.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.8, 63.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.551, 65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.207, 63.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.743, 63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.816, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.858, 63.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.834, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.805, 63.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 63.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.375, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.634, 63.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.738, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.935, 63.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.34, 63.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.957, 63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.889, 63.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.879, 63.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.959, 63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.901, 63.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.898, 63.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.92, 63.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.872, 63.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.818, 63.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.877, 63.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.886, 63.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.84, 63.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.896, 63.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.861, 63.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.875, 63.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.863, 63.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.861, 63.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.852, 63.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.986, 63.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.847, 63.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.83, 63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 63.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 63.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.488, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.265, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.227, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.125, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.094, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.058, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.076, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.039, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.074, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.122, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.22, 62.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.263, 62.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.699, 61.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.758, 61.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.816, 61.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.891, 61.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.017, 61.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.942, 61.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.183, 61.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.466, 61.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.413, 61.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.468, 61.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.542, 61.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.593, 61.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.581, 61.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.627, 61.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.754, 61.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.606, 61.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.714, 61.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.683, 61.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.644, 61.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.745, 61.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.691, 61.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.815, 61.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.839, 61.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.741, 61.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.746, 61.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.719, 61.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.556, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.457, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.394, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.392, 69.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.364, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.384, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.194, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.858, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.974, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.034, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.017, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.001, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.124, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.083, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.643, 69.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.161, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.29, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.314, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.414, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.456, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.534, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.581, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.652, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.503, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.226, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.92, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.955, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.222, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.255, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.548, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.861, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.541, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.033, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.051, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.053, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.152, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.144, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.371, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.343, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.476, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.453, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.479, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.516, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.609, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.701, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.874, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.904, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.0, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.024, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.19, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.208, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.545, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.277, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.424, 69.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.415, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.748, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.794, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.842, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.796, 69.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.263, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.035, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.05, 69.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.2, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.433, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.459, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.517, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.664, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.807, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.838, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.866, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.164, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.201, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.349, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.403, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.462, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.623, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.623, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.895, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.036, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.51, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.748, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.788, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.504, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.499, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.956, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.006, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.856, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.105, 70.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.517, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.274, 70.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.365, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.353, 70.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.444, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.468, 70.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.285, 70.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.292, 70.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.368, 70.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.537, 70.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.397, 70.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.397, 70.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.513, 70.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.259, 70.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.743, 70.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.839, 70.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 70.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.129, 70.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 70.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.198, 70.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.475, 70.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.361, 70.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.357, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.362, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.105, 71.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.386, 71.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 71.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.096, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.495, 71.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 71.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.696, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.505, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.976, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 71.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.031, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.56, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 72.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.46, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.336, 72.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 72.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 72.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 72.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.562, 73.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.341, 72.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 72.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.344, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.242, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.273, 72.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 72.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 72.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 72.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 72.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.316, 72.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 72.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 72.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 72.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 72.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.973, 72.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.857, 72.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.534, 72.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.344, 72.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.269, 72.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.846, 72.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 72.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.118, 72.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 72.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.171, 72.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.419, 72.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.003, 72.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 72.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.982, 72.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53, 72.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.171, 72.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 72.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.117, 72.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 72.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 72.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.155, 72.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 72.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.972, 72.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.894, 72.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.138, 72.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.046, 72.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 72.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 72.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.042, 72.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 72.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 72.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 73.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.946, 72.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 72.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 72.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 72.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.046, 72.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.922, 73.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 72.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.961, 72.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 72.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 72.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.902, 72.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 73.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 73.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.812, 73.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 73.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 73.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87, 73.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 73.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 73.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.981, 73.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.902, 73.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.836, 73.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.487, 73.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.426, 73.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.381, 73.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.127, 73.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.185, 73.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.186, 73.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.171, 73.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.126, 73.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.958, 73.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.872, 73.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.73, 73.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.921, 73.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.789, 73.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.664, 73.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.409, 73.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.239, 73.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.123, 73.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.101, 73.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.931, 73.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.369, 73.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.788, 73.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.899, 73.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.858, 73.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.493, 73.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.837, 73.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.177, 73.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.271, 73.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.741, 74.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.053, 73.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.222, 73.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.285, 73.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.946, 73.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.125, 73.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.078, 73.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.061, 73.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.247, 73.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.142, 73.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.777, 73.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.385, 74.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.056, 74.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.152, 74.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.078, 74.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.342, 74.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.252, 74.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.282, 74.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61, 74.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.442, 73.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.502, 74.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33, 74.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.319, 74.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.372, 74.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.447, 74.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.352, 74.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 74.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.633, 74.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82, 74.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.733, 74.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.639, 74.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.882, 74.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.593, 74.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.467, 74.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.631, 74.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.588, 74.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.571, 74.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.318, 74.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.523, 74.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.559, 74.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.832, 74.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47, 74.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65, 74.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.475, 74.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.496, 74.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.523, 74.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.532, 74.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.501, 74.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54, 74.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.676, 74.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.967, 73.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.617, 74.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55, 74.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.515, 74.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.513, 74.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.642, 74.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.545, 74.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 74.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.681, 74.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.555, 74.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.421, 74.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.522, 74.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.658, 74.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.581, 74.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.469, 74.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.414, 74.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.323, 74.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.216, 74.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.275, 74.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.387, 74.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.834, 74.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.155, 74.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61, 74.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54, 74.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.216, 74.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07, 74.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.371, 74.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.642, 74.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04, 74.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.565, 74.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.278, 74.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.373, 74.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.293, 74.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.371, 74.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54, 74.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.112, 74.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.308, 74.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.301, 74.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.277, 74.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.292, 74.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.409, 74.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.485, 74.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.417, 74.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.382, 74.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.422, 74.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.421, 74.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.456, 74.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46, 74.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.429, 74.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.349, 74.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.605, 74.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43, 74.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.144, 74.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.141, 74.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.021, 74.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.395, 74.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.319, 74.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.183, 74.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.087, 74.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.093, 74.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.964, 74.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.996, 74.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.102, 74.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9, 74.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.976, 74.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.025, 74.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.941, 74.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.914, 74.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.924, 74.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.201, 74.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.046, 74.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.849, 74.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.898, 74.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.769, 74.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.863, 74.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.995, 74.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.91, 74.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.61, 74.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.911, 74.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.895, 74.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.859, 74.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.555, 74.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.874, 74.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.162, 74.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.972, 74.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.512, 74.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.394, 73.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.589, 74.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.39, 74.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.571, 74.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.216, 74.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.165, 74.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.004, 74.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.995, 74.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.965, 74.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.951, 74.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.698, 74.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.446, 74.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.492, 74.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 74.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.488, 74.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.39, 74.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.45, 74.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.527, 74.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.456, 74.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.582, 74.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41, 74.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.388, 74.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 73.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.018, 73.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.966, 73.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.948, 73.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.698, 73.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.649, 73.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.673, 73.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.56, 73.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.484, 73.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.453, 73.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.431, 73.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.339, 73.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.157, 73.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.36, 73.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.074, 73.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.665, 73.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.877, 73.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.657, 73.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.658, 73.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.706, 73.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.58, 73.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.625, 73.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.568, 73.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.126, 73.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.589, 73.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.552, 73.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.522, 73.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.092, 73.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.149, 73.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.749, 73.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.716, 73.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.237, 73.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.414, 73.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.721, 73.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.408, 73.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.432, 73.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.492, 73.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.643, 74.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.62, 73.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.488, 73.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.389, 73.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.26, 73.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.408, 73.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.265, 73.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.2, 73.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.359, 73.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.199, 73.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.139, 73.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.103, 73.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.18, 73.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.215, 73.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.34, 73.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.324, 73.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.171, 73.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.267, 73.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.152, 73.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.282, 73.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.958, 73.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.676, 73.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.658, 74.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.422, 73.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.416, 73.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.306, 73.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.252, 73.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.306, 73.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.432, 73.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.955, 73.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.172, 73.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.279, 73.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.128, 73.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.243, 73.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.256, 73.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.189, 73.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.244, 73.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.205, 73.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.159, 73.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.169, 73.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.174, 73.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.076, 73.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.219, 73.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.102, 73.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.142, 73.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.12, 73.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.11, 73.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.161, 73.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.108, 73.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.079, 73.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.064, 73.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.953, 73.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.207, 73.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.121, 73.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.164, 73.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.134, 73.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.331, 73.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 73.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.76, 73.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.136, 73.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.142, 73.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.024, 73.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.016, 73.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.893, 73.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.909, 73.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.867, 73.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.783, 73.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.993, 73.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.816, 73.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.515, 73.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.802, 73.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.658, 74.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.663, 74.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.837, 74.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.573, 73.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.692, 73.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.75, 73.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.723, 73.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.646, 73.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.614, 73.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.573, 73.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.563, 74.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.507, 73.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.538, 73.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.438, 73.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.531, 73.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.427, 73.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.432, 73.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.52, 73.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.461, 73.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.543, 73.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.437, 73.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.466, 73.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.547, 73.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.36, 73.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.478, 73.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.489, 73.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.445, 73.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.427, 73.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.593, 73.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.733, 73.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.808, 73.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.899, 73.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.957, 73.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.887, 73.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.643, 73.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.711, 73.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.86, 73.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.78, 73.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.788, 73.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.872, 73.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.609, 73.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.754, 73.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.016, 73.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.853, 73.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.817, 73.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.771, 73.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.391, 73.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.826, 73.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.778, 73.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.937, 73.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.936, 73.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.0, 73.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.924, 73.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.962, 73.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.92, 73.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.941, 73.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.917, 73.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.925, 73.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.826, 73.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.836, 73.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.702, 73.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.064, 73.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.949, 73.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.989, 73.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.852, 73.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.781, 73.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.767, 73.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.687, 73.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.647, 73.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.559, 73.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.548, 73.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.895, 73.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.247, 73.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.398, 73.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.441, 73.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.416, 73.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.407, 73.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.467, 73.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.408, 73.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.346, 73.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.43, 73.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.489, 73.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.432, 73.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.436, 73.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.392, 73.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.369, 73.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.376, 73.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.333, 73.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.362, 73.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.348, 73.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.334, 73.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.332, 73.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.342, 73.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.351, 73.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.332, 73.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.348, 73.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.366, 73.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.378, 73.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.398, 73.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.435, 73.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.452, 73.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.47, 73.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.447, 73.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.704, 73.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.754, 73.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.735, 73.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.798, 73.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.84, 73.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.887, 73.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.989, 73.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.025, 73.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.876, 73.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.375, 73.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.401, 73.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.857, 73.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.916, 73.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.016, 73.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.888, 73.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.064, 73.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.032, 73.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.136, 73.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.088, 73.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.101, 73.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.492, 73.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.012, 73.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.364, 73.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.225, 73.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.16, 73.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.173, 73.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.244, 73.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.355, 72.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.465, 72.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.551, 72.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.684, 72.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.667, 72.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.567, 72.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.441, 72.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.313, 72.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.251, 72.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.249, 72.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.258, 72.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.194, 72.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.304, 72.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.045, 72.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.948, 72.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.244, 72.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22, 72.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.573, 72.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.912, 72.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.893, 72.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.27, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.112, 72.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.233, 72.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.536, 72.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.431, 72.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.505, 72.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.158, 72.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.5, 72.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.071, 72.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.406, 72.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.343, 72.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.37, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.838, 72.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.076, 72.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.434, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.473, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.135, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.355, 72.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.979, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.302, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.949, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.233, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.439, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.292, 72.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.526, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.421, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.396, 72.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.429, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.416, 72.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.411, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.413, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.338, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.309, 71.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.293, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.201, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.17, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.185, 72.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.048, 72.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.226, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.226, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.072, 72.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.167, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.218, 72.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.198, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.189, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.646, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.789, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.226, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.062, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.655, 72.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.013, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.432, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.213, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.16, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.111, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.222, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.182, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.099, 72.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.14, 72.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.5, 72.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.182, 72.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.193, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.381, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.19, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.527, 72.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.361, 72.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.596, 71.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.301, 72.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.286, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.505, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.513, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.213, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.316, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.419, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.33, 72.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.361, 72.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.289, 72.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.26, 72.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 72.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.118, 72.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.195, 72.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.196, 72.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.049, 72.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.163, 72.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.284, 72.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.201, 72.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.142, 72.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.314, 72.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.275, 72.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.311, 72.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.301, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.258, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 72.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.315, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.39, 72.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.344, 72.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.346, 72.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.484, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.561, 72.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.231, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.232, 72.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.577, 72.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.425, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.364, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.387, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.377, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.408, 72.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.407, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.257, 71.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.25, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.291, 71.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.915, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.189, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.197, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.225, 71.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.19, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.1, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.097, 71.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.083, 71.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.028, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.968, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.961, 71.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.685, 71.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.29, 71.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.054, 71.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.992, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.033, 71.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.827, 71.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.814, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.573, 71.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.676, 71.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.819, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.839, 71.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.831, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.921, 71.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.044, 71.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.044, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.894, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.351, 71.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.319, 71.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.905, 71.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.99, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.892, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.076, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.938, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.49, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.464, 71.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.958, 71.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.894, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.45, 72.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.99, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.851, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.137, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.084, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.349, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.992, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.995, 71.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 72.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.266, 72.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.412, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.845, 72.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.458, 72.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.448, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.476, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.441, 72.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.387, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.315, 72.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.184, 72.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29, 72.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.962, 72.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.512, 72.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.259, 72.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.152, 72.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.412, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.483, 72.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.781, 72.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.229, 72.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.323, 72.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.542, 72.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.274, 72.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.674, 72.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.794, 72.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.543, 72.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.608, 72.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.866, 73.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.505, 72.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.733, 72.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.653, 72.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.601, 72.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.461, 72.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.185, 72.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.361, 72.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.355, 72.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.221, 73.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.108, 73.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.069, 73.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.039, 73.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.857, 73.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.787, 73.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.715, 73.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.722, 73.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.7, 73.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.562, 73.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.717, 73.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.75, 73.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.409, 73.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.803, 73.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.152, 73.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.249, 73.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.327, 73.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.862, 73.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.196, 73.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.324, 73.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.276, 73.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.154, 73.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.201, 73.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.237, 72.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.259, 73.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.258, 73.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.624, 73.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.403, 72.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.724, 73.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.467, 72.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.292, 72.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.008, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.735, 73.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.672, 72.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.715, 72.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.665, 72.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.692, 72.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.628, 72.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.691, 72.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.598, 72.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.674, 72.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.728, 72.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.551, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.741, 72.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.994, 72.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.243, 72.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.78, 72.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.069, 72.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.982, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.933, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.87, 72.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.975, 72.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.758, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.682, 72.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.374, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.876, 72.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.024, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.983, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.917, 72.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.927, 72.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.365, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.123, 72.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.288, 72.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.433, 72.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.519, 72.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.403, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.831, 72.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.146, 72.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.365, 72.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.421, 72.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.986, 72.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.846, 72.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.889, 72.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.042, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.942, 72.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.784, 72.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.89, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.936, 72.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.911, 72.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.217, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.219, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.409, 72.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.415, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.435, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.444, 72.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.449, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.646, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.193, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.133, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.508, 75.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.383, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.408, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.812, 71.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.117, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.687, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.795, 71.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.147, 71.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.643, 71.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.656, 71.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.116, 71.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.639, 71.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.626, 71.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.278, 71.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.443, 71.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.52, 71.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.269, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.025, 71.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.332, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.115, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.24, 71.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.336, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.218, 71.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.213, 71.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.76, 71.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.452, 71.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.635, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.475, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.354, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.718, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.966, 71.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.29, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.861, 71.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.682, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.745, 71.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.762, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.753, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.602, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.862, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.333, 71.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.773, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.258, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.085, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.809, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.837, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.775, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.765, 71.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.497, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.576, 71.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.712, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.03, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.738, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.028, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.038, 71.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.134, 71.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.094, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.926, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.605, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.728, 71.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.753, 71.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.72, 71.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.716, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.691, 71.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.692, 71.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.262, 71.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.613, 71.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.667, 71.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.577, 71.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.476, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.308, 71.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.871, 71.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.819, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.787, 71.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.764, 71.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.818, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.769, 71.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.84, 71.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.712, 71.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.874, 71.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.602, 71.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.426, 71.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.336, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.126, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.887, 70.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.867, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.791, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.696, 71.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.765, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.759, 71.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.758, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.75, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.737, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.591, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.914, 71.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.634, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.163, 71.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.359, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.256, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.638, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.731, 71.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.049, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.838, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.53, 71.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.349, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.907, 71.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.87, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.837, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.764, 71.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.676, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.503, 71.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.355, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.309, 71.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.744, 71.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.428, 71.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.319, 71.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.313, 71.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.222, 71.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.937, 71.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.908, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.935, 71.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.752, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.757, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.765, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.678, 71.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.655, 71.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.608, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.396, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.669, 71.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.561, 71.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.887, 71.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.827, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.101, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.41, 71.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.469, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.53, 71.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.666, 71.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.737, 71.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.907, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.91, 71.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.984, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.77, 71.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.508, 71.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.47, 71.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.478, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.69, 71.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.502, 71.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.414, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.545, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.506, 71.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.632, 71.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.68, 71.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.68, 71.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.667, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.772, 71.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.904, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.707, 71.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.95, 71.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.016, 71.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.098, 71.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.046, 71.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.091, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.987, 71.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.043, 71.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.036, 71.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.794, 71.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.739, 71.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.897, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.513, 71.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.009, 71.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.457, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.675, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.548, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.344, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.3, 71.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.255, 71.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.171, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.324, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.967, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.909, 71.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.817, 71.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.664, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.637, 71.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.637, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.786, 71.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.357, 71.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.668, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.636, 71.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.668, 71.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.719, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.733, 71.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.986, 71.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.509, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.154, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.408, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.539, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44, 71.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.816, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.166, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.845, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.727, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.462, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.428, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.422, 71.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.408, 71.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.81, 71.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.767, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.746, 71.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.815, 71.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.805, 71.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.775, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.569, 71.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.834, 71.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.806, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.806, 71.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.807, 71.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.762, 71.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.813, 71.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.737, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.751, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.78, 71.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.911, 71.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.9, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.881, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.877, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.769, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.81, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.701, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.695, 71.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.07, 71.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.887, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.982, 71.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.164, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.367, 71.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.405, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.825, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.543, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.97, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.543, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.513, 71.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.594, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.477, 71.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.693, 71.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.614, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.752, 71.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.708, 71.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.789, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.858, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.872, 71.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.926, 71.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.913, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.952, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.95, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.947, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.154, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.316, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.377, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.433, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.394, 72.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.419, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.39, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.466, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 72.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.429, 72.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.338, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.284, 72.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.045, 72.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.038, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.602, 72.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.028, 72.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.069, 72.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.974, 72.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.622, 72.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.662, 72.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.706, 72.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.72, 72.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.676, 72.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.577, 72.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.512, 72.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.579, 74.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.978, 74.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.332, 73.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.311, 72.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.367, 72.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.876, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.098, 70.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.679, 70.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.761, 70.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.487, 70.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.526, 70.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.151, 70.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.336, 70.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.036, 70.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.567, 70.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.644, 70.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.948, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.134, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.441, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.112, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.107, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.14, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.08, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.202, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.151, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.147, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.212, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.329, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.419, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.284, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.37, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.776, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.567, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.706, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.502, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.491, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.539, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.717, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.548, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.577, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.407, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.918, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.638, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.911, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.936, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.699, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.584, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.569, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.567, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.296, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.349, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.323, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.233, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.338, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.314, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.419, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.454, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.543, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.975, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.622, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.875, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.598, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.537, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.954, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.864, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.024, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.598, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.948, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.978, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.833, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.884, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.832, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.702, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.722, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.711, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.215, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.032, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.038, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.134, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.149, 69.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.088, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.154, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.086, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.086, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.163, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.024, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.405, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.393, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.495, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.066, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.022, 69.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.791, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.678, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.741, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.575, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.398, 68.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.689, 67.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.646, 67.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.819, 67.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.335, 67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.49, 67.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.079, 67.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.598, 67.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.552, 67.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.561, 67.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.464, 67.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.461, 66.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.764, 67.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.877, 67.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.632, 67.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.777, 67.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.9, 67.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.631, 67.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.547, 67.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.624, 67.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.628, 67.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.787, 67.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.562, 67.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.567, 67.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.737, 67.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.724, 67.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.715, 67.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.086, 67.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.666, 67.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.709, 67.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.386, 67.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.605, 67.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.696, 67.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.817, 67.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.809, 67.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.522, 67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.542, 67.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.718, 67.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.392, 67.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.659, 67.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.577, 67.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.897, 67.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.73, 67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.693, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.945, 67.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.756, 67.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.905, 67.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.584, 67.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.601, 67.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.617, 67.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.748, 67.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.618, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.618, 67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.636, 67.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.633, 67.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.822, 67.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.581, 67.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.685, 67.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.851, 67.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.238, 66.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.867, 67.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.515, 67.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.43, 67.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.505, 67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.057, 67.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.482, 67.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.565, 67.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.6, 67.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.763, 67.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.634, 67.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.639, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.697, 67.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.754, 67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.642, 67.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.884, 67.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.531, 67.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.658, 67.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.775, 67.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.662, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.74, 67.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.733, 67.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.759, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.599, 67.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.911, 67.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.836, 67.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.622, 67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.665, 67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.575, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.684, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.485, 67.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.542, 66.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.559, 67.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.616, 67.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.476, 66.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.584, 67.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.672, 67.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.275, 66.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.518, 67.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.531, 67.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.431, 67.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.925, 66.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.968, 67.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.337, 67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.821, 67.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.759, 67.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.882, 67.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.284, 66.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.779, 67.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.75, 67.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.735, 67.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.745, 67.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.781, 67.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.799, 67.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.767, 67.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.794, 67.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.86, 67.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.942, 67.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.716, 67.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.769, 67.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.614, 67.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.065, 66.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.791, 67.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.879, 67.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.799, 67.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.71, 67.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.737, 67.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.802, 67.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.936, 67.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.864, 67.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.734, 67.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.798, 67.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.736, 67.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.828, 67.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.749, 67.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.591, 67.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.769, 67.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.748, 67.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.809, 67.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.814, 67.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.826, 67.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.807, 67.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.738, 67.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.735, 67.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.672, 67.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.193, 67.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.374, 67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.727, 67.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.881, 67.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.734, 67.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.151, 66.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.817, 67.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.624, 67.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.648, 67.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.552, 66.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.797, 67.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.181, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.817, 67.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.819, 67.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.735, 67.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.693, 67.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.409, 67.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.634, 67.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.657, 67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.493, 67.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.548, 67.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.8, 67.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.732, 67.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.473, 67.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.83, 67.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.73, 67.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.586, 67.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.708, 67.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.677, 67.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.759, 67.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.656, 67.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.799, 67.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.703, 67.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.799, 67.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.958, 67.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.65, 67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.754, 67.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.583, 67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.775, 67.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.814, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.325, 67.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.523, 67.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.678, 67.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.712, 67.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.625, 67.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.737, 67.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.901, 67.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.84, 67.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.992, 67.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.636, 67.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.794, 67.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.781, 67.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.653, 67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.675, 67.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.731, 67.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.641, 67.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.748, 67.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.822, 67.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.593, 67.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.695, 67.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.858, 67.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.966, 67.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.058, 67.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.786, 67.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.796, 67.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.075, 67.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.831, 67.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.597, 67.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.874, 67.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.841, 67.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.847, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.789, 67.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.121, 67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.866, 67.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.89, 67.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.481, 67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.738, 67.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.168, 67.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.574, 67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.802, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.764, 67.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.723, 67.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.75, 67.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.822, 67.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.696, 67.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.905, 66.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.602, 67.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.374, 67.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.436, 67.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.747, 67.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.687, 67.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.665, 67.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.708, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.52, 67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.704, 67.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.842, 67.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.672, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.817, 67.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.665, 67.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.867, 67.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.828, 67.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.793, 67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.166, 67.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.875, 67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.68, 67.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.645, 67.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.71, 67.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.92, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.614, 67.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.65, 67.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.697, 67.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.045, 67.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.869, 67.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.83, 67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.987, 66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.9, 67.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.67, 67.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.709, 67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.632, 67.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.713, 67.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.709, 67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.669, 67.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.501, 67.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.552, 67.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.416, 67.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.66, 67.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.7, 67.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.79, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.16, 67.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.614, 67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.966, 67.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.705, 67.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.612, 67.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.693, 67.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.598, 67.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.538, 67.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.641, 67.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.075, 67.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.743, 67.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.804, 67.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.758, 67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.066, 67.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.632, 67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.223, 67.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.58, 67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.971, 67.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.723, 67.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.615, 67.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.773, 67.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.464, 67.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.198, 67.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.624, 67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.577, 67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.89, 67.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.622, 67.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.664, 67.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.592, 67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.578, 67.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.641, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.633, 67.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.818, 67.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.337, 67.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.535, 67.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.579, 67.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.705, 67.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.685, 67.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.654, 67.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.767, 67.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.739, 67.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.688, 67.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.785, 66.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.731, 67.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.57, 67.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.593, 67.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.139, 67.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.915, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.8, 67.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.776, 67.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.417, 67.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.782, 67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.722, 67.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.694, 67.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.605, 67.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.589, 67.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.93, 67.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.673, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.91, 67.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.843, 67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.852, 67.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.908, 67.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.77, 67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.661, 67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.824, 67.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.758, 67.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.877, 67.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.432, 67.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.724, 67.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.749, 67.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.818, 67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.744, 67.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.708, 67.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.726, 67.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.557, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.169, 67.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.679, 67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.683, 67.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.42, 67.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.328, 67.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.993, 67.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.674, 67.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.294, 67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.612, 67.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.793, 67.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.783, 67.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.553, 67.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.604, 67.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.655, 67.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.861, 67.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.704, 67.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.784, 67.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.19, 67.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.837, 67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.0, 67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.198, 67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.662, 67.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.782, 67.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.853, 67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.73, 67.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.794, 67.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.151, 67.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.856, 67.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.814, 67.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.756, 67.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.801, 67.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.748, 67.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.602, 67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.647, 67.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.762, 67.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.578, 67.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.67, 67.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.569, 67.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.696, 67.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.677, 67.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.754, 67.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.53, 67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.717, 67.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.666, 67.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.687, 67.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.779, 67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.8, 67.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.741, 67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.491, 66.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.014, 67.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.714, 67.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.66, 67.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.485, 67.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.673, 67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.793, 67.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.692, 67.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.6, 67.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.644, 67.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.554, 67.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.679, 67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.501, 67.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.596, 67.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.69, 67.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.608, 67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.049, 67.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.504, 67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.539, 67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.002, 67.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.612, 67.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.326, 67.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.798, 67.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.738, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.81, 67.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.791, 67.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.733, 67.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.705, 67.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.893, 67.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.913, 67.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.866, 67.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.861, 67.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.823, 67.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.839, 67.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.812, 67.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.774, 67.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.76, 67.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.587, 67.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.611, 67.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.737, 66.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.923, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.662, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.802, 65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.142, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.19, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.239, 65.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.082, 65.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.113, 65.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.182, 65.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.417, 65.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.381, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.496, 65.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.115, 65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.156, 65.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.156, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.105, 65.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.1, 65.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.2, 65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.361, 65.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.242, 65.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.218, 65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.296, 65.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.162, 65.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.189, 65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.228, 65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.26, 65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.326, 65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.238, 65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.21, 65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.176, 65.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.476, 65.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.266, 65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.674, 65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.518, 65.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.264, 65.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.227, 65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.198, 64.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.518, 64.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.518, 64.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.397, 64.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.737, 64.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.381, 64.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.431, 64.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.476, 64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.49, 64.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.32, 64.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.228, 64.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.367, 64.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.331, 64.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.255, 64.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.364, 64.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.376, 64.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.051, 64.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.308, 64.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.879, 64.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.219, 64.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.055, 64.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.099, 64.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.16, 64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.095, 64.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.117, 64.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.086, 64.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.078, 64.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.127, 64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.12, 64.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.989, 64.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.851, 64.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.096, 64.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.472, 64.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.07, 64.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.034, 64.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.945, 64.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.925, 64.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.381, 63.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.558, 64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.572, 64.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.707, 63.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.572, 64.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.587, 63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.577, 64.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.569, 64.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.542, 63.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.512, 63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.476, 63.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.412, 63.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.103, 63.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.329, 63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.338, 63.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.572, 63.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.629, 63.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.813, 63.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.84, 63.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.764, 63.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.845, 63.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.04, 63.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.132, 63.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.181, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.435, 63.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.75, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.772, 63.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.649, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.605, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.639, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.1, 63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.65, 63.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.715, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.803, 63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.722, 63.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.811, 63.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.685, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.631, 63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.668, 63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.711, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.676, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.419, 63.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.678, 63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.806, 63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.815, 63.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.869, 63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.958, 63.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.832, 63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.813, 63.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 63.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.821, 63.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.813, 63.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.806, 63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.884, 63.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.91, 63.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.82, 63.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.806, 63.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.635, 63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.599, 63.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.789, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.917, 63.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.848, 63.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.229, 63.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.881, 63.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.997, 63.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.86, 63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.831, 63.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.69, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.652, 62.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.68, 62.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.606, 62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.61, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.546, 62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.59, 62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.575, 62.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.466, 62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.562, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.597, 62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.543, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.372, 62.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.471, 62.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.548, 62.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.659, 62.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.771, 62.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.803, 62.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.846, 62.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.983, 61.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.957, 61.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.226, 61.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.564, 61.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.565, 61.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.703, 61.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.352, 61.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.437, 61.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.737, 61.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.639, 61.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.668, 61.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.873, 61.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.973, 61.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.018, 61.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.218, 61.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.232, 61.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.301, 61.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.378, 61.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.24, 61.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.409, 62.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.49, 62.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.581, 62.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.481, 62.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.473, 62.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.404, 62.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.705, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.5, 62.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.607, 62.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.455, 62.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.932, 62.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.872, 62.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.854, 62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.897, 62.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.714, 62.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.739, 62.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.974, 62.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.15, 62.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.166, 62.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.574, 62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.022, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.111, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.142, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.205, 62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.27, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.271, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.366, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.411, 62.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.396, 62.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.409, 62.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.367, 62.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.365, 62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.694, 61.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.637, 61.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.633, 62.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.55, 62.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.604, 62.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.368, 62.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.587, 62.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.628, 62.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.038, 62.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.357, 62.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.427, 62.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.372, 62.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.435, 62.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.536, 62.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.505, 62.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.605, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.53, 62.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.525, 62.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.43, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.262, 62.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.441, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.374, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.886, 62.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.463, 62.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.512, 62.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.703, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.633, 62.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.556, 62.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.219, 62.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.091, 62.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.918, 62.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.942, 62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.864, 62.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.892, 62.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.28, 62.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.898, 62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.934, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.874, 62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.902, 62.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.808, 62.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.733, 62.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.898, 62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.518, 62.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.776, 62.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.926, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.669, 62.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.728, 62.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.881, 62.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.904, 62.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.924, 62.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.866, 62.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.819, 62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.729, 62.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.824, 62.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.659, 62.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.71, 62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.726, 62.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.806, 62.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.887, 62.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.891, 62.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.806, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.835, 62.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.755, 62.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.861, 62.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.649, 62.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.344, 62.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.439, 62.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.435, 62.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.478, 62.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.457, 62.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.45, 62.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.559, 62.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.403, 62.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.622, 61.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.788, 61.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.593, 61.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.532, 61.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.543, 61.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.439, 61.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.553, 61.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.665, 61.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.519, 61.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.319, 61.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.729, 61.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.47, 61.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.432, 61.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.356, 61.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.376, 61.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.92, 61.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.379, 61.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.412, 61.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.45, 61.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.468, 61.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.502, 61.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.399, 61.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.413, 61.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.554, 61.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.403, 61.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.57, 61.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.575, 61.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.557, 61.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.566, 61.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.522, 61.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.281, 61.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.148, 61.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.147, 61.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.13, 61.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.139, 61.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.068, 61.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.039, 61.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.941, 61.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.919, 61.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.074, 61.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.594, 61.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.634, 61.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.911, 61.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.967, 61.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.893, 61.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.886, 61.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.575, 61.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.654, 61.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.72, 61.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.731, 61.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.921, 61.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.454, 62.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.451, 62.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.44, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.394, 62.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.377, 62.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.441, 62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.447, 62.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.468, 62.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.465, 62.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.427, 62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.425, 62.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.513, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.521, 62.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.822, 62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.701, 62.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.646, 62.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.363, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.603, 62.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.683, 62.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.678, 62.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.734, 62.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.774, 62.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.649, 62.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.724, 62.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.794, 62.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.838, 62.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.862, 62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.25, 62.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.395, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.363, 62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.294, 62.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.27, 62.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.871, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.274, 62.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.425, 62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.624, 61.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.612, 61.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.575, 61.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.538, 61.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.471, 61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.954, 62.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.277, 61.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.211, 61.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.275, 62.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.228, 62.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.126, 62.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.238, 62.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.362, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.151, 62.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.758, 61.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.948, 62.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.676, 62.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.839, 62.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.799, 62.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.764, 61.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.731, 62.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.337, 61.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.239, 61.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.205, 61.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.206, 61.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.267, 61.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.312, 61.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.313, 61.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.342, 61.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.143, 61.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.016, 61.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.027, 61.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.072, 61.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.908, 61.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.985, 61.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.293, 61.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.258, 61.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.332, 61.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.238, 61.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.254, 61.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.216, 61.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.379, 61.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.296, 61.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.372, 61.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.305, 61.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.428, 61.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.357, 61.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.251, 61.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.219, 61.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.239, 61.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.23, 61.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.259, 61.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.256, 61.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.303, 61.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.229, 61.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.121, 61.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.096, 61.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.821, 61.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.882, 61.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.994, 61.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.886, 61.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.762, 61.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.795, 61.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.872, 61.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.807, 61.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.777, 61.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.872, 61.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.949, 61.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.244, 61.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.138, 61.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.202, 61.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.272, 61.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.316, 61.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.141, 61.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.094, 61.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.981, 61.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.045, 61.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.152, 61.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.097, 61.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.894, 61.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.231, 61.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.326, 61.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.331, 61.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.302, 61.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.258, 61.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.48, 61.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.486, 61.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.701, 61.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.413, 61.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.084, 61.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.415, 62.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.375, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.445, 62.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.352, 62.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.421, 62.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.416, 62.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.579, 61.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.533, 62.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.393, 62.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.39, 62.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.493, 62.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.512, 62.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.994, 62.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.19, 62.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.938, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.177, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.177, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.23, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.449, 63.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.427, 62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.025, 63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.581, 63.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.6, 63.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.661, 63.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.642, 63.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.509, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.591, 63.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.674, 63.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.263, 63.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.281, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.366, 63.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.145, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.936, 62.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.093, 63.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.132, 63.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.088, 63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.094, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.103, 63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.045, 63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.396, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.299, 63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.368, 63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.26, 62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.388, 63.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.208, 63.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.656, 63.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.713, 63.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.799, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.883, 63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.841, 63.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.769, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.718, 63.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.645, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.837, 63.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.181, 62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.77, 63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.731, 63.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.747, 63.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.747, 63.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.186, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.189, 63.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.175, 63.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.172, 63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.232, 63.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.284, 63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.146, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.441, 63.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.379, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.292, 63.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.307, 63.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.409, 63.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.328, 63.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.225, 63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.997, 63.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.053, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.101, 63.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.849, 62.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.489, 63.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.001, 63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.932, 63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.994, 63.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.739, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.717, 63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.893, 63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.725, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.7, 63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.643, 63.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.527, 63.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.597, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.47, 62.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.321, 63.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.858, 63.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.808, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.79, 63.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.244, 63.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.212, 63.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.207, 63.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.218, 63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.215, 63.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.396, 63.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.564, 63.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.361, 63.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.393, 62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.478, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.528, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.684, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.648, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.853, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.543, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.746, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.724, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.613, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.749, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.687, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.855, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.773, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.702, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.758, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.574, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.677, 62.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.972, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.992, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.996, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.969, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.097, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.146, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.033, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.185, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.068, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.155, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.135, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.242, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.04, 62.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.373, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.351, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.24, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.356, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.383, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.361, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.343, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.277, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.417, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.003, 62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.384, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.362, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.399, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.391, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.441, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.204, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.139, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.473, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.202, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.168, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.453, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.609, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.509, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.493, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.386, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.465, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.497, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.456, 62.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.462, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.434, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.309, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.341, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.335, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.321, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.631, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.385, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.359, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.38, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.226, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.015, 62.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.291, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.444, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.405, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.493, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.394, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.257, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.358, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.461, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.376, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.314, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.277, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.195, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.418, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.387, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.461, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.197, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.356, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.302, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.255, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.405, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.419, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.633, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.323, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.336, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.334, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.377, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.381, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.206, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.329, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.426, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.477, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.359, 62.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.554, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.662, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.693, 62.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.683, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.735, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.95, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.681, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.685, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -59.502, 59.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.326, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.768, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.327, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.264, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.689, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.614, 62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.458, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.359, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.151, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.334, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.307, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.264, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.316, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.395, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.372, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.268, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.303, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.258, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.481, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.391, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.574, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.393, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.272, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.217, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.465, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.81, 59.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.377, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.561, 62.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.386, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.428, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.424, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.125, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.347, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.715, 62.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.263, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.337, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.152, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.999, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.37, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.352, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.22, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.218, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.353, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.521, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.111, 62.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.172, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.407, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.152, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.482, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.547, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.526, 62.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.427, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.362, 62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.377, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.737, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.329, 61.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.301, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.158, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.199, 62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.168, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.435, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.505, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.511, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.487, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.259, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.606, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.746, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.373, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.393, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.346, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.416, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.453, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.315, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.737, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.294, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.285, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.302, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.377, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.368, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.282, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.374, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.341, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.131, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.394, 62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.275, 62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.182, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.773, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.775, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.754, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.399, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.487, 62.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.474, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.474, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.621, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.595, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.658, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.449, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.423, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.401, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.022, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.466, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.058, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.025, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.881, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.917, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.891, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.884, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.9, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.928, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.683, 62.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.76, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.946, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.966, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.986, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.971, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.936, 62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.999, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.14, 62.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.982, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.95, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.933, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.83, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.882, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.786, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.586, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.062, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.823, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.972, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.772, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.915, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.954, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.009, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.318, 62.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.908, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.287, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.907, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.748, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.07, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.218, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.204, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.038, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.141, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.091, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.231, 62.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.955, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.95, 62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.735, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.074, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.92, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.902, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.8, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.876, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.823, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.801, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.486, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.54, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.828, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.867, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.859, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.811, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.827, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.758, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.85, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.086, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.753, 62.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.805, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.866, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.906, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.776, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.773, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.804, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.815, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.771, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.769, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.746, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.76, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.088, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.931, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.829, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.772, 62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.62, 62.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.796, 62.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.751, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.745, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.434, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.401, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.045, 62.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.419, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.411, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.321, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.278, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.342, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.756, 62.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.317, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.619, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.284, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.331, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.245, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.05, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.973, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.119, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.227, 62.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.319, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.187, 62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.817, 62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.352, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.373, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.37, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.402, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.151, 62.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.388, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.292, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.511, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.511, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.352, 62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.505, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.45, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.335, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.292, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.236, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.146, 62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.453, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.437, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.457, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.322, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.401, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.347, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.396, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.403, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.378, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.951, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.383, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.523, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.387, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.201, 63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.385, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.392, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.399, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.389, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.286, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.249, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.555, 62.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.409, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.699, 62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.324, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.319, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.343, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.33, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.413, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.533, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.363, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.431, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.388, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.345, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.275, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.313, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.613, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.395, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.417, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.297, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.352, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.348, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.306, 62.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.372, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.381, 62.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.433, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.343, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.347, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.37, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.326, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.41, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.353, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.36, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.381, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.514, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.246, 62.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.329, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.391, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.326, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.475, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.358, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.329, 62.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.399, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.539, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.59, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.463, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.204, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.366, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.375, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.685, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.362, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.086, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.346, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.264, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.235, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.337, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.288, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.409, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.259, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.343, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.34, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.307, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.563, 62.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.146, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.902, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.141, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.695, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.903, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.027, 62.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.574, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.246, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.236, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.33, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.199, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.205, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.366, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.295, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.936, 62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.455, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.322, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.444, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.408, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.569, 62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.388, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.656, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.42, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.467, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.133, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.448, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.389, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.38, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.325, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.485, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.36, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.317, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.472, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.332, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.253, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.418, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.373, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.301, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.41, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.366, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.329, 62.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.392, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.305, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 69.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.993, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.816, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.892, 69.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.132, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.286, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.181, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.933, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.044, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.847, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.215, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.235, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.943, 69.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.493, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.631, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.505, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.612, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.418, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.424, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.217, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.422, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.916, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.964, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.039, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.09, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.103, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.178, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.141, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.238, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.258, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.422, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.043, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.458, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.471, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.667, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.555, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.532, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.624, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.807, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.767, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.771, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.845, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.915, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.989, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.329, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.161, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.31, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.513, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.387, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.752, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.831, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.893, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.98, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.463, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.5, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.489, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.646, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.668, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.766, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.795, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.19, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.248, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.317, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.363, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.476, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.548, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.694, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.856, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.027, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.008, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.242, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.707, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.746, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.771, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.608, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65, 70.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.884, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.133, 70.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.484, 70.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.393, 71.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 71.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 71.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 71.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.706, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 71.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.91, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.672, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.454, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 71.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.461, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.812, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.962, 72.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 71.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 71.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.339, 72.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.427, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 72.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.751, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 72.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 72.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.826, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 72.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.597, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.498, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.694, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.371, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.274, 72.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.524, 72.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.455, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 72.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.39, 72.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.394, 72.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.555, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.451, 72.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.524, 72.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.379, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.455, 72.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.429, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.467, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 72.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.485, 72.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.245, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.348, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.604, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.498, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.479, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 72.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.48, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.973, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 72.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.381, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.693, 72.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.522, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.847, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.755, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.664, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.684, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.587, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.276, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.514, 72.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 72.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 72.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.984, 72.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 72.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 72.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 72.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.348, 72.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 72.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 72.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 72.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 72.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.336, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 72.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.243, 72.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 72.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.033, 73.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.238, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.632, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 72.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 72.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.687, 72.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.606, 72.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.677, 72.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 72.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1, 72.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.149, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.393, 72.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 72.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.242, 71.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.235, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.515, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.646, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.247, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.386, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.433, 72.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.429, 72.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 72.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.543, 72.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.625, 72.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.375, 72.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.566, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.714, 72.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 72.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 72.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.078, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.095, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 72.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 72.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 72.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.13, 72.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.247, 72.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.203, 72.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.424, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.756, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 72.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.995, 72.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.136, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 72.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.232, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 72.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.341, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.296, 72.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.392, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.448, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.152, 71.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 72.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.485, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.314, 71.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 71.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 71.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.528, 71.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.502, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.412, 71.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.372, 71.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.349, 71.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 71.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 71.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 71.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.479, 71.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 71.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 71.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 71.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 71.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.768, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.274, 71.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.219, 71.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 71.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.249, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 71.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 71.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.246, 71.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 71.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 71.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 71.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.722, 71.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.168, 71.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.369, 71.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 71.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.442, 71.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 71.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 71.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.218, 71.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.219, 71.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 71.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 71.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.211, 71.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 71.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 71.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.199, 71.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.118, 71.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.154, 71.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.154, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.726, 71.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 71.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 71.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.422, 71.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11, 71.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.214, 71.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 71.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.486, 71.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.435, 71.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.562, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.458, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.456, 71.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.455, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 70.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.659, 70.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 70.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.449, 70.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.685, 70.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.82, 70.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.65, 70.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.608, 70.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.436, 70.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -143.701, 60.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.037, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 70.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.592, 70.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.428, 69.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.442, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.433, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.38, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 70.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.327, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.515, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.189, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.367, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.611, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.294, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.334, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.344, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.326, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.344, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.362, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.683, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.451, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.333, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.327, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.379, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.314, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.456, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.475, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.422, 70.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.482, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.583, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.533, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.462, 70.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.474, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.373, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.388, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.422, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.343, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.421, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.731, 70.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.08, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.784, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.818, 70.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 70.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.429, 70.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 70.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.348, 70.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.856, 70.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 70.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.627, 70.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.788, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 70.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 70.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 70.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 70.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.482, 70.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 70.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.428, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.715, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.863, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.793, 70.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.591, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.968, 70.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.918, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.674, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.485, 70.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.27, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.381, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.295, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.378, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.42, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.393, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.282, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.439, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.44, 70.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.188, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.522, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.507, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.479, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.393, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.426, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.44, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.493, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.435, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.454, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.466, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.513, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.282, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.219, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.356, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.37, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.383, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.124, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.078, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 70.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.094, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.113, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 70.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.174, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.132, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 70.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.319, 70.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.389, 70.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.445, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.433, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.362, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.293, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.264, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 70.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.822, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.821, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.804, 67.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.488, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.358, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.148, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.297, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.023, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.037, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.925, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.921, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.949, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.925, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.916, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.099, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.278, 70.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.637, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.037, 70.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.845, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.718, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 70.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.871, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.059, 70.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.103, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.638, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.184, 70.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.935, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.837, 70.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.375, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.229, 70.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.175, 70.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.452, 70.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.434, 70.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.578, 70.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.516, 70.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.246, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.622, 70.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.787, 70.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.397, 70.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.363, 70.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.415, 70.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.369, 70.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.098, 70.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.297, 70.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.531, 70.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.355, 70.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.392, 70.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 70.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.747, 70.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.436, 70.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.215, 70.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.39, 70.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.857, 70.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.673, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.603, 70.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.667, 62.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.598, 62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.366, 62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.436, 62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.517, 62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.154, 62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.233, 62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.267, 62.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.384, 62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.245, 62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.228, 62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.458, 62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.399, 62.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.339, 62.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.267, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.412, 62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.262, 62.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.416, 62.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.339, 62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.374, 62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.265, 62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.218, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.427, 62.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.587, 62.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.653, 62.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.746, 62.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.713, 62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.792, 62.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.771, 62.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.421, 62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.915, 62.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.403, 63.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.241, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.022, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.2, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.197, 63.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.143, 63.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.144, 62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.765, 62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.631, 62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.506, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.421, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.525, 62.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.614, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.561, 62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.759, 62.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.621, 62.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.592, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.231, 63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.475, 63.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.22, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.504, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.512, 63.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.439, 63.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.469, 63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.39, 63.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.795, 63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.262, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.158, 63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.832, 62.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.725, 62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.089, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.973, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.92, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.781, 62.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.853, 62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.552, 62.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.854, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.845, 62.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.049, 62.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.784, 62.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.949, 62.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.651, 62.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.685, 62.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.729, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.746, 62.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.781, 62.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.676, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.82, 62.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.992, 62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.632, 63.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.943, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.973, 63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.057, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.036, 63.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.065, 63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.843, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.766, 62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.845, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.788, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.089, 63.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.236, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.225, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.984, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.143, 63.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.979, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.873, 62.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.801, 62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.741, 62.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.404, 63.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.889, 62.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.401, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.024, 62.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.06, 63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.069, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.095, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.927, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.824, 62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.515, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.526, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.539, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.546, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.711, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.541, 62.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.496, 62.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.675, 62.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.766, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.759, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.649, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.84, 62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.691, 62.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.79, 62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.929, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.678, 62.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.837, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.526, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.674, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.938, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.407, 62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.129, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.926, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.797, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.902, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.782, 62.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.776, 63.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.787, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.915, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.855, 62.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.903, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.806, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.749, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.995, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.996, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.976, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.563, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.687, 62.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.613, 62.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.651, 62.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.504, 62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.59, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.663, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.688, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.927, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.01, 62.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.142, 62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.009, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.961, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.094, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.122, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.117, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.122, 62.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.056, 62.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.728, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.362, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.255, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.489, 63.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.53, 63.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.748, 63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.933, 63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.816, 63.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.047, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.467, 62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.476, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.549, 63.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.577, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.731, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.782, 63.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.833, 63.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.792, 63.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.913, 63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.78, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.771, 63.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.775, 63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.657, 63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.059, 63.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.086, 63.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.072, 63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.083, 63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.107, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.042, 63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.007, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.729, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.905, 63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.03, 63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.376, 63.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.313, 63.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.798, 63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.28, 63.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.185, 63.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.017, 63.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.989, 63.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.918, 63.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.772, 63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.816, 63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.743, 63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.647, 63.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.683, 63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.464, 63.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.643, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.46, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.559, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.518, 63.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.433, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.662, 62.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.533, 62.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.057, 62.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.779, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.845, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.874, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.195, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.667, 63.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.648, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.622, 63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.71, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.483, 63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.734, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.661, 63.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.685, 63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.658, 63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.207, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.147, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.595, 63.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.855, 63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.907, 63.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.962, 63.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.93, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.025, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.994, 63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.944, 63.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.86, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.683, 63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.635, 63.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.633, 63.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.53, 63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.369, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.693, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.768, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.662, 63.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.025, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.026, 63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.109, 63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.639, 61.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.195, 63.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.29, 63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.303, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.189, 63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.337, 63.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.341, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.705, 63.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.82, 62.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.764, 62.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.139, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.616, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.258, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.51, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.552, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.545, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.506, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.754, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.64, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.4, 62.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.825, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.709, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.799, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.596, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.617, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.64, 62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.604, 62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.53, 62.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.708, 62.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.512, 62.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.439, 62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.443, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.381, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.388, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.655, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.426, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.741, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.797, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.702, 62.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.98, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.786, 62.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.732, 62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.789, 62.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.588, 62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.745, 62.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.559, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.548, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.531, 62.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.58, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.379, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.44, 62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.558, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.534, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.313, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.313, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.358, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.393, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.453, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.322, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.254, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.389, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.651, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.405, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.428, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.334, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.401, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.808, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.433, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.417, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.347, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.297, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.239, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.312, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.434, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.466, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.348, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.591, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.288, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.264, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.256, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.214, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.2, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.3, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.343, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.423, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.406, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.339, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.334, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.581, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.439, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.056, 62.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.911, 62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.008, 62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.443, 62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.413, 62.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.606, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.414, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.431, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.142, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.776, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.803, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.811, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.943, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.935, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.879, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.785, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.558, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.993, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.744, 63.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.883, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.58, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.741, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.67, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.657, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.544, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.73, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.711, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.302, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.591, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.542, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.529, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.64, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.722, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.581, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.569, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.588, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.573, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.652, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.614, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.442, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.525, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.612, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.497, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.394, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.354, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.838, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.358, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.741, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.68, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.223, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.327, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.531, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.939, 61.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.33, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.343, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.348, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.298, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.393, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.37, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.451, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.198, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.161, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.389, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.252, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.318, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.187, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.377, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.356, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.32, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.463, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.37, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.358, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.312, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.329, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.454, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.408, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.209, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.075, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.643, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.067, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.115, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.471, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.372, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.388, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.284, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.329, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.309, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.532, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.374, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.469, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.146, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.374, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.5, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.403, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.435, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.386, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.511, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.312, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.758, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.638, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.334, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.45, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.374, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.541, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.364, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.427, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.78, 62.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.414, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.578, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.272, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.379, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.375, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.269, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.166, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.035, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.998, 62.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.466, 62.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.857, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.914, 62.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.537, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.76, 62.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.808, 62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.812, 62.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.798, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.804, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.991, 62.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.554, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.239, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.342, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.745, 62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.796, 62.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.769, 62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.299, 62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.844, 62.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.577, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.845, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.857, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.858, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.831, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.896, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.851, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.915, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.94, 62.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.005, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.884, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.874, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.889, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.776, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.915, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.96, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.829, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.729, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.831, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.822, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.862, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.881, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.894, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.958, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.783, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.76, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.677, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.569, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.733, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.979, 61.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.909, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.972, 62.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.125, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.431, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.187, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.198, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.257, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.222, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.218, 62.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.214, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.2, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.122, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.086, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.061, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.196, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.193, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.687, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.393, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.757, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.411, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.547, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.501, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.499, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.718, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.682, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.446, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.348, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.327, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.27, 62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.086, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.96, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.979, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.871, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.85, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.927, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.81, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.778, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.942, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.118, 62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.466, 62.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.874, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.806, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.867, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.869, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.742, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.166, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.928, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.783, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.465, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.933, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.877, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.864, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.837, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.089, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.93, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.847, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.836, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.88, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.89, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.207, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.945, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.907, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.964, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.799, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.016, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.844, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.844, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.826, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.821, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.031, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.867, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.943, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.488, 62.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.839, 62.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.072, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.516, 62.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.033, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.876, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.903, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.895, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.936, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.815, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.725, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.394, 61.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.895, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.863, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.552, 62.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.792, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.115, 62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.628, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.909, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.948, 62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.908, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.334, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.905, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.787, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.442, 62.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.238, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.141, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.854, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.851, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.866, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.88, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.929, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.04, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.941, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.028, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.296, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.1, 62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.861, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.816, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.12, 61.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.335, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.88, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.968, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.864, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.769, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.532, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.769, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.731, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.773, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.88, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.667, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.823, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.604, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.929, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.6, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.865, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.92, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.012, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.873, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.829, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.724, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.985, 62.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.212, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.565, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.601, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.208, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.051, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.711, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.322, 62.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.448, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.65, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.509, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.428, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.468, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.496, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.079, 62.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.499, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.004, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.427, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.505, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.557, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.54, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.405, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.461, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.242, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.706, 62.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.334, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.641, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.448, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.153, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.242, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.117, 62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.12, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.634, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.74, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.93, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.271, 62.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.941, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.874, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.923, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.9, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.899, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.592, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.198, 62.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.143, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.154, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.115, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.211, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.134, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.249, 62.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.324, 62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.757, 62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.433, 62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.327, 62.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.239, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.436, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.546, 63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.662, 63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.628, 63.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.903, 63.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.637, 63.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.796, 63.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.958, 63.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.951, 63.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.408, 63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.964, 63.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.75, 63.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.874, 63.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.111, 63.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.868, 63.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.944, 63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.896, 63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.838, 63.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.909, 63.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.658, 63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.1, 63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.322, 64.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.979, 64.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.998, 64.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.109, 64.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.153, 64.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.311, 64.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.286, 64.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.508, 64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.647, 64.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.026, 64.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.208, 64.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.327, 64.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.508, 64.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.438, 64.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.28, 64.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 64.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.264, 64.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.171, 64.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.52, 64.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.227, 64.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.845, 64.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.043, 64.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.224, 64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.221, 64.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.518, 64.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.381, 64.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.269, 64.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.09, 64.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.023, 64.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.293, 64.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.321, 64.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.267, 64.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.305, 64.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.43, 64.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.144, 64.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.456, 64.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.34, 64.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.228, 64.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.102, 64.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.362, 64.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.219, 63.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 64.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.165, 64.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.195, 64.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.196, 64.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.162, 64.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.093, 64.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.262, 64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.36, 64.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 64.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.148, 64.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.245, 64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.428, 64.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 64.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.358, 64.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.38, 64.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.923, 64.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.33, 64.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.167, 64.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.556, 64.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.449, 64.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.0, 64.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 64.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.534, 64.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 64.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.924, 64.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.407, 64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.257, 64.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 64.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.456, 64.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.296, 64.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.444, 64.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.633, 64.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.634, 64.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.687, 64.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.619, 64.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.775, 64.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.599, 64.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.418, 64.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 64.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.688, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.719, 64.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.675, 64.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 64.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.642, 64.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.728, 64.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.981, 64.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.643, 64.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.249, 64.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.963, 64.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 64.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.361, 64.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.489, 64.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.501, 64.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.492, 64.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.453, 64.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.873, 65.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.918, 64.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.933, 64.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.886, 64.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.602, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.715, 64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.571, 64.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.747, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.614, 64.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.845, 64.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.757, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.575, 64.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.744, 64.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.734, 64.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.79, 64.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.79, 64.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.785, 64.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.812, 64.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.832, 64.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.848, 64.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.819, 64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.132, 64.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.09, 65.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.059, 65.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.95, 65.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.989, 65.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.046, 65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.542, 65.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.265, 65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.444, 65.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.282, 65.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.345, 65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.423, 65.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.118, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.6, 66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.186, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.726, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.434, 66.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.679, 66.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.999, 66.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.405, 66.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.121, 66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.224, 66.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.272, 66.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.936, 66.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.851, 66.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.802, 66.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.737, 66.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.047, 67.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 66.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.322, 67.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.605, 66.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.521, 66.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.146, 66.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.44, 66.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.801, 67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 67.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.042, 67.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 67.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 67.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.962, 67.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.919, 67.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 67.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.838, 67.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.776, 67.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.457, 67.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.498, 67.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.646, 71.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.868, 67.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.423, 67.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 67.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.746, 67.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.706, 67.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.669, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.773, 67.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 67.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.624, 67.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.77, 68.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 68.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.723, 68.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.791, 68.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 68.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.811, 68.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 68.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.827, 68.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.794, 68.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 68.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.694, 68.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 68.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.648, 68.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 68.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.326, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 68.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.874, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.295, 69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.267, 69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.814, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.113, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.299, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.52, 69.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.223, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.368, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 69.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.34, 69.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.645, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.916, 69.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.342, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.122, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.392, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.619, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.427, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.539, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.723, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.588, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.557, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.873, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.382, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.387, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.433, 69.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.507, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.531, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.485, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.469, 69.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.599, 69.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.424, 69.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.619, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.048, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.046, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.008, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.217, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.441, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.367, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.375, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.351, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.189, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.034, 69.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.014, 69.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.911, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.958, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.892, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.872, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.983, 69.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.962, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.219, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.893, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.011, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 69.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.131, 69.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.269, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.285, 69.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.404, 69.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.209, 68.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 68.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 68.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 68.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.292, 68.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.243, 68.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.239, 68.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 68.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 68.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 68.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 68.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.169, 68.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.713, 68.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.151, 68.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.895, 68.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.837, 68.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.856, 68.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 68.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.735, 68.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 68.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.409, 68.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.319, 68.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.358, 68.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.35, 68.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.413, 69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.182, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.308, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 69.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.969, 69.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.812, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.731, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.744, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.894, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.945, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.415, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.403, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.492, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.384, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.323, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.224, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.277, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.072, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.426, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.467, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.798, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.31, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.083, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.496, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.427, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.441, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.387, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.456, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.379, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.213, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.237, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.262, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.975, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.369, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.405, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.008, 69.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.995, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.811, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.776, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.769, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.879, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.97, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.93, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.072, 69.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.053, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.245, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.352, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.309, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.748, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 69.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.178, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.178, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.275, 69.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.406, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.913, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.879, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.049, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.22, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.926, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.138, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.927, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.187, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.028, 68.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.047, 69.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.998, 69.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.657, 68.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.144, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.105, 68.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.604, 69.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.928, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.971, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.393, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.735, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.512, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.474, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.679, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.744, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.598, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.635, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.732, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.067, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.056, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.278, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.345, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.801, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.888, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.11, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.427, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.134, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.149, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.394, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.431, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.373, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.616, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.618, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.685, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.624, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.865, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.114, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.252, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.529, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.509, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.097, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.306, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.297, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.308, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.459, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.837, 70.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22, 70.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.35, 70.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41, 70.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.378, 70.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.589, 70.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.909, 70.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 70.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.458, 71.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.555, 71.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.73, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.864, 71.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.329, 71.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.283, 71.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.646, 71.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.134, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.852, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 71.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.777, 71.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.519, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.687, 71.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.734, 71.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 71.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.748, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.427, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 71.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.551, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 71.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.398, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.973, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 71.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.402, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.888, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 71.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 71.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.864, 71.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.089, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.117, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 71.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 71.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.756, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 71.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 71.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.099, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 71.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 71.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.648, 71.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 71.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.552, 71.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.606, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.912, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.723, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.709, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.691, 71.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.773, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.087, 72.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.948, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.178, 72.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.865, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.721, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.314, 72.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.579, 72.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.792, 72.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.883, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.872, 72.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.021, 72.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.06, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.817, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.959, 72.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.628, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.736, 71.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.455, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.702, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.641, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.698, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.784, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.201, 72.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.67, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.631, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.703, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.012, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.81, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.771, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.346, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.361, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.385, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.664, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.383, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.729, 71.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.567, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.619, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.669, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.117, 72.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.516, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.552, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.582, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.638, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.728, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.811, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.693, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.688, 71.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.458, 71.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.269, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.661, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.597, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.724, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.527, 71.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.705, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.554, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.246, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.507, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.488, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.559, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.437, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.432, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.477, 71.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.825, 71.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.69, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.469, 71.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.254, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.298, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.112, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.284, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.032, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.358, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.435, 71.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.176, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.149, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.121, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.224, 71.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.523, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.074, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.167, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.108, 71.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.845, 71.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.377, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.024, 71.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.004, 71.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.061, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.134, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.046, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.561, 71.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.939, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.031, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.253, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.245, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.696, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.476, 71.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.42, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.115, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.045, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.683, 71.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.114, 71.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.176, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.295, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.491, 71.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.036, 71.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.952, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.481, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.937, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.861, 71.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.318, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.88, 71.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.094, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.187, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.469, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.336, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.109, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.092, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.916, 71.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.928, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.041, 71.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.966, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.771, 71.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.817, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 71.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.676, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.256, 71.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.182, 71.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.258, 71.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.304, 71.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.852, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.13, 71.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.079, 71.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.058, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.049, 71.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.311, 71.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.191, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.101, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.918, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.283, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.987, 71.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.307, 71.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.604, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.165, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.079, 71.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.716, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.4, 71.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.746, 71.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.926, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.01, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.873, 71.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.981, 71.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.103, 71.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.032, 71.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.936, 71.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.901, 71.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.841, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.773, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.816, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.839, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.514, 70.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.929, 70.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.549, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.454, 70.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.553, 70.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52, 70.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.491, 70.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 70.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 70.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.215, 70.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 70.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 70.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.722, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.504, 70.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 70.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 70.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.937, 70.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.886, 70.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 70.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 70.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 70.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 70.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.692, 70.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.734, 70.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 70.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.994, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 70.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.603, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 70.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 70.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 70.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.693, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.758, 70.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.686, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.386, 69.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.489, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.866, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.333, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.923, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.316, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.245, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.465, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.397, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.519, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.389, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.357, 69.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.331, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.38, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.377, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.397, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.423, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.341, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.367, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.427, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.188, 69.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.402, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.381, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.557, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.408, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.523, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.49, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.442, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.479, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.441, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.294, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.357, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.264, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.286, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.436, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.487, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.492, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.459, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.592, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.533, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.501, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.454, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.421, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.428, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.467, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.499, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.575, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.497, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.369, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.437, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.245, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.291, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.355, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.593, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.467, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.695, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.668, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.426, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.412, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.378, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.389, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.423, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.343, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.737, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.208, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.28, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.427, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.351, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.588, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 69.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.849, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.132, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.46, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.433, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.492, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.547, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.505, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.487, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.326, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.273, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.349, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.273, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.341, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.336, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.327, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.431, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.423, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.467, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.437, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.446, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.471, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.408, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.258, 69.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.443, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.858, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.359, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.529, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.427, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.285, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.453, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.426, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.433, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.522, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.497, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.333, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.319, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.38, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.364, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.216, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.693, 69.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.218, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.214, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.097, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.173, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.09, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.141, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.066, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.596, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.084, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.975, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.138, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.259, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.273, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.357, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.433, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.383, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.378, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.377, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.601, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.056, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.644, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.573, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.523, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.361, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.458, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.485, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.109, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.562, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.412, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.41, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.314, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.442, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.334, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.001, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.29, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.142, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.271, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36, 70.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.084, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.344, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.356, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.38, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.402, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.682, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.35, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.412, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.077, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.357, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.359, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.422, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.496, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.496, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.519, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.698, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.372, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.448, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.817, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.336, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.135, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.282, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.369, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.326, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.274, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.549, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.003, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.021, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.45, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.216, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.113, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.056, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.036, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.089, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.162, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.21, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.159, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.172, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.133, 69.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.136, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.458, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.103, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.371, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.406, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.649, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.555, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.475, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.526, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.496, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.539, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.57, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.412, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.551, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.369, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.392, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.191, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.044, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.857, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77, 69.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.792, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.862, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.79, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.693, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.685, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.338, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.511, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.558, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.524, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.759, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.587, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.647, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.767, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.711, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.558, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.657, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.505, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.683, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.93, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.762, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.083, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.094, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.307, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.209, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.273, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.237, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.397, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.154, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.191, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.09, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.977, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.195, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.257, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.113, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.136, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.222, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.274, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.294, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.404, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.474, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.391, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.424, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.377, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.381, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.823, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.611, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.601, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.675, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.611, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.583, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.503, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.662, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.369, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.316, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.349, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.311, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.323, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.393, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.248, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.826, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.788, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.872, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.788, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.815, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.903, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.901, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.731, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.764, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.787, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.838, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.841, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.811, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.688, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.56, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.581, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.759, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.466, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 69.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.702, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.706, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.326, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.133, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.168, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.75, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.521, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.808, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.577, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.02, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.574, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 69.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.719, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.529, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.464, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.386, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.408, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.441, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.536, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.543, 69.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.787, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.422, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.319, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.235, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.138, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 69.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.015, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 69.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.964, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.135, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 70.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.095, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.066, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.113, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.184, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.214, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.314, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.155, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.326, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.349, 70.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.379, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.307, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 70.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.319, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.314, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.283, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.342, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 70.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.578, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.501, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.428, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.274, 70.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.024, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 70.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.823, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.726, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.672, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.902, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.931, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.295, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.307, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.21, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.07, 68.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.735, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.694, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.394, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.588, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.825, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.872, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.859, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.999, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.889, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.866, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.822, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.703, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.796, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.687, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 69.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.776, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.774, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.277, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.621, 69.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.818, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.864, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.716, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.762, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.888, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 69.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.885, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.91, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.912, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.887, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.812, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.821, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.054, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.119, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.141, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.172, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.218, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.273, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.596, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.372, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.37, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.485, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.535, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.54, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.445, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.66, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.585, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.677, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.666, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.661, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.671, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.636, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.594, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.597, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.009, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.468, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.446, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.474, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.444, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.361, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.285, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.282, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.222, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.408, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.246, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.071, 69.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.48, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.011, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.191, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.225, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.809, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.633, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.295, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.295, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.267, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.308, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.249, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.148, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.158, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.039, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.728, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.716, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.335, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.713, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.787, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.315, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.846, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.559, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.588, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.247, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.559, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.434, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.756, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.748, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.779, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.728, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.873, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.85, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.856, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.866, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.779, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.856, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 69.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.004, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.973, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.949, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.844, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.856, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.034, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.084, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.081, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.636, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.91, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.849, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.505, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.825, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.857, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.944, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.755, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.678, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.754, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.696, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 69.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 69.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.816, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.856, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.91, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.864, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.782, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.862, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.85, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.057, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.808, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.862, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.589, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.536, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.685, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.811, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.838, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.015, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.002, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.855, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.842, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.83, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.718, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.747, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.701, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.625, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.725, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.701, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.855, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.444, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.844, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.184, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.776, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.769, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.788, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.808, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.847, 69.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.968, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.948, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.872, 69.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.869, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.968, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.768, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.743, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.766, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.077, 69.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.379, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.855, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.736, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.885, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.118, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.142, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.124, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.172, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.959, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.429, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.314, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.336, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.141, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.437, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.515, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.378, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.186, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.196, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.137, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.301, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.851, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.363, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.429, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.075, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.422, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.392, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.457, 70.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.624, 70.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.272, 70.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.108, 70.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.015, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.321, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.307, 70.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.653, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.367, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.005, 70.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.59, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.701, 70.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.907, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.471, 70.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.554, 70.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.509, 70.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.266, 70.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.091, 70.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.299, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.177, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.329, 70.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.294, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.282, 68.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.148, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.189, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.128, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.058, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.642, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.064, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.169, 70.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.138, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.135, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.13, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.221, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.673, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.244, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.117, 69.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.164, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.269, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.192, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.891, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.291, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.364, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.266, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.362, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.398, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.355, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.468, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 70.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.472, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.374, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.449, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.84, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.422, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.374, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.675, 70.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.443, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.866, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.572, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.126, 70.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.343, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.314, 70.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.318, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.58, 70.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.566, 70.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.667, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.672, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 70.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.476, 70.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.363, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.615, 70.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.904, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.458, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.352, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.655, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.561, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.602, 70.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.065, 70.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.711, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.699, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.41, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.411, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.394, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.409, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.442, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.379, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.399, 70.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.363, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.289, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.197, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.141, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.281, 70.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.534, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.412, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.467, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.394, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.625, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.286, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.13, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.981, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.186, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.991, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.798, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.199, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 70.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.246, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.193, 70.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.003, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.018, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.115, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.054, 70.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.103, 70.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.081, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.138, 70.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.06, 70.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.931, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.159, 70.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.015, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.742, 70.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.678, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.064, 70.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.855, 70.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.49, 70.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.496, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.138, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.115, 70.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.047, 70.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.176, 70.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.04, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.141, 70.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.109, 70.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.911, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.037, 70.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.981, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.995, 70.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.015, 70.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.986, 70.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.149, 70.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.961, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.755, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.169, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.013, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.578, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.953, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.889, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.928, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.869, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.872, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.296, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.817, 69.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.615, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.975, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.813, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.794, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.664, 70.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.22, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.954, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.499, 70.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.974, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.958, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.003, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.424, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.838, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.756, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.217, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.792, 70.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.874, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.599, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.907, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.347, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.13, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.572, 70.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 70.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.356, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.925, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.235, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.042, 70.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.097, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.063, 69.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.09, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.013, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.23, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.23, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.208, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.388, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.063, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.075, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.488, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.57, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.175, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.399, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.949, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.349, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.065, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.173, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.049, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.096, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.678, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.051, 69.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.959, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.941, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.943, 69.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.747, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.738, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.699, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.254, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.793, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.438, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.637, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.726, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.021, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.722, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.819, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.914, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.527, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.979, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.736, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.158, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.575, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.033, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.965, 69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.196, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.167, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.425, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.671, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.812, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.089, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.129, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.058, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.144, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.052, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.261, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.247, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.305, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.263, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.486, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.403, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.389, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.546, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.387, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.41, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.558, 70.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.471, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.595, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.408, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.46, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.439, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.431, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.088, 70.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.229, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.334, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.248, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.088, 70.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.266, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.217, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.394, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.277, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.603, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.287, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.383, 70.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.027, 70.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.13, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.321, 70.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.295, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.334, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.598, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.096, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.124, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.192, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.199, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.303, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.232, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.12, 70.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.107, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.097, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.075, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 70.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.654, 70.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.865, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.127, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.174, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.993, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.993, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.331, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.955, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.506, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.052, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.491, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.076, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.097, 70.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.119, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.056, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.925, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.915, 70.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.643, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.088, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.257, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.186, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.449, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.743, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.525, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.552, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.552, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.385, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.444, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.357, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.376, 70.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.226, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.189, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.216, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.413, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.025, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.004, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.973, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.924, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.987, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.795, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.961, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.056, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.508, 70.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.027, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.057, 70.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08, 70.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.076, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.136, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.221, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.144, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.187, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.309, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.302, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.316, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.514, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.047, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.437, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.263, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.139, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.635, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.24, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.474, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.473, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.276, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.402, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.431, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.149, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.288, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.726, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.023, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.972, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.174, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.175, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.249, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.204, 70.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.018, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.027, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.281, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.319, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.34, 70.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.872, 70.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.582, 70.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.111, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.785, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.019, 70.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.989, 70.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.716, 70.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84, 70.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.831, 70.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.766, 70.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.48, 70.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.455, 70.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.734, 70.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.35, 70.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.994, 70.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06, 70.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.863, 70.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82, 70.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.612, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.987, 70.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.363, 70.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.449, 70.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.86, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.269, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.125, 70.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.541, 70.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.518, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.793, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.323, 70.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27, 70.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.296, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.306, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.138, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.832, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.906, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.874, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.774, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.851, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.911, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.896, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.906, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.744, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.155, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.372, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.023, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.995, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.101, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.888, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.655, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.36, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.464, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.494, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.235, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.982, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.66, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.415, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.462, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.342, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.832, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.004, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.835, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.655, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.654, 69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.645, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.602, 68.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.504, 68.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.655, 68.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.603, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 68.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.105, 68.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.466, 68.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.546, 68.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.787, 66.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.752, 66.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.898, 66.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.899, 66.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.937, 66.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 65.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.712, 65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.692, 65.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 65.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.029, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.191, 65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.306, 65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.939, 65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.867, 66.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.044, 65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.05, 65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.109, 65.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.165, 65.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.36, 65.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.434, 65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.718, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.517, 66.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.584, 66.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.637, 66.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.641, 66.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.76, 66.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.944, 66.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.785, 66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.761, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.187, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.126, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.205, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.13, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.935, 65.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.036, 65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.941, 65.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.813, 65.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.024, 65.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.968, 65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.633, 66.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.773, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.888, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.675, 65.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.444, 65.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.268, 65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.319, 65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.322, 65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.169, 65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.153, 65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.116, 65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.848, 65.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.933, 65.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 65.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 65.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.361, 65.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 65.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.167, 65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.157, 65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.167, 65.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.137, 65.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.176, 65.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.936, 64.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.47, 64.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.421, 64.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.211, 63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.049, 63.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.797, 63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.005, 63.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.015, 63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.987, 63.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.946, 63.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.867, 63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.917, 63.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.909, 63.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.962, 63.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.167, 63.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.129, 63.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.979, 63.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.448, 63.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.961, 63.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.907, 63.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.012, 63.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.342, 63.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.995, 63.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.975, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.121, 63.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.949, 63.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.026, 63.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.608, 63.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.458, 63.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.866, 63.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.496, 63.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.332, 63.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.441, 63.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.142, 63.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.163, 63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.164, 63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.14, 63.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.161, 63.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.117, 63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.093, 63.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.112, 63.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.051, 62.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.205, 62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.559, 63.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.219, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.361, 62.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.077, 62.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.737, 62.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.537, 62.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.525, 62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.573, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.59, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.507, 62.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.323, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.152, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.192, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.252, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.146, 62.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.209, 62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.164, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.26, 62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.158, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.401, 62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.488, 62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.408, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.39, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.38, 62.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.318, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.294, 62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.292, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.293, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.233, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.119, 62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.311, 62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.189, 63.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.397, 63.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.678, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.584, 63.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.565, 63.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.464, 63.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.607, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.569, 63.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.674, 63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.032, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.424, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.346, 62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.278, 62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.377, 62.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.29, 62.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.33, 62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.061, 63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.102, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.28, 63.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.363, 63.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.363, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.843, 63.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.892, 63.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.933, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.889, 63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.951, 63.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.987, 63.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.892, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.308, 63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.252, 63.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.222, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.335, 63.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.282, 62.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.086, 63.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.703, 62.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.293, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.315, 62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.233, 62.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.265, 62.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.279, 62.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.097, 62.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.017, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.074, 62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.272, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.26, 62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.074, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.06, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.051, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.21, 62.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.261, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.289, 62.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.33, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.305, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.079, 62.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.033, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.477, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.511, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.268, 62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.554, 62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.533, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.532, 62.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.099, 62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.694, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.529, 62.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.516, 62.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.628, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.721, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.781, 62.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.894, 62.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.909, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.146, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.084, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.085, 62.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.393, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.271, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.278, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.33, 62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.334, 62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.296, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.172, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.255, 62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.223, 62.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.574, 62.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.467, 62.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.681, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.931, 62.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.956, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.967, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.77, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.857, 62.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.778, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.742, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.225, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.497, 62.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.893, 62.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.528, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.901, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.83, 62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.732, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.703, 62.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.88, 62.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.649, 62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.723, 62.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.972, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.745, 62.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.802, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.925, 62.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.833, 62.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.841, 62.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.789, 63.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.848, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.802, 62.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.532, 62.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.779, 62.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.894, 62.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.993, 62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.861, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.452, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.839, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.632, 62.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.023, 63.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.825, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.912, 62.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.948, 62.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.866, 62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.944, 62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.714, 62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.677, 62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.44, 62.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.895, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.694, 62.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.446, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.392, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.227, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.294, 62.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.775, 63.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.178, 63.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.349, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.311, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.269, 62.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.391, 62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.122, 62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.182, 62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.294, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.725, 62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.27, 62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.243, 62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.23, 62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.03, 62.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.618, 62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.131, 62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.662, 62.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.147, 62.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.207, 62.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.314, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.638, 62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.632, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.572, 62.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.546, 62.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.272, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.478, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.156, 62.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.413, 62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.568, 62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.622, 62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.539, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.586, 63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.606, 63.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.156, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.05, 62.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.001, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.036, 62.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.743, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.061, 62.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.015, 62.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.015, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.167, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.092, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.0, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.966, 62.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.092, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.218, 62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.097, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.231, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.564, 62.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.535, 62.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.565, 62.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.546, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.543, 62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.717, 62.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.473, 62.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.47, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.475, 62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.437, 62.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.888, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.841, 62.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.958, 62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.814, 62.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.721, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.645, 62.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.733, 62.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.735, 62.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.679, 62.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.677, 62.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.627, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.585, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.437, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.489, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.381, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.302, 62.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.193, 62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.292, 62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.112, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.373, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.59, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.585, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.478, 62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.415, 62.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.455, 62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.35, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.454, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.458, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.29, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.489, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.272, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.315, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.352, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.221, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.364, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.412, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.637, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.597, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.014, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.121, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.185, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.317, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.518, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.428, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.416, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.62, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.604, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.76, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.865, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.948, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.005, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.051, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.283, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.432, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.834, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.811, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.108, 69.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.149, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.268, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.333, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.458, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.513, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.494, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.52, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.617, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.543, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.722, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.866, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.194, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.913, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.909, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.056, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.972, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.525, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.318, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.445, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.435, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.231, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.64, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.612, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.881, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.818, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.93, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.995, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.977, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.66, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.779, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.103, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.665, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.803, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.651, 70.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.822, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.003, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.056, 70.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.136, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.193, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.196, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.246, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.858, 70.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.368, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.518, 70.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.542, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.683, 70.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.942, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.208, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.792, 70.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.38, 70.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.219, 70.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.188, 70.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.289, 70.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.577, 70.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.718, 70.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.361, 70.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 70.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.958, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.011, 70.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.061, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.017, 70.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.679, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.638, 71.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.65, 71.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.329, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.555, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.505, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.396, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.239, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.543, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 72.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.486, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.485, 72.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.575, 72.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 72.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.852, 72.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 72.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 72.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.808, 72.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.13, 72.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 72.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63, 72.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72, 72.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 72.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.734, 72.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 72.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 72.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.672, 72.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 72.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 72.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.677, 72.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 72.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 72.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.719, 72.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 72.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.448, 72.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.28, 72.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 72.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 72.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.634, 72.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 72.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.348, 73.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.583, 72.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.716, 72.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.266, 72.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.199, 72.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 72.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 72.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 72.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 73.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 73.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 72.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.253, 72.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.231, 72.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 72.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 72.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 72.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 72.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 72.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 72.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.982, 72.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 73.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.883, 73.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.27, 73.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.973, 73.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 73.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.326, 72.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05, 73.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 73.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.624, 73.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.956, 73.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 73.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.891, 73.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 73.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.016, 73.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.071, 73.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 73.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.775, 73.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.688, 73.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 73.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.178, 73.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.596, 73.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 73.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.538, 73.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.469, 73.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.997, 73.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.834, 73.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44, 73.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 73.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.274, 74.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.081, 73.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.901, 73.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 73.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.681, 73.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 73.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.783, 73.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.757, 73.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.793, 73.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.844, 73.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11, 73.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.038, 73.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.224, 73.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.005, 73.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.136, 73.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 73.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.405, 72.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 73.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.635, 72.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 73.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.68, 73.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.894, 73.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.928, 73.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.628, 73.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.577, 72.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.988, 73.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.325, 73.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.652, 73.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.051, 73.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.172, 73.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.624, 73.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.304, 73.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.38, 73.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.052, 73.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.431, 73.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 73.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.426, 73.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.272, 73.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 72.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 73.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.645, 73.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.005, 73.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 73.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.941, 73.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.56, 72.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.196, 73.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.501, 73.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.305, 73.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 73.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.042, 73.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.025, 73.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.017, 73.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.133, 73.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.286, 73.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.245, 73.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 73.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.446, 73.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.384, 73.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.314, 73.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.305, 73.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.684, 73.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21, 73.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.651, 73.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.334, 73.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.105, 73.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.333, 73.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.737, 73.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.319, 73.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.274, 72.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.142, 73.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.136, 73.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.689, 73.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11, 73.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.328, 72.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.061, 73.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.847, 73.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.272, 73.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 73.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.188, 73.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 73.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.216, 73.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.219, 73.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.368, 72.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.388, 73.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.341, 72.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.545, 73.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.549, 73.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.531, 72.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 73.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.798, 72.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.141, 72.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 72.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.229, 72.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 72.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 72.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 72.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 72.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.975, 72.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 72.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 72.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.437, 72.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 72.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.68, 72.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 72.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.332, 72.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 72.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 72.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 72.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.495, 72.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 72.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 72.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.526, 72.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 72.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.432, 72.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 72.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 72.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.684, 72.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 72.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.521, 72.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 72.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 72.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.347, 72.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.754, 72.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.52, 72.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.543, 72.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 72.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37, 72.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.652, 72.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 72.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.348, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.396, 72.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.457, 72.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.455, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.395, 72.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.497, 72.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.579, 72.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 72.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.704, 72.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 72.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.195, 72.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.023, 72.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 72.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 72.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 72.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.838, 72.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.857, 72.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 72.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 72.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.372, 72.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 72.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 72.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 72.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.362, 72.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.474, 72.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.463, 72.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.167, 72.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.176, 72.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.309, 72.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.497, 72.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 72.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.566, 72.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.626, 72.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.265, 72.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.335, 72.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3, 72.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 72.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 72.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 72.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 72.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 72.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 72.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.995, 72.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 72.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 72.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.448, 72.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 72.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94, 72.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 72.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.985, 72.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 72.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.132, 72.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 72.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 72.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 72.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.287, 72.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 72.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.267, 72.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.694, 72.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.304, 72.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.239, 72.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 72.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 72.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.694, 73.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 72.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.367, 72.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 72.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.119, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27, 72.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.165, 72.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.274, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 72.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 72.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.161, 72.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 72.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 72.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 72.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 72.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 72.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.482, 72.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 72.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 72.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 72.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.031, 72.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.397, 72.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 72.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 72.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.879, 72.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 72.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.897, 72.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.855, 72.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.013, 72.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 72.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.284, 72.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 72.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 72.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 72.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.999, 72.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 72.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.093, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.065, 72.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.857, 72.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 72.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 72.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.508, 72.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 72.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.206, 72.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.847, 72.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 72.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.146, 72.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 72.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.142, 72.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.969, 72.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 72.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 72.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 72.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 72.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.437, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 72.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.343, 72.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 72.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 72.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 72.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 72.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81, 72.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 72.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.849, 72.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.48, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.036, 72.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.502, 72.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89, 72.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 72.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.117, 72.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 72.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.985, 72.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.747, 73.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.595, 72.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.852, 72.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 72.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 72.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65, 72.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 72.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.231, 72.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.399, 72.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.269, 72.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.304, 72.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 72.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 72.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 72.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 72.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.91, 72.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.754, 72.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 72.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.019, 72.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 72.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.775, 72.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.136, 72.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.118, 72.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 72.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.322, 72.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 72.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.139, 72.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.242, 72.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 72.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 72.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72, 72.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 72.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.051, 72.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 72.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.868, 72.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 72.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.932, 72.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.174, 72.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.734, 72.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 72.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.956, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.977, 72.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 72.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 72.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.765, 72.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.142, 72.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.301, 72.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.621, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.771, 72.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.729, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.352, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.081, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.969, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.167, 72.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.895, 72.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.165, 72.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.052, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.995, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.987, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.219, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.006, 72.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.814, 72.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.199, 72.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.38, 72.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.599, 72.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.588, 72.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.265, 72.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.565, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.034, 72.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.555, 71.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.812, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.136, 72.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.742, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.345, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.62, 72.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.004, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.109, 72.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.019, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.737, 72.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.911, 72.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.366, 73.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.049, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.85, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.949, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.652, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.987, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.999, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.25, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.983, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.966, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.096, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.122, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.026, 72.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.972, 72.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.017, 72.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.091, 72.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.007, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.052, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.789, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.927, 72.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.363, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.407, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.132, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.458, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.991, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.008, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.961, 72.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.987, 72.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.944, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.836, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.043, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.945, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.019, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.148, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.118, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.86, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.325, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.377, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.369, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.177, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.289, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.267, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.745, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.126, 71.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.15, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.929, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.915, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.005, 71.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.836, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.384, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.67, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.108, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.76, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.114, 71.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.752, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.475, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.857, 71.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.342, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.235, 71.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.128, 71.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.643, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.807, 71.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.572, 71.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.531, 71.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 71.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.378, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.743, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.379, 71.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 71.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.139, 70.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.301, 71.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.173, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.37, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.621, 70.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.884, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.484, 70.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.215, 70.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.135, 70.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 70.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96, 70.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.034, 70.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 70.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.189, 70.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.952, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 70.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 70.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.684, 70.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.546, 70.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 70.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 70.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.675, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.867, 70.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.915, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.627, 70.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.518, 70.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.887, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.835, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.812, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.773, 71.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.672, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.808, 71.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.737, 71.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.9, 71.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.74, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.671, 71.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.478, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.731, 71.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.8, 71.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.64, 71.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.721, 71.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.698, 71.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.224, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.147, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.981, 71.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.838, 71.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.388, 71.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.826, 70.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 70.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 71.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.841, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 71.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 70.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 71.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.864, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.189, 70.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.201, 70.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.407, 70.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 70.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.259, 70.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.179, 70.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.242, 70.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.716, 70.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 70.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.147, 70.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.164, 70.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.167, 70.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.908, 70.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.568, 70.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.596, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.892, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.915, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.552, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.705, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.535, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.419, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.207, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.453, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.678, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.813, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.658, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.601, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.676, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.856, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.446, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.31, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.18, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.47, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.227, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.211, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.953, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.066, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.96, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.111, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.115, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.139, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.957, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.648, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.078, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.318, 74.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.667, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.126, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.695, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.29, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.108, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.23, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.757, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.675, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.678, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.649, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.525, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.385, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.328, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.925, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.597, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.47, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.437, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.503, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.401, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.023, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.284, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.363, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.496, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.783, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.533, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.419, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.41, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.387, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.963, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.106, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.837, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.501, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.636, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.283, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.099, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.072, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.938, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.502, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.17, 69.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.103, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.037, 69.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.06, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.046, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.219, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.911, 69.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.924, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.861, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.518, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.082, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.98, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.88, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.886, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.96, 69.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.901, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.883, 69.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.817, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.835, 69.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.184, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.826, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.756, 69.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.828, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.055, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.837, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.884, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.94, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.879, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.922, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.885, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.813, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.22, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.901, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.868, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.829, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.888, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.909, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.262, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.949, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.674, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.839, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.873, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.765, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.868, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.846, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.757, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.903, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.836, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.305, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.912, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.856, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.897, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.926, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.479, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.485, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.123, 69.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.537, 69.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.506, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.967, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.891, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.893, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.856, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.932, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.988, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.923, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.862, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.069, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.95, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.097, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.891, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.813, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.633, 69.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.723, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.828, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.904, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.189, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.352, 69.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 69.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.336, 69.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.353, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.202, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.01, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.999, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.035, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.664, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.938, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.054, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.012, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.042, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.959, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.018, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.001, 69.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.926, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.919, 69.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.917, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.937, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.969, 69.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.975, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.964, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.141, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.912, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.84, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.108, 69.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.986, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.048, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.879, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.85, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.833, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.868, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.887, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.904, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.916, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.917, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.957, 69.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.963, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.87, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.771, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.654, 69.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.734, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.664, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.741, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.577, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.758, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.568, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.567, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.702, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.401, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.613, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.077, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.619, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.603, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.658, 69.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.673, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.618, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.645, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.503, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.604, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.606, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.46, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.608, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.602, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.54, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.193, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.346, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.656, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.559, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.371, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.531, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.145, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.448, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.292, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.555, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.687, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.466, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.471, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.965, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.369, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.35, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.316, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.386, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.439, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.39, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.405, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.477, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.565, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.47, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.484, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.521, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.503, 69.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.549, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.528, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.682, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.558, 69.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.527, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.532, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.457, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.51, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.544, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.53, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.603, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.498, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.435, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.439, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.301, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.358, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.323, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.346, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.374, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.353, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.347, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.385, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.341, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.301, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.227, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.308, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.363, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.18, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.225, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.196, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.302, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.374, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.358, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.477, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.447, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.385, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.34, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.221, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.251, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.266, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.252, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.27, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.328, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.273, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.418, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.536, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.721, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.497, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.409, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.525, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.688, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.667, 69.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.036, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.718, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.736, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.726, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.891, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.835, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.791, 69.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.786, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.034, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.821, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.791, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.767, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.842, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.818, 69.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.794, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.808, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.814, 69.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.791, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.902, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.814, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.754, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.801, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.791, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.972, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.978, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.012, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.011, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.011, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.812, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.198, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.772, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.722, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.879, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.764, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.565, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.434, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.333, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.508, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.408, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.495, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.263, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.136, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.169, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.201, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.123, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.158, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.25, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.269, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.211, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.25, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.255, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.252, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.279, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.245, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.335, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.334, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.396, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.359, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.296, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.326, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.429, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.377, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.32, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.075, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.198, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.619, 69.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.434, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.986, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.056, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.079, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.46, 69.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.473, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.848, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.625, 69.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.654, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.481, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.587, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.51, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.596, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.004, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.732, 69.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.557, 69.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.497, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.496, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.428, 69.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.328, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.324, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.365, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.364, 69.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.483, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.494, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.51, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.275, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.483, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.796, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.534, 69.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.57, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.279, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.475, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.463, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.521, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.924, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.532, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.47, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.394, 69.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.183, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.462, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.557, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.497, 69.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.804, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.627, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.411, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.614, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.383, 69.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.674, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.391, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.569, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.44, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.597, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.791, 69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.831, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.731, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.768, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.716, 69.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.716, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.663, 69.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.95, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.782, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.734, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.501, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 69.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.66, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.469, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.628, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.431, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.386, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.379, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.459, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.556, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.387, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.427, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.493, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.308, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.471, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.236, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.355, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.367, 69.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.395, 69.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.26, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.63, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.863, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.996, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.001, 69.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.011, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.135, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.076, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.311, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.459, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.334, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.753, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.977, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.295, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.346, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.458, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.475, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.442, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.521, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.489, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.457, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.702, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.706, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.916, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.911, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.329, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.812, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.958, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.953, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.657, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.887, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.894, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.311, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.448, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.688, 69.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.801, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.987, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.021, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.028, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.457, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.874, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.881, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.239, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.485, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.379, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.581, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.812, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.895, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.997, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.032, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.084, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.257, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.409, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.235, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.489, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.861, 70.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.807, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.026, 70.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.159, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.424, 70.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.174, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.923, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.298, 70.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.032, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.913, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.797, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.009, 70.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.32, 70.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.289, 70.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.336, 70.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.395, 70.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.416, 70.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.406, 70.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.365, 70.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.362, 70.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.594, 70.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.529, 70.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.455, 70.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.155, 70.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.675, 70.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.013, 70.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.071, 70.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.122, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.076, 70.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89, 70.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.884, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78, 70.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.926, 70.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.784, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.852, 70.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.697, 70.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.953, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.879, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.247, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.931, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.596, 70.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.692, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.139, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.083, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.121, 70.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.361, 70.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88, 70.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.336, 70.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.29, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49, 70.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.375, 70.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.292, 70.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.419, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.333, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94, 70.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.777, 70.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.346, 70.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.509, 70.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.397, 70.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.295, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.202, 70.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.408, 70.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.504, 70.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.343, 70.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.483, 70.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4, 70.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.51, 70.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.677, 70.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.832, 70.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.882, 70.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.943, 70.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.131, 70.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.754, 70.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89, 70.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 70.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 70.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.853, 70.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.933, 70.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.277, 70.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.871, 70.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.888, 70.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.924, 70.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.238, 70.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.711, 70.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.709, 70.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.606, 70.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.59, 70.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 70.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.011, 70.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.631, 70.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.706, 70.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.633, 70.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.215, 70.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.846, 70.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6, 70.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.784, 70.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.709, 70.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.507, 70.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.603, 70.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.628, 70.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.628, 70.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.559, 70.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.774, 70.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.003, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47, 70.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.489, 70.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.507, 70.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.161, 70.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.29, 70.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.492, 70.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.673, 70.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.618, 70.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.513, 70.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.797, 70.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.636, 70.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.661, 70.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.614, 70.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.626, 70.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 70.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.828, 70.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.705, 70.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.706, 70.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.754, 70.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.728, 70.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.767, 70.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.841, 70.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.887, 70.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.699, 70.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.796, 70.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.736, 70.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.739, 70.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.619, 70.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.538, 70.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.627, 70.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.61, 70.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.452, 70.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8, 70.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.253, 70.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 70.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.978, 70.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 70.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.28, 70.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.498, 70.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 70.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 70.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.333, 70.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.665, 70.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.684, 70.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.817, 70.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 70.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.867, 70.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.464, 70.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.946, 70.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.923, 70.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 70.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.037, 70.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.003, 70.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.026, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 70.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 70.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.614, 70.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.949, 70.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 70.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.982, 70.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.837, 70.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.938, 70.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.832, 70.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.787, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.774, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.874, 70.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.44, 68.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.761, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.681, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.541, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 70.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.639, 71.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.245, 71.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.694, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.65, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.668, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 70.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.591, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.525, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.535, 70.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.65, 71.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.385, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.413, 71.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.213, 70.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.638, 70.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.406, 70.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.429, 70.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.308, 70.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.369, 70.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.628, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.421, 70.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.291, 70.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.305, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.691, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.238, 70.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.645, 70.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.311, 70.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.011, 71.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.906, 70.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.289, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.079, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.983, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.988, 70.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76, 70.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.258, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.323, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.058, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.236, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.584, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.352, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.129, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.093, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.81, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.826, 69.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 69.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.625, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.888, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.759, 67.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 66.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.102, 66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.219, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.305, 66.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.409, 65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.95, 65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.947, 65.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.826, 65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.602, 65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.619, 65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.564, 65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.181, 65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.799, 65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.731, 65.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.84, 64.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.904, 64.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.91, 64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.914, 64.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 64.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.54, 64.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.862, 64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.942, 64.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.61, 64.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.6, 64.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.172, 64.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.611, 64.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 64.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.569, 64.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.442, 64.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.205, 64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.211, 64.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.371, 64.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.237, 63.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.03, 63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.136, 63.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.868, 63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.999, 63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.165, 63.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.177, 63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.35, 63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.304, 63.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.206, 63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.127, 64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.161, 64.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.282, 64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.334, 64.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.611, 63.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.353, 63.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.538, 63.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.602, 63.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.68, 63.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.728, 63.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.655, 63.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.481, 63.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.871, 63.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.839, 63.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.724, 63.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.927, 63.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.708, 63.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.822, 63.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.858, 63.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.987, 63.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.791, 63.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.334, 63.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.186, 63.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.036, 63.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.958, 63.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.972, 63.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.946, 63.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.617, 63.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.382, 63.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.323, 63.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.847, 63.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.839, 62.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.945, 62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.947, 62.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.012, 62.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.101, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.086, 62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.061, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.888, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.981, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.345, 63.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.499, 63.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.355, 63.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.309, 63.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.311, 63.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.336, 63.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.269, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.327, 63.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.113, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.387, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.451, 62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.747, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.761, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.66, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.822, 62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.729, 62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.91, 62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.931, 62.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.884, 62.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.026, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.882, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.987, 62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.054, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.114, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.811, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.836, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.856, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.945, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.111, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.152, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.226, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.254, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.254, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.292, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.335, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.403, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.409, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.414, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.457, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.263, 62.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.403, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.628, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.573, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.851, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.034, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.631, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.598, 62.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.537, 62.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.322, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.253, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.238, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.415, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.188, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.094, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.144, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.319, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.586, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.607, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.347, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.413, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.313, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.905, 62.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.382, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.465, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.402, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.396, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.52, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.355, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.411, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.416, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.391, 69.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.309, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.306, 69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.293, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.451, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.229, 69.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.214, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 69.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 69.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.292, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.316, 69.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.396, 68.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 68.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.233, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.299, 68.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.316, 68.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 68.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.383, 68.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.231, 68.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.221, 68.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.232, 68.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.191, 68.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.432, 68.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.051, 68.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 68.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.281, 68.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.042, 68.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.224, 68.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 68.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.365, 68.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.293, 68.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 68.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.061, 68.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.944, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.008, 68.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.154, 68.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 68.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.211, 68.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.222, 68.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.294, 68.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.324, 68.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.238, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.198, 68.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.174, 67.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 68.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.167, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.544, 67.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.992, 67.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.983, 67.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 67.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.887, 67.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.176, 67.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.708, 67.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.787, 67.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.68, 67.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.711, 67.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.35, 67.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 67.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.885, 67.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.586, 67.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.711, 67.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.693, 67.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.527, 67.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.673, 67.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.898, 67.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.823, 67.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.718, 67.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.706, 67.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 67.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.74, 67.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.723, 67.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.796, 67.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 67.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 67.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 66.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.648, 67.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.613, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.55, 67.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 67.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.588, 67.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 67.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.907, 67.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.56, 67.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 67.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.483, 67.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 67.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.064, 67.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.566, 67.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.834, 67.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.172, 67.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.526, 67.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.713, 67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.773, 67.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.559, 67.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.662, 67.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.624, 67.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.643, 67.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.566, 67.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.597, 67.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.965, 67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.641, 67.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.746, 67.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.565, 67.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.686, 67.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.641, 67.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.263, 67.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.505, 67.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.655, 67.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.74, 68.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.88, 67.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.903, 67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.445, 67.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.563, 67.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.505, 67.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.768, 67.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 68.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 68.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.824, 68.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 68.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.244, 68.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 68.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 68.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 68.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 68.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.985, 68.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 68.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.557, 68.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 68.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.47, 68.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 68.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.491, 68.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.721, 68.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 68.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.901, 68.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.631, 68.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.08, 68.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.511, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.956, 68.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.683, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.093, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.298, 69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.389, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.379, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.329, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.379, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.389, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.277, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.286, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.415, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.493, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.846, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.693, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.605, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.606, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.579, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.532, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.696, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.697, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.657, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.475, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.461, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.439, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.36, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.395, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.465, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.579, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.604, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.923, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.161, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.254, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.611, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.902, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.116, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.624, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.298, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.337, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.393, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.55, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.871, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.775, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.0, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.657, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.727, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.523, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.227, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.765, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.601, 70.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.66, 70.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.522, 71.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 71.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.527, 71.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.437, 70.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.915, 71.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 71.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.011, 71.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 71.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.192, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 71.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.379, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.195, 71.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.897, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 71.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.579, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.948, 71.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.056, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 71.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.083, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.677, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.887, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.497, 72.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.624, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.476, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.423, 72.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.215, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.189, 71.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.26, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 71.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.357, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.342, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.334, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 71.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 71.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.902, 71.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.436, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.952, 71.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.124, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.143, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.136, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 72.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.945, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.941, 72.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.818, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.777, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 72.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.702, 72.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 72.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 72.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 72.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 72.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 72.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.753, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 72.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 72.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.596, 72.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 72.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.581, 72.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.788, 72.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.898, 72.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.472, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.334, 72.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.843, 72.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.086, 72.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.813, 72.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.436, 72.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.868, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.478, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.478, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.464, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 72.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 72.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 72.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 72.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.553, 72.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.588, 72.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.141, 72.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 72.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.83, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.761, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.545, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.936, 72.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.486, 72.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.402, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 71.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.784, 71.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.725, 71.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 71.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 71.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.029, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.071, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 71.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.117, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 71.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 71.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.946, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 71.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 71.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.912, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.346, 71.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.935, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.496, 71.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 71.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.78, 71.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.089, 71.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.442, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.406, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.454, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.547, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.435, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 71.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 71.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.911, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.746, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.519, 71.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.615, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.578, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.594, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.612, 71.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.626, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.572, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 71.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.682, 71.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.585, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.428, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.689, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.762, 71.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 71.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.356, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.623, 71.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.955, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.624, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.677, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.584, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.472, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.285, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.383, 71.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.733, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.586, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.509, 71.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.474, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.482, 71.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.71, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.612, 71.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.479, 71.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.687, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.676, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.392, 71.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.761, 71.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.83, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.552, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.544, 71.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.706, 71.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.282, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 71.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 71.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 71.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.956, 71.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.421, 71.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 71.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47, 72.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.127, 71.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.18, 71.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.405, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.833, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.866, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.625, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.373, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.206, 71.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.862, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.816, 71.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.667, 71.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.566, 71.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.583, 71.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.487, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.087, 71.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.783, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.071, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.148, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 71.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.725, 71.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.838, 71.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 71.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.316, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.071, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.04, 71.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.021, 71.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.112, 71.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.595, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.722, 71.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.676, 71.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.006, 71.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 71.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.553, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 71.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 71.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 71.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 71.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.912, 71.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 71.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 71.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.333, 71.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.999, 71.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 70.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 71.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.934, 71.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.465, 70.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.453, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 70.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 70.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.782, 70.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.782, 70.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 70.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 70.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 70.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 70.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 70.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 70.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 70.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.702, 70.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 70.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 70.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.677, 70.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.834, 70.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.099, 70.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.481, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.453, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.438, 70.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.422, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.394, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.536, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.432, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.626, 70.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.627, 70.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.568, 70.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.472, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.525, 70.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.525, 70.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.674, 70.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.519, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.519, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.696, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.523, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.632, 70.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.698, 70.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.544, 70.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.512, 70.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.665, 70.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.677, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.527, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.717, 70.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.071, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.508, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.991, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.672, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.462, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.048, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.593, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.512, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.497, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.627, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.461, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.462, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.454, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.458, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.182, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.306, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.134, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.358, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.015, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.893, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.841, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.744, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.781, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.823, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.761, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.521, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.623, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.49, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.293, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.112, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.951, 69.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.856, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.392, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.628, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.251, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.797, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.235, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.82, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.919, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.98, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.75, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.859, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.73, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.798, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.811, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.803, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.73, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.793, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.812, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.811, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.848, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.799, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.617, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.58, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.691, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.855, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.857, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.475, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.527, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.68, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.811, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.426, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.614, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.435, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.57, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.638, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.766, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.134, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.926, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.935, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.151, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.178, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.229, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.186, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.339, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.419, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.582, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.659, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.58, 70.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.653, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.837, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.122, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.959, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.083, 70.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.342, 70.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.962, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.021, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.864, 70.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.164, 70.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.06, 70.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.864, 70.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.069, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.916, 70.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.067, 70.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.575, 70.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.135, 70.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.118, 70.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.987, 70.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.105, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.096, 70.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.097, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.185, 70.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.977, 70.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.911, 70.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.863, 70.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.601, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.258, 70.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.016, 70.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.985, 70.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.907, 70.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.935, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.883, 70.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.297, 70.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.983, 70.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.168, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0, 70.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.959, 70.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.975, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.925, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.85, 70.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.912, 70.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.781, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.975, 70.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.699, 70.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.776, 70.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.701, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.699, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.683, 70.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.625, 70.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89, 70.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.26, 70.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.395, 70.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.367, 70.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.114, 70.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.098, 70.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.207, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.106, 70.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.642, 70.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.134, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.949, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.326, 70.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.247, 70.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.25, 70.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.001, 70.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.176, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.151, 70.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.959, 70.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 70.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.14, 70.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.423, 71.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.68, 71.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.394, 71.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.65, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.643, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.649, 71.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.269, 71.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.067, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.601, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.665, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.667, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.674, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.699, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.692, 71.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.753, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.428, 68.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.507, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.782, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.882, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32, 71.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.341, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.115, 71.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.306, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.963, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.236, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.409, 71.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.396, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.479, 71.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.299, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.414, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.284, 71.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.314, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.303, 71.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.259, 71.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.462, 71.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.339, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.655, 71.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.977, 71.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 71.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.26, 71.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.407, 71.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.322, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.421, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.716, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.657, 71.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 71.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.52, 70.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.368, 71.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.427, 70.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 70.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.548, 70.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 70.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 70.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.987, 70.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.774, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 70.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 70.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 70.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 71.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.036, 71.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.814, 70.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.735, 70.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.214, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.601, 71.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.481, 71.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.451, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.605, 71.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.672, 71.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.985, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.9, 71.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.209, 71.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 71.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.563, 71.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 71.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 71.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 71.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.764, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.299, 71.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.868, 70.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 71.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 70.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 70.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 71.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.959, 70.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 70.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 70.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 70.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 70.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 70.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 70.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.28, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.661, 70.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.436, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.289, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.585, 71.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.657, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.726, 71.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 71.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.747, 71.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 71.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.769, 71.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.859, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.138, 71.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 71.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.754, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 70.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.033, 70.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.879, 71.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.951, 71.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.704, 71.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.931, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 70.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 70.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 70.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72, 70.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 70.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.225, 70.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.903, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 70.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 70.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 70.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 70.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.894, 70.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.986, 70.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.723, 70.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 70.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.499, 71.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.071, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 71.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.447, 71.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.596, 71.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.128, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 71.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 71.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.211, 71.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 71.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.226, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.908, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.755, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 70.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 70.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.459, 70.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 70.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.885, 70.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 70.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 70.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.795, 70.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 70.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.67, 70.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.48, 70.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.497, 70.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.295, 70.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 70.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 70.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.766, 70.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.119, 70.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36, 70.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46, 70.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.811, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.839, 70.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.995, 70.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 70.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.864, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.827, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.119, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.722, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.749, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.816, 70.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.638, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.595, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.524, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.715, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.486, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.728, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.317, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.507, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.171, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.207, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.686, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.289, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.186, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.931, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.893, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.896, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.747, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.896, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.755, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.483, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.726, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.217, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.963, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.343, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.019, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.763, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.725, 69.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.622, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.279, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.274, 67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.36, 67.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 67.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 67.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.324, 67.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.358, 67.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.487, 67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.819, 66.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 66.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.084, 66.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 66.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 66.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.142, 66.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 66.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.071, 66.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 66.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.195, 66.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.607, 65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.511, 65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.538, 65.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.53, 65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.771, 65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.745, 65.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.684, 65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.713, 65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.856, 65.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.765, 65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.384, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.378, 65.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.751, 65.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.65, 65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.589, 65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.154, 65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.592, 65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.366, 65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.43, 65.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.985, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.235, 65.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 64.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.834, 64.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.287, 64.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.012, 64.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.194, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.992, 64.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.844, 64.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.848, 64.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.833, 64.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.912, 64.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.687, 64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.859, 64.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.739, 64.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.808, 63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.541, 63.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.052, 63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.731, 63.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.778, 63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.955, 63.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.721, 63.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.405, 63.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.416, 63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.393, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.985, 64.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.855, 63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.795, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.89, 63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.677, 63.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.648, 63.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.601, 63.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.549, 63.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.654, 63.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.679, 63.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.612, 63.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.526, 63.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.493, 63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.432, 63.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.378, 63.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.383, 63.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.447, 63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.914, 63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.122, 63.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.144, 63.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.191, 63.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.666, 63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.574, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.085, 63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.399, 63.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.402, 63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.238, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.824, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.497, 62.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.641, 62.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.614, 62.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.569, 62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.456, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.505, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.299, 62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.221, 63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.503, 62.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.515, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.496, 62.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.357, 62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.377, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.631, 62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.339, 63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.464, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.495, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.436, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.533, 63.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.437, 63.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.698, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.701, 63.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.796, 63.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.858, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.741, 63.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.814, 63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.839, 63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.384, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.607, 63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.547, 63.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.6, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.564, 63.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.957, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.089, 63.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.727, 63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.672, 63.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.366, 62.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.3, 62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.302, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.051, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.361, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.216, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.482, 62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.535, 62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.421, 62.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.968, 62.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.331, 62.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.662, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.241, 62.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.112, 62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.048, 62.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.854, 61.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.867, 61.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.966, 61.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.95, 61.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.766, 61.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.801, 61.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.78, 61.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.185, 61.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.54, 61.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.891, 61.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.469, 62.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.766, 62.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.212, 62.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.657, 61.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.017, 62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.802, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.982, 61.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.876, 62.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.432, 62.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.287, 62.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.479, 62.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.654, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.719, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.685, 62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.63, 62.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.528, 62.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.748, 62.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.092, 62.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.536, 62.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.528, 62.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.61, 62.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.665, 62.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.563, 62.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.524, 62.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.243, 62.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.736, 62.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.251, 61.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.578, 62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.423, 62.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.709, 62.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.709, 62.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.606, 62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.462, 62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.05, 62.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.973, 62.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.015, 62.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.944, 62.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.797, 62.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.881, 62.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.609, 62.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.428, 61.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.529, 62.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.028, 62.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.363, 62.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.385, 62.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.741, 62.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.839, 61.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.868, 62.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.223, 62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.199, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.09, 62.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.223, 62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.678, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.803, 62.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.382, 61.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.755, 62.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.537, 62.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.64, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.706, 62.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.696, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.129, 62.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.217, 62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.256, 62.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.711, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.056, 62.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.358, 62.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.534, 62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.166, 62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.699, 62.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.855, 62.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.026, 62.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.617, 62.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.57, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.665, 62.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.638, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.781, 62.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.728, 62.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.677, 62.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.268, 62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.252, 62.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.448, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.413, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.441, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.59, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.728, 62.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.845, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.986, 62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.823, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.675, 62.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.334, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.705, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.737, 62.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.428, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.816, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.888, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.815, 62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.814, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.84, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.026, 62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.056, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.968, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.005, 62.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.963, 63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.094, 63.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.696, 63.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.241, 63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.645, 63.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.904, 63.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.738, 63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.714, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.619, 63.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.134, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.828, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.837, 62.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.108, 62.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.871, 62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.693, 62.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.546, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.822, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.473, 64.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.592, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.518, 62.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.888, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.923, 62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.103, 62.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.748, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.136, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.355, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.255, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.546, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.855, 62.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.751, 62.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.921, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.782, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.909, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.848, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.732, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.499, 62.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.542, 62.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.133, 62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.656, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.76, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.979, 63.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.967, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.992, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.243, 63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.193, 63.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.415, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.467, 63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.548, 63.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.501, 63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.674, 63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.279, 63.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.902, 63.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.053, 63.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.253, 63.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.926, 63.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.339, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.896, 63.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.058, 63.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.069, 63.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.97, 63.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.974, 63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.816, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.752, 63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.74, 63.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.777, 63.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.785, 63.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.802, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.83, 63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.622, 63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.596, 63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.7, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.828, 63.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.293, 63.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.919, 64.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.022, 63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.076, 63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.415, 64.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.66, 64.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.555, 64.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.41, 63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.786, 64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.912, 64.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.42, 64.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.561, 64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.716, 64.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.732, 64.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.916, 64.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.975, 64.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 64.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.527, 64.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.448, 64.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.445, 64.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.554, 64.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.455, 64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 64.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.643, 64.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.018, 64.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.981, 64.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.053, 64.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 64.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.776, 64.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 64.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.163, 64.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.237, 64.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 64.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.191, 64.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 64.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.171, 64.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.046, 64.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 64.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 64.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.747, 64.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.646, 64.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 64.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 64.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.567, 64.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 64.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 64.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 64.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.867, 64.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 64.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.854, 64.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 64.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.884, 64.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.626, 64.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.76, 64.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.773, 64.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.312, 64.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.42, 64.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.375, 64.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.492, 64.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.415, 64.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.329, 64.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.324, 64.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.893, 64.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.918, 64.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.002, 64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.82, 64.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.99, 64.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.091, 64.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.936, 64.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.938, 64.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.908, 64.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.942, 64.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 64.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 64.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.201, 64.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 64.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.994, 64.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.932, 64.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.211, 64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.203, 64.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 64.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 64.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.343, 64.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 64.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 64.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.717, 64.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.568, 64.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 64.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.618, 64.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.596, 64.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.718, 64.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 64.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 64.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 64.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 64.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.604, 64.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.608, 64.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.538, 64.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.55, 64.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.642, 64.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.508, 64.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.067, 64.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.311, 63.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.162, 63.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.077, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.526, 64.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.443, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.469, 64.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.326, 64.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.426, 64.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.415, 64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.413, 64.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 64.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.665, 64.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.527, 65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.179, 65.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.145, 65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.209, 65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.198, 65.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.24, 65.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.038, 65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.106, 65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.688, 65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.11, 65.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.132, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.109, 65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.875, 65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.113, 65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.074, 65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.077, 65.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.035, 65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.559, 65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.037, 65.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.149, 65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.506, 65.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.021, 65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.703, 65.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.345, 65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.374, 65.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.413, 65.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.437, 65.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.279, 65.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.381, 65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.597, 65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.346, 65.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.334, 65.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.413, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.321, 65.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.845, 64.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.574, 65.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.662, 65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.165, 65.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.002, 65.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.402, 66.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.68, 66.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.835, 66.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.688, 66.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.497, 66.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.467, 66.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.831, 67.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 67.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.312, 67.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.732, 67.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.084, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.203, 67.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 67.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.108, 66.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.691, 66.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.974, 66.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.62, 66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.438, 66.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.439, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.282, 65.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.906, 64.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 64.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.13, 64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.47, 64.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 64.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.314, 64.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.276, 64.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.181, 64.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.206, 64.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.034, 64.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.011, 64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.023, 64.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.04, 64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.992, 64.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.913, 64.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.924, 64.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.9, 64.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.898, 64.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.322, 64.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.908, 64.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.882, 64.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.912, 64.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 64.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.932, 64.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.83, 64.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.903, 64.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.321, 64.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.072, 64.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.925, 64.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.958, 64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.838, 64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.757, 64.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.965, 64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.046, 64.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.811, 64.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.572, 64.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.715, 64.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.668, 64.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.642, 64.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.633, 64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.674, 64.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.531, 64.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.865, 64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 64.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.009, 64.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.427, 65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.384, 65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.375, 65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.504, 66.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 66.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 67.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 67.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.493, 68.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 68.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.637, 68.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.506, 68.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.422, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.532, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.673, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.863, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.285, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.321, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.158, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.803, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.026, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.678, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.537, 69.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.243, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.181, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.302, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.684, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.468, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.451, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.496, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.521, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.028, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.043, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.169, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.176, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.153, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.326, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.746, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.7, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.056, 69.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.323, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.034, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.067, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.332, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.342, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.636, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.74, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.217, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.425, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.209, 69.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.509, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.8, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.733, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.905, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.855, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.873, 70.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.048, 70.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.286, 70.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.634, 70.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.411, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.365, 71.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 72.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 72.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.268, 72.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 72.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 72.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.074, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.96, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 72.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.726, 72.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.673, 72.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.773, 72.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 72.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.941, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.763, 72.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.926, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 72.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 72.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 72.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.854, 72.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 72.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16, 72.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.954, 72.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.956, 72.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 72.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 72.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.972, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 72.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 72.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 72.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.782, 72.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 72.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 72.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.097, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.628, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.423, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.371, 71.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 71.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.427, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 71.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 72.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.638, 72.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 72.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.132, 72.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.755, 72.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.175, 72.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 72.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 72.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.364, 72.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.172, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.467, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.404, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.283, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.191, 71.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.959, 71.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.199, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 72.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 72.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.445, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.378, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.788, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.492, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.496, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.146, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.857, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.956, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3, 71.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 71.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 71.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.024, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.214, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.183, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 71.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.894, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.027, 71.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 71.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.184, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.133, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.128, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.138, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.388, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.264, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 71.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.103, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 71.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.02, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.386, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.906, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.182, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 72.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.467, 72.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.253, 72.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 72.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.771, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.885, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.82, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.755, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.681, 72.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.805, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.932, 72.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.119, 72.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.225, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.183, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.444, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 71.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.095, 71.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.822, 70.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 70.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.923, 70.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.501, 77.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.819, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.683, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.989, 71.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 71.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.814, 71.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.815, 71.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.676, 71.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.333, 71.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.308, 71.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.254, 71.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.295, 71.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.195, 71.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.08, 71.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.044, 71.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.039, 71.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03, 71.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.927, 71.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.383, 71.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.125, 71.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.035, 71.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.821, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.936, 71.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.783, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.673, 71.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.217, 71.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.844, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.636, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.63, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.903, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.755, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.775, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.641, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.424, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.799, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.86, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.818, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.844, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.842, 71.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.256, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.757, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.789, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.909, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.937, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.981, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.927, 71.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.914, 71.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.893, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.872, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04, 71.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.143, 71.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.019, 71.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.78, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.61, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.743, 71.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.843, 71.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.72, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.871, 71.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.821, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.87, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.774, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.91, 71.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.097, 71.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.903, 71.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.251, 71.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.988, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.871, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.943, 70.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.914, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.825, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.755, 71.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.802, 71.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.843, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.219, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.143, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.226, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.615, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2, 71.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.219, 71.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.581, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.186, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.243, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.815, 70.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.245, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.884, 70.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.206, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.181, 70.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.215, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.845, 70.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.016, 70.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.307, 71.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.996, 71.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.923, 70.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.699, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.772, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.388, 70.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.563, 71.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.822, 71.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.573, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.517, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.139, 71.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.253, 71.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27, 71.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.673, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.873, 71.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.832, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.891, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.677, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.144, 71.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.134, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.103, 71.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.043, 71.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.982, 71.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.967, 71.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.878, 71.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.197, 71.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.076, 71.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.092, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.128, 71.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.181, 71.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.153, 71.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.278, 71.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.17, 71.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.116, 71.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.169, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.696, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.265, 71.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.052, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.916, 71.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.623, 71.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.802, 71.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.745, 71.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 71.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.564, 71.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 71.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.332, 71.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.469, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.243, 71.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.407, 71.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.475, 71.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.575, 71.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.368, 71.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.087, 71.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.35, 71.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.248, 71.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.346, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.273, 71.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.056, 71.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.843, 71.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.261, 71.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.217, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.006, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.129, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.911, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.278, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.128, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.186, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.279, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.125, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.117, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.134, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.128, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.179, 71.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.211, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.182, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.356, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.091, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.062, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.001, 71.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.88, 71.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.105, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.147, 71.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.873, 70.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.978, 70.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.018, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.335, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.043, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.009, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.989, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.068, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.006, 70.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.551, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.961, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.059, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.006, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.011, 70.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.874, 70.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.197, 70.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.043, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.282, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.107, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.413, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.128, 71.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.938, 70.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.885, 70.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.936, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.901, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.829, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.872, 70.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.685, 70.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.811, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.86, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.983, 71.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.898, 70.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.868, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.837, 70.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76, 70.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.722, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.016, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.138, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.096, 71.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.014, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.978, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.795, 71.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98, 71.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.977, 71.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.956, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.044, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.963, 71.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.97, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.961, 71.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.983, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.035, 71.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.984, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.955, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.043, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.061, 71.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.026, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.983, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.926, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.859, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.904, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.029, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.139, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.272, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.297, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.271, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.943, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.021, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.987, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.61, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.169, 71.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.194, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.028, 71.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.974, 71.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.968, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.959, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.972, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.212, 71.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.967, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.116, 71.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.228, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.103, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.077, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.201, 71.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.132, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.139, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.331, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.317, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.388, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39, 71.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.375, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.329, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.361, 71.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.417, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.179, 71.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.379, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.318, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.607, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.388, 71.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.286, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.364, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.333, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53, 71.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.541, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.525, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.397, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.45, 71.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.404, 71.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.792, 71.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.333, 71.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.461, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.358, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.364, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.245, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.246, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.232, 71.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.265, 71.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.215, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.288, 71.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21, 71.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.121, 71.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.203, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.163, 71.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.146, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.211, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.217, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29, 71.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.286, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.097, 71.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.106, 71.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.615, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.886, 71.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.334, 71.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.092, 71.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.439, 71.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.616, 71.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.618, 71.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.493, 71.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.673, 71.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.779, 71.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.071, 71.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 71.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.106, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.951, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.945, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 71.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.922, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.874, 71.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.972, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 71.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.985, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 71.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 71.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 71.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 71.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.918, 71.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 71.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.055, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93, 71.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 71.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 71.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.835, 71.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 71.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 71.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 71.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 71.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1, 71.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 71.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 71.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 71.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.141, 71.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 71.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.407, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.313, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.222, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 71.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.685, 70.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.638, 70.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 70.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 70.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 70.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.505, 70.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 70.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.496, 70.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 70.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 70.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.716, 70.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.755, 70.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 70.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.702, 70.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.647, 70.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 70.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 70.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 70.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 70.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.855, 70.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 70.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 71.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 70.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.844, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76, 70.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.862, 70.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 70.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.708, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 70.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.79, 70.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.936, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95, 71.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.693, 71.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.751, 71.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.703, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 71.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.326, 71.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 71.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.271, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.989, 71.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.786, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.771, 71.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.774, 70.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.094, 70.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.059, 70.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76, 70.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.019, 70.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.985, 70.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.826, 70.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.986, 70.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.825, 70.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.224, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.107, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.272, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.889, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.861, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.158, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.338, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.478, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.826, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.201, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.086, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.895, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.743, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.546, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.147, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.666, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.456, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.262, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.011, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.002, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.547, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -44.309, 63.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.999, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.583, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.454, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.614, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.503, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.345, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.291, 69.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.534, 69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.034, 68.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.822, 68.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.424, 68.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.685, 68.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.456, 68.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.786, 68.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 68.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.347, 68.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.224, 68.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.628, 68.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 67.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.546, 67.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 67.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.55, 67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.601, 67.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.543, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.503, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.529, 67.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.458, 66.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.686, 66.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.651, 66.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.764, 66.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 66.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.887, 66.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.255, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.306, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.397, 65.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.013, 65.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.575, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.97, 65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.591, 65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.58, 65.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.856, 65.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.614, 65.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.986, 65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.991, 65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.069, 65.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.884, 65.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.987, 65.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.829, 64.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.595, 64.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 64.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.813, 64.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.88, 64.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.826, 64.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.881, 64.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.86, 65.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.773, 64.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.658, 64.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.668, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.377, 64.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.336, 64.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.426, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.429, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.588, 69.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.261, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.305, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.302, 69.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.201, 69.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.209, 69.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.175, 69.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 69.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.348, 69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 69.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.543, 69.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.229, 68.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.27, 68.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.345, 68.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.32, 68.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.314, 69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 68.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.229, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 68.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.006, 68.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 68.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 68.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.024, 68.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.005, 68.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.953, 68.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.839, 68.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.755, 68.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.649, 68.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 68.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 68.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.615, 68.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.787, 68.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.525, 68.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.562, 68.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.577, 68.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.502, 68.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.558, 68.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.479, 68.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.62, 68.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.418, 68.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.463, 68.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.432, 68.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.45, 68.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 68.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.434, 68.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.471, 68.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.462, 68.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 68.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.506, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.28, 68.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.342, 69.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.388, 69.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.339, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.448, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.333, 69.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.582, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.618, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.657, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.755, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.759, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.903, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.994, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.981, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.993, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.044, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.164, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.098, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.945, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.925, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 69.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.067, 69.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 69.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.139, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 69.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.09, 69.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 69.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.012, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.088, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.103, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.893, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.913, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.135, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.957, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.867, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.813, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.691, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.736, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.844, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.89, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.897, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.039, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 69.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.227, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.384, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.243, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.467, 69.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.34, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.446, 69.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.276, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.267, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.066, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.076, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.983, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.839, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.769, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.904, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.952, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.907, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.023, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.064, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.095, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.096, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.311, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.262, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.275, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.358, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.049, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.172, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.137, 69.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.894, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.216, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.876, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.868, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.85, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.907, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.117, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.104, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.048, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.177, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.022, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.239, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.235, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.402, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.358, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.325, 69.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.347, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.693, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.51, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.777, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.02, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.934, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.95, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.011, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.379, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.513, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.857, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.88, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.214, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.637, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.564, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.984, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.138, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.925, 70.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.832, 70.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.323, 70.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.614, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.574, 70.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 71.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.184, 71.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 71.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.188, 71.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.227, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 71.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.287, 71.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 71.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 71.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.578, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.613, 71.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.672, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 71.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 71.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 71.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 71.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.832, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.703, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.868, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.937, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 71.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.956, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.707, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.939, 71.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 71.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 71.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 71.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 71.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.417, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.222, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.728, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.423, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.551, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.493, 71.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.242, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 71.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.468, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.648, 71.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.512, 71.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.412, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.195, 71.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 71.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.461, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.201, 71.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 71.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.684, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.822, 71.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.511, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 71.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.821, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.818, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.664, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.725, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.327, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.611, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.657, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.543, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.429, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 72.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.521, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 72.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.603, 72.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.456, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.562, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 72.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.515, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.463, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 72.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.278, 71.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 72.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 72.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.345, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.436, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.397, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 72.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 72.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 72.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 72.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 72.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 72.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.736, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 72.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 72.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.422, 72.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 72.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 72.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 72.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 72.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 72.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.581, 72.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 72.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.811, 72.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 72.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 72.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.548, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.542, 72.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99, 72.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.558, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.595, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.593, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.348, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.663, 72.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.711, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.625, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.577, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.347, 72.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.437, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.583, 72.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.562, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.412, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.263, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.402, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.266, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.806, 72.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.804, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.184, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 72.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 72.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 72.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.197, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 71.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.333, 71.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 71.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 71.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 71.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.638, 71.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.639, 71.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.423, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.467, 70.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.418, 70.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.285, 70.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.134, 70.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.507, 70.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12, 70.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.218, 70.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.122, 70.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.047, 70.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.945, 70.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.905, 70.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.558, 70.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.136, 70.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.555, 70.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.494, 70.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.253, 70.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.163, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.833, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.578, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.661, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.653, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.556, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.446, 69.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.457, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.505, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.474, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.451, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.41, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.188, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.397, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.392, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.886, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.419, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.868, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.462, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.388, 69.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.509, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.433, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.442, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.529, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.388, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.256, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.268, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.061, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.088, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.663, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.984, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.094, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.006, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.795, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.824, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.851, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.546, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.614, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.384, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.417, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.117, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.229, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.173, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.22, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.215, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.244, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.005, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.819, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.851, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.734, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.554, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.401, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.375, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.234, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.181, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.587, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.47, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.36, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.209, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.15, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.824, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.044, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.859, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.076, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.853, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.835, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.607, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.723, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.807, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.751, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.77, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.874, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.881, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.521, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.059, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.898, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.837, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.958, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.527, 69.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.079, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.855, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.859, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.735, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.854, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.658, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.083, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.969, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.953, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.975, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.86, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.951, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.044, 69.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.774, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.948, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.116, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.601, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.112, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.996, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.974, 69.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.943, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.151, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.966, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.023, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.229, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.179, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.076, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.003, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.982, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.074, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.863, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.629, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.962, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.984, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.959, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.927, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.808, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.691, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.586, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.818, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.935, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.995, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.134, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.96, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.909, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.856, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.818, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.795, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.877, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.979, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.341, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.805, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.842, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.932, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.852, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.973, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.941, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.044, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.093, 69.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.813, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.838, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.006, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.994, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.537, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.484, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.432, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.409, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.305, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.113, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.749, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.801, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.585, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.814, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.896, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.752, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.812, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.547, 69.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.265, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.244, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.273, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.233, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.232, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.268, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.267, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.173, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.027, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.916, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.906, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.834, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.661, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.767, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.777, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.773, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.83, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.77, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.701, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.773, 69.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.755, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.782, 69.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.739, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.767, 69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.742, 69.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.728, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.755, 69.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.022, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.983, 69.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.872, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.857, 69.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.768, 69.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.711, 69.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.675, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.715, 69.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 69.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.771, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.864, 68.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.132, 68.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.037, 68.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.036, 68.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.006, 68.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.113, 68.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.175, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.142, 68.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 68.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.034, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.887, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.901, 69.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.687, 69.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.916, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.701, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.875, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.048, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.079, 69.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.021, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.118, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.086, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.308, 69.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.294, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.283, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.299, 69.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.833, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.914, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.884, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.193, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.422, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.262, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.252, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.408, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.523, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.288, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.422, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.403, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.592, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.677, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.73, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.731, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.809, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.838, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.783, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.798, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.917, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.095, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.435, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.768, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.95, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.35, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.891, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.839, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.491, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.779, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.844, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.989, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.963, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.695, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.96, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.02, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.969, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.901, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.947, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.962, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.928, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.8, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.782, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.8, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.93, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.84, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.831, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.86, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.697, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.223, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.164, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.249, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.121, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.003, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.507, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.225, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.008, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.962, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.808, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.758, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.6, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.5, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.542, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.461, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.777, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.831, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.261, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.186, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.107, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.013, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.892, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.829, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.245, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.831, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.696, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.826, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.756, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.882, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.462, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.743, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.569, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.816, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.801, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.288, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.311, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.616, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.018, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.929, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.911, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.87, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.876, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.917, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.89, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.58, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.79, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.777, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.739, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.693, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.719, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.694, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.695, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.689, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.677, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.631, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.542, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.271, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.297, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.438, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.544, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.437, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.682, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.293, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.356, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.562, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.542, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.95, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.991, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.476, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.035, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.011, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.015, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.98, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.733, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.986, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.925, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.917, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.9, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.857, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.891, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.827, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.807, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.706, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.617, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.654, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.684, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.535, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.831, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.606, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.586, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.745, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.818, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.295, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.26, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.894, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.812, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.276, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.157, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.404, 69.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.321, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.178, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.28, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.184, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.087, 69.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.158, 68.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.059, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.148, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.153, 69.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.457, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.127, 69.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.199, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.954, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.813, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.095, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.139, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.25, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.275, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 69.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.083, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.067, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.726, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.263, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.744, 69.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.4, 69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.379, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.576, 69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.098, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.124, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.451, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.024, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.917, 68.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.841, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.475, 69.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.451, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.245, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.298, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.368, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.127, 69.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.24, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.138, 69.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.495, 69.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.119, 69.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 68.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.93, 68.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.276, 68.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.061, 68.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.066, 68.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.431, 68.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 68.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.033, 68.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.238, 68.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 68.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.502, 68.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.272, 68.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.207, 68.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.527, 68.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.366, 68.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.085, 68.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.198, 68.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.355, 68.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.306, 68.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.204, 68.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.363, 68.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 68.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.463, 68.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.37, 68.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.705, 68.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.304, 68.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.336, 68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.634, 68.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.18, 68.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.287, 68.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.19, 68.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.42, 68.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.458, 68.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.361, 68.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.748, 68.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 68.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.388, 68.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.47, 68.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.383, 68.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.388, 68.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.475, 68.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 68.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.638, 68.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 68.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.419, 68.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 68.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 68.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.44, 68.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.408, 68.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 68.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.505, 68.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.474, 68.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.375, 68.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.273, 68.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 68.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.386, 68.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.411, 68.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 68.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 68.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.377, 68.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 68.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.246, 68.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.085, 68.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 68.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.724, 68.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.303, 68.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 68.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.037, 68.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.247, 68.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.147, 68.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.145, 68.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.261, 68.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.233, 68.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.29, 68.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.341, 68.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.312, 68.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.023, 68.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.461, 68.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.865, 68.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.229, 68.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.306, 68.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.299, 68.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.371, 68.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.638, 68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.445, 68.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.423, 68.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.405, 68.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.393, 68.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.273, 68.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.368, 68.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 68.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 68.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 68.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.157, 68.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 68.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 68.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.223, 68.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 68.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.381, 68.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.304, 68.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.325, 67.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.364, 67.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.382, 67.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 68.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.431, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 67.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 68.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.404, 67.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 67.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.003, 68.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 67.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.291, 67.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.227, 67.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 67.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.304, 67.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.568, 67.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.992, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.232, 67.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.704, 67.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.819, 67.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 67.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 67.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.281, 67.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.189, 67.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 67.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.039, 67.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 67.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.193, 66.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 66.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.137, 66.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.063, 66.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.35, 66.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.719, 66.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.635, 67.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -16.478, 55.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 67.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.034, 66.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.358, 66.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.181, 66.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.235, 66.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.264, 66.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.431, 66.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.274, 66.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.555, 66.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.267, 66.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.323, 65.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 66.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.492, 66.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.778, 66.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.511, 66.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.551, 66.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.514, 66.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.378, 66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.628, 66.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.889, 66.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 66.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 66.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.167, 66.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 66.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.507, 66.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.73, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.634, 66.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.569, 65.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.806, 66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.956, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.689, 66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.711, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.646, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.857, 65.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.765, 66.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.918, 66.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.094, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -36.78, 74.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.727, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.629, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.051, 66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.406, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.734, 66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.819, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.529, 66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.392, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.567, 66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.408, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.77, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.797, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.591, 66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.921, 65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.033, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.991, 65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.183, 66.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.149, 65.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.159, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.456, 65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.244, 65.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.319, 65.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.735, 65.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.036, 65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.613, 65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.625, 65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.471, 62.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 65.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 65.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 65.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.163, 65.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.222, 64.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 64.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.298, 64.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.552, 64.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 65.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 65.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.785, 65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.284, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.022, 64.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.529, 64.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.315, 64.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.547, 64.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.469, 64.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.731, 64.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.095, 64.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.2, 63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.315, 64.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.323, 64.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.216, 63.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.191, 63.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.812, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.975, 64.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.373, 64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.125, 61.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.485, 64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.144, 64.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.383, 64.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.325, 64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.238, 64.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.561, 63.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.207, 63.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.588, 63.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.627, 63.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.43, 63.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.496, 63.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.564, 63.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.578, 63.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.712, 63.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.677, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.759, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.754, 63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.751, 63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.456, 63.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.646, 63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.226, 62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.983, 62.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.033, 62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.143, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.86, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.834, 62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.276, 62.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.187, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.191, 62.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.226, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.14, 62.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.276, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.268, 62.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.237, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.542, 62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.303, 62.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.252, 62.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.183, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.343, 62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.401, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.206, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.338, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.123, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.163, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.263, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.201, 62.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.127, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.126, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.12, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.213, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.675, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.627, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.611, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.72, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.653, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.355, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.059, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.738, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.447, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.501, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.714, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.945, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.641, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.837, 62.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.835, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.444, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.532, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.652, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.382, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.296, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.481, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.034, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.344, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.268, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.035, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.292, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.447, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.231, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.371, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.673, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.478, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.596, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.763, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.32, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.489, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.753, 62.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.599, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.58, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.457, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.413, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.1, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.387, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.372, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.598, 62.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.348, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.476, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.342, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.094, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.247, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.612, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.642, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.224, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.275, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.239, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.771, 69.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.025, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.293, 69.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.011, 68.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 68.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.798, 68.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.277, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.838, 69.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.869, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.383, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.174, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.286, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.225, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.198, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.277, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.084, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.05, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.094, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -158.389, 83.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.743, 68.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.681, 68.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 69.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.485, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.516, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.001, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.41, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.572, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.81, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 69.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.399, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.385, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 69.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.096, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 69.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.356, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.257, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 68.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.226, 68.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.987, 68.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 69.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.244, 68.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.249, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.289, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.121, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.452, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.757, 69.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.909, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.712, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.772, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.912, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.67, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.449, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.188, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.421, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 69.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.799, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.627, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 69.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.576, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.566, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.226, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.223, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.393, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.503, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.401, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.408, 69.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.397, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.448, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.371, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.5, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.675, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.649, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.143, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 71.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.784, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 71.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.976, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.945, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.792, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.015, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 72.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 72.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.994, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.066, 72.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.015, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.062, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.473, 72.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.078, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.667, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 71.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 71.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 71.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.466, 71.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 71.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 71.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.075, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.084, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.119, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.591, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.134, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.046, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 71.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 71.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.187, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.162, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.131, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.156, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.128, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.259, 72.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.944, 72.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.964, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.991, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.062, 72.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.495, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 71.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.248, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.247, 71.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.283, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.156, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.222, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.139, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.182, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.209, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.174, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.109, 71.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.149, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.943, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 72.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 72.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.169, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.167, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.223, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.172, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.295, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.162, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.232, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.967, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 72.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.373, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.274, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.213, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.434, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.295, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.352, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.408, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.379, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 71.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.469, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.578, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 71.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 71.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.227, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.23, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.197, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.313, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.356, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.396, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.284, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.259, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.308, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.861, 72.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.223, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 71.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.209, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 72.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.155, 71.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.109, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.096, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 71.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.715, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.683, 72.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.664, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 72.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.754, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.814, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.843, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.744, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.711, 72.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.542, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.693, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 72.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.61, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.769, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.179, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.766, 72.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.758, 72.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.889, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 72.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 72.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 72.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 72.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.245, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.269, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.356, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 72.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.606, 72.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.814, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.718, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.739, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.798, 72.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61, 72.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.608, 72.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.626, 72.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 72.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.501, 71.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.606, 71.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.381, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.664, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.592, 70.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.52, 70.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.207, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.854, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.711, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.097, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.182, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.173, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.153, 70.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.182, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.051, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.913, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.649, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.786, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.594, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.317, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.56, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.492, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.5, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.511, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.093, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.29, 69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.175, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.888, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.395, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.554, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.538, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.438, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.547, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.747, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.156, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.199, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.127, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.988, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.466, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.467, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.985, 70.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.512, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.883, 70.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.855, 70.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.096, 70.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.045, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.819, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.208, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.339, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.308, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.811, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.389, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.279, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.099, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.304, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.291, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.309, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.422, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.514, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.22, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.469, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.587, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.569, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.696, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.272, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.646, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -32.082, 80.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.367, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.228, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.814, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.732, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.709, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 69.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.992, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.854, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.659, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.902, 68.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.916, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.865, 69.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.874, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.671, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.573, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.133, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.667, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.193, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.989, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.699, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.652, 68.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.912, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.959, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.931, 69.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.419, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.801, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.952, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.007, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.961, 68.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 69.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.867, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 69.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.854, 69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 69.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 69.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.102, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 69.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.976, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.074, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.796, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.001, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.987, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.889, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.06, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.911, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.965, 69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.569, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.869, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.986, 69.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.477, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.555, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.844, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.834, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.864, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.824, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.015, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.979, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.491, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.932, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.212, 69.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.998, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.327, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.041, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.875, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.432, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 69.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.062, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.912, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.844, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.677, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.259, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.548, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.929, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.716, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.478, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.235, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.11, 70.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.941, 70.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.926, 70.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.716, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.713, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.536, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.542, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.483, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.512, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.365, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.349, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.228, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.965, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.324, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.306, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.019, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.825, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.495, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.197, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.059, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.087, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.031, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.744, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.782, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.895, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.823, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.838, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.689, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.719, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.394, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.675, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.37, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.222, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.092, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.059, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.88, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.922, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.918, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.054, 68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.919, 68.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.876, 68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 68.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 68.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.774, 68.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 68.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 68.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 68.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.499, 68.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.378, 68.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 68.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.309, 68.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.736, 68.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.857, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.969, 68.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.936, 68.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.017, 68.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 68.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.896, 68.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.306, 67.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.076, 68.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.052, 68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.849, 68.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.145, 68.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.049, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 68.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.386, 68.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.236, 68.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.454, 68.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 68.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 68.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.681, 68.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.698, 68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 68.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 68.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.446, 68.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.502, 67.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.414, 68.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.49, 68.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.362, 68.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.417, 67.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 68.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 68.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.408, 68.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.145, 68.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.627, 68.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.912, 67.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.645, 67.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.53, 67.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.455, 68.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.453, 68.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.562, 68.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.832, 68.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.175, 68.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.509, 68.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 67.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.521, 67.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.256, 67.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 67.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.599, 67.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.543, 67.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 67.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.557, 67.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 67.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.401, 67.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 67.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.747, 67.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.571, 67.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.251, 66.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 67.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.619, 66.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 67.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.321, 67.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.302, 67.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.362, 67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.324, 67.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.275, 67.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.268, 67.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.221, 67.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 67.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.27, 67.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.294, 67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.445, 67.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 66.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 66.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.666, 66.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.658, 66.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.62, 66.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.32, 66.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.45, 66.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.114, 66.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.331, 66.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.36, 66.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.566, 66.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 67.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 67.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.094, 67.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.566, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 67.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.787, 67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.688, 67.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.794, 67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.728, 67.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.756, 67.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.642, 67.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.714, 67.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 67.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.86, 67.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 67.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 66.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.278, 66.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 66.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.282, 66.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.4, 66.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.485, 66.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.867, 66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.196, 66.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.273, 66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.774, 66.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.757, 66.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.744, 66.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.904, 66.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.81, 66.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.809, 66.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.747, 66.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.912, 66.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.901, 66.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.775, 66.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.026, 66.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.979, 66.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.928, 66.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.825, 66.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.854, 66.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.861, 66.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.84, 66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.044, 66.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.851, 66.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.117, 66.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.095, 66.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.716, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.61, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.986, 66.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.667, 66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.967, 66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.756, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.246, 66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.781, 66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.046, 65.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 65.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.365, 65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.754, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.7, 65.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.592, 65.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.531, 65.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.51, 65.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.322, 64.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.288, 64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.45, 64.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.292, 63.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.489, 64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.312, 64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.485, 64.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.4, 64.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.472, 64.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.508, 64.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.32, 64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.258, 64.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.112, 64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.185, 64.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.245, 65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.215, 64.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.456, 64.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.706, 64.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.338, 64.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.222, 64.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.122, 64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.088, 63.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.816, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.766, 63.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.954, 63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.682, 63.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.759, 63.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.937, 63.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.743, 63.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.563, 64.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.117, 63.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.185, 63.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.23, 63.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.677, 64.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.067, 63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.069, 63.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.004, 63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.876, 64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.027, 63.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.151, 63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.15, 63.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.028, 63.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.025, 63.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.097, 63.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.101, 63.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.085, 63.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.82, 63.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.759, 63.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.238, 63.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.518, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.367, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.719, 63.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.527, 63.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.443, 63.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.192, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.177, 63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.088, 63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.252, 63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.173, 63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.329, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.231, 63.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.331, 63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.108, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.545, 63.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.537, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.592, 63.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.476, 63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.181, 63.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.453, 63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.826, 63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.366, 63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.268, 63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.159, 63.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.115, 63.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.08, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.672, 63.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.579, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.506, 63.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.739, 63.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.51, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.007, 63.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.696, 63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.728, 63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.63, 63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.892, 63.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.25, 63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.382, 63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.014, 63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.887, 63.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.154, 63.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.158, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.078, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.798, 63.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.784, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.797, 63.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.831, 63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.283, 63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.52, 63.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.174, 63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.253, 63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.664, 63.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.26, 63.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.949, 63.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.008, 63.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.168, 64.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.155, 64.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.354, 64.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.981, 63.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.275, 63.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.803, 63.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.693, 63.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.968, 63.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.803, 63.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.01, 63.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.581, 63.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.048, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.146, 62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.073, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.619, 62.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.36, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.397, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.448, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.448, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.486, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.491, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.392, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.408, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.291, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.272, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.247, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.241, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.066, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.331, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.357, 62.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.315, 62.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.707, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.716, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.106, 62.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.903, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.774, 62.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.006, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.766, 62.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.69, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.744, 62.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.097, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.939, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.322, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.974, 62.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.789, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.547, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.568, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.89, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.356, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.71, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.402, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.413, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.421, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.434, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.453, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.506, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.506, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.381, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.424, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.385, 69.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.282, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.662, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.11, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.008, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.0, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.957, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.934, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.993, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.002, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.862, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.916, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.747, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.748, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.735, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.476, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.485, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.434, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 69.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.408, 69.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.357, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.331, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 69.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.298, 69.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.303, 69.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.306, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.426, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.366, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.357, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.31, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.344, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.293, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.238, 69.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.299, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.235, 69.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.176, 69.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.091, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.085, 69.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.014, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.046, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.948, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 69.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.08, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.986, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.048, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.004, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.893, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.532, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.805, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.067, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.348, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.427, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.326, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.745, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.167, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.34, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.122, 69.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.375, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 69.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.345, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.417, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.083, 69.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.034, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.025, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.962, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.705, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.421, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.198, 69.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.204, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.357, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.378, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.391, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.291, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.299, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.371, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.137, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.214, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.125, 69.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.979, 69.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.967, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.918, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.482, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.962, 69.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.745, 68.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.767, 68.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.561, 68.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.703, 68.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.54, 68.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.473, 68.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.479, 68.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.319, 68.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 68.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.94, 68.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.978, 68.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.936, 68.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.109, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.052, 67.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.981, 67.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.459, 67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.357, 67.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.279, 67.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.539, 67.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 67.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.451, 67.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.628, 67.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.237, 67.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.474, 67.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 67.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.594, 67.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.521, 67.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.77, 67.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.113, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.987, 67.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.834, 67.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 67.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 67.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 67.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.158, 67.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.203, 67.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.171, 67.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.233, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 67.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 67.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.425, 67.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.617, 68.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.717, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.92, 68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.919, 68.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.87, 68.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.679, 68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.508, 68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.514, 67.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 68.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 68.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.026, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.822, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.182, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.853, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.922, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.183, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.25, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.958, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.915, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.97, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.704, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.779, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.824, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.652, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.083, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.306, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.957, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.49, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.439, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.464, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.305, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.409, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.473, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.717, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.696, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.758, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.919, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.929, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.069, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.345, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.462, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.565, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.484, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.67, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.799, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.773, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.992, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.146, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.513, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.776, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.407, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.686, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 71.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 71.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.859, 71.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.053, 71.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 71.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 71.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 71.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 71.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.256, 71.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.336, 70.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.726, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.965, 71.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.008, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 71.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.126, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 71.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17, 71.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 71.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 71.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 71.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 71.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.098, 72.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.136, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.123, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.098, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 72.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.356, 72.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.314, 72.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.378, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 72.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72, 72.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.134, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.789, 72.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 72.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 72.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.475, 72.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.306, 72.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 72.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 72.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 72.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 72.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 72.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 72.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.731, 72.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.137, 72.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.503, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.887, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 72.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 72.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 72.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 72.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 72.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 72.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.117, 72.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 72.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.576, 72.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 72.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.155, 72.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 72.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.527, 72.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.486, 72.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 72.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 72.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.66, 72.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.455, 72.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.887, 72.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.868, 72.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.683, 72.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.736, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.08, 72.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.739, 72.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 72.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 72.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.781, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.511, 72.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.784, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.697, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.747, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.747, 72.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.124, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.961, 72.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.866, 72.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.743, 72.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 72.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.891, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.753, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.809, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.894, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.64, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.815, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.459, 72.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 72.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.37, 72.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 72.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 72.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.581, 72.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.503, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.476, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.802, 72.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.059, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 72.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 72.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 72.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 72.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.925, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.54, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 72.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.439, 72.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 72.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 72.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.063, 72.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 72.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 72.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.808, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.872, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 72.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 72.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.946, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.945, 72.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.867, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 72.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.779, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 72.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.177, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.762, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.912, 71.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.557, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.732, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 71.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.315, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.804, 71.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.86, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.802, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 71.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.465, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.488, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.93, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.197, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.788, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 71.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 71.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 71.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.516, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.284, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 71.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.917, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 72.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.263, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 72.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.239, 72.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.278, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 72.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.902, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.431, 72.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 72.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 72.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 72.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.747, 72.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 72.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.392, 72.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.498, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.606, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.982, 72.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 72.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.182, 72.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.254, 72.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 72.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 72.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.797, 72.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 72.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 72.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 72.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 72.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 72.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.926, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.584, 72.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.835, 72.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 72.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.562, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 72.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.228, 72.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.829, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.167, 72.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.248, 72.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.482, 72.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 72.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 72.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.222, 72.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 72.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 72.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 72.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.156, 72.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.739, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.912, 72.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.345, 72.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 72.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 72.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.335, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 72.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.378, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 72.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.739, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.625, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.155, 71.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.65, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.364, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.502, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.097, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.777, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.792, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.745, 71.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.469, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.795, 71.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.714, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.885, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 71.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.632, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.207, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 72.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.693, 72.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.923, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.932, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 72.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.901, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.888, 71.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.716, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 71.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 71.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 71.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.738, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 71.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.904, 71.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.053, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.849, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.624, 72.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.536, 71.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.684, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.131, 71.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.784, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 71.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.664, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 71.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.784, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.043, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.323, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 71.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.028, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.662, 71.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 71.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.841, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 71.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.575, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.636, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.641, 71.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.702, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.316, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.934, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 71.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 71.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 71.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 71.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 71.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 71.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.128, 71.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 71.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 71.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 71.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 71.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.134, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.862, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 70.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 70.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.649, 70.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 70.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.604, 70.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.587, 70.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 70.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.765, 70.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.467, 70.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.249, 70.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.432, 70.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.553, 70.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 70.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.227, 70.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.259, 70.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.156, 70.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 70.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.992, 70.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.723, 70.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 70.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 70.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.306, 70.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.847, 70.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 70.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.952, 70.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.782, 70.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.785, 70.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.485, 70.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.451, 70.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.435, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.163, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.119, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.133, 70.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.175, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.99, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.891, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.836, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.942, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.745, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.706, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.672, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.433, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.131, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.245, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.474, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.104, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.149, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.851, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.898, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.74, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.706, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.59, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.407, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.717, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.396, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.508, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.291, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.286, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.434, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.287, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.457, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.888, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.384, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.209, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.167, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.093, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.969, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.469, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.055, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.016, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.259, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.905, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.494, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.205, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.622, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.666, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.836, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.954, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.967, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.872, 69.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.744, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.738, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.858, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.318, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.407, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.846, 70.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.965, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.359, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.502, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.658, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.133, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.909, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.875, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.345, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.348, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.326, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.47, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.222, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.302, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.929, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.718, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.767, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42, 68.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.654, 69.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.011, 68.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.301, 68.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.082, 68.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.272, 68.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.096, 68.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.467, 68.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.518, 68.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.622, 68.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.631, 68.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.862, 68.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.968, 68.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.211, 68.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.093, 68.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.235, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.519, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.886, 69.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.054, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.793, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.323, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.359, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.387, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.533, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.886, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.96, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.074, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.343, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.094, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.093, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.095, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 69.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.969, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.113, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.218, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.139, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.188, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.217, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.193, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 70.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.426, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.37, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 70.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.432, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.148, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.249, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.273, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 70.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.248, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 70.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.301, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.222, 70.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 70.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.225, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.135, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 70.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.241, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.395, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.395, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.295, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.002, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.959, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.949, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.986, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.191, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.271, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.744, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.715, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.604, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.987, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.824, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 70.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.846, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.838, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.139, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.159, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.931, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.889, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.196, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.235, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.191, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.355, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.349, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.001, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 69.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.822, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.067, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.952, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.705, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.138, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.867, 69.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.047, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.916, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.809, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.774, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.978, 69.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.682, 69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.664, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 69.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.888, 69.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.726, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.213, 68.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.843, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.633, 69.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.952, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.834, 69.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.828, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 69.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81, 69.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 69.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.715, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.894, 69.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.82, 69.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.328, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.402, 68.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 69.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.555, 69.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.113, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.99, 69.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.661, 68.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.036, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.926, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.977, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.059, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.987, 68.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.021, 69.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.709, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.827, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 69.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.891, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.333, 69.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.437, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.453, 75.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 69.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 69.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.992, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.949, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.783, 69.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.605, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.54, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.481, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.567, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.525, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.305, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.434, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.148, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.271, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.242, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.617, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.287, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.729, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.737, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.852, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.982, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.994, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.832, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.775, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.832, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.186, 69.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.809, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.712, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.822, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.735, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.973, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.775, 69.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.809, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.75, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.759, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.421, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.527, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.763, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.134, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.689, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.658, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.835, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.819, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.041, 69.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.926, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1, 69.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.802, 69.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.954, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.874, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.233, 69.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.866, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.043, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.206, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.346, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.482, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.738, 72.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.819, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.152, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.827, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.782, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.112, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.108, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.705, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.899, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.81, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.783, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.807, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.886, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.776, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.827, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 70.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.73, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.983, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.478, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.626, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.804, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.445, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.961, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.372, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.451, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.531, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.437, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.602, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.519, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.422, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.473, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.442, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.818, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.489, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.451, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.386, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.403, 70.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.236, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.286, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.205, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -40.185, 79.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.161, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.058, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.998, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.014, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.409, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.63, 70.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.507, 70.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.617, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.86, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.137, 70.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 70.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.992, 70.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 70.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 70.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.587, 70.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.63, 70.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.119, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 70.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.664, 69.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 70.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.369, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.362, 70.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 70.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 70.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.448, 70.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 70.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 70.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.273, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 70.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.278, 70.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.316, 70.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 70.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.859, 70.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.79, 70.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 70.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.672, 70.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 70.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 70.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.731, 70.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 70.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 70.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.063, 70.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.754, 70.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.959, 70.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 70.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 70.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 70.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 70.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.91, 70.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 70.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 70.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 70.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.054, 70.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 70.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 70.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.087, 70.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 70.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 70.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 70.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 70.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.087, 70.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 70.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 70.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 70.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 71.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95, 70.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 70.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 70.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 71.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.629, 71.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.545, 71.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 71.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 71.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 71.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 71.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.183, 71.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 71.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 71.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 71.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.131, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.188, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.456, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.369, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.475, 71.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.601, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.601, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.56, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.663, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.602, 71.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.654, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.494, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.559, 71.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 71.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 71.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.437, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.673, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.57, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 71.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.763, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 71.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 71.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 71.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.742, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.973, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.978, 71.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.159, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.963, 71.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.551, 71.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 71.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.341, 71.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 71.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 71.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.029, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.093, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.117, 71.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.112, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 71.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 71.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 71.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.332, 71.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 71.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 71.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.543, 71.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.673, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.352, 71.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.135, 71.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.126, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.188, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.034, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.13, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.089, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.012, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.031, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.035, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.953, 72.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.009, 72.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94, 72.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.759, 72.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.767, 72.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.731, 72.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.585, 72.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.556, 72.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.599, 72.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.482, 72.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36, 72.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.349, 73.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.341, 73.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.333, 73.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.608, 73.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.987, 72.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.637, 73.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.613, 73.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.022, 73.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.019, 73.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.154, 73.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.835, 73.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.132, 73.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.457, 73.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.751, 73.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.093, 73.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.038, 73.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.865, 73.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.65, 73.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.754, 73.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.334, 73.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.653, 73.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.808, 73.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.488, 73.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.485, 73.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.108, 73.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.128, 73.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.955, 73.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.185, 73.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.789, 73.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.506, 73.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.488, 73.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.059, 73.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.997, 73.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.468, 73.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.283, 73.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.212, 73.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.887, 73.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.689, 73.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.438, 73.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.22, 73.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.358, 73.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.329, 73.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.217, 73.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.152, 73.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.144, 73.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.932, 73.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.902, 73.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.601, 72.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.509, 72.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.548, 72.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.578, 72.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.427, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.807, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.715, 71.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.229, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.275, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.068, 71.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.473, 71.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.31, 71.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.816, 71.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.923, 70.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.023, 70.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.923, 70.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.873, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.74, 70.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.746, 70.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.631, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.606, 70.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.556, 70.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.536, 70.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.395, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.229, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.028, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.122, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.045, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.011, 68.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.51, 68.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.64, 68.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.426, 68.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.062, 67.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.011, 67.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.128, 68.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.13, 67.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.984, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.745, 68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.254, 67.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.176, 67.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.057, 67.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.922, 68.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.064, 67.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.014, 67.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.004, 68.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.495, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.081, 68.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.154, 68.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.301, 67.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.23, 67.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.385, 67.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.59, 67.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.222, 67.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.387, 67.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.385, 67.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.298, 67.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.571, 67.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.431, 67.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.382, 67.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.019, 68.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.138, 68.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.02, 68.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.211, 68.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.22, 67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.407, 67.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.394, 67.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.243, 67.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.581, 67.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.429, 67.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.121, 68.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.376, 67.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.546, 67.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.314, 67.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.117, 67.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.059, 67.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.195, 68.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.201, 67.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.806, 67.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.175, 67.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.844, 68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.257, 67.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.23, 67.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.25, 67.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.304, 67.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.296, 67.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.22, 67.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.315, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.497, 67.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.409, 67.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.357, 67.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.386, 67.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.172, 68.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.275, 67.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.296, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.338, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.282, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.165, 67.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.131, 67.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.09, 67.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.121, 67.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.973, 67.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.639, 66.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.235, 66.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.213, 66.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.326, 66.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.914, 66.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.39, 66.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.654, 64.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.74, 64.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.88, 64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.931, 64.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.944, 64.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.862, 64.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.923, 64.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.925, 64.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.842, 64.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.817, 64.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.804, 64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.232, 64.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.179, 64.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.161, 64.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.979, 63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.019, 63.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.495, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.967, 63.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.938, 63.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.967, 63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.909, 63.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.128, 63.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.436, 63.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.742, 63.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.434, 63.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.274, 63.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.17, 63.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.09, 64.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.178, 64.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.205, 64.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.094, 64.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.934, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.189, 64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.06, 64.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.966, 64.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -59.704, 63.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.362, 64.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.321, 64.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.396, 64.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.332, 64.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.316, 64.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.531, 63.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.587, 63.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.885, 63.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.961, 63.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.324, 63.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.545, 63.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.543, 63.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.405, 63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.753, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.799, 63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 63.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.556, 63.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.8, 63.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.901, 63.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.794, 63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.786, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.796, 63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.713, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.754, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.814, 63.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.785, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.73, 63.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.682, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.719, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.732, 63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.503, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.448, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.4, 62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.368, 62.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.351, 62.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.275, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.355, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.196, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.278, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.245, 62.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.014, 62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.01, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.2, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.316, 62.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.245, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.804, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.176, 62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.277, 62.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.336, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.765, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.689, 63.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.722, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.752, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.672, 63.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.069, 62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.136, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.039, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.154, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.19, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.425, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.683, 62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.7, 62.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.704, 62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.101, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.104, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.768, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.852, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.827, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.419, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.791, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.869, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.753, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.791, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.795, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.714, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.78, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.743, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.798, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.243, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.823, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.119, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.029, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.098, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.123, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.485, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.499, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.489, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.542, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.549, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.449, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.536, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.531, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.481, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.071, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.763, 62.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.774, 62.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.638, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.456, 62.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.552, 62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.891, 62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.615, 62.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.59, 62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.612, 62.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.581, 62.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.607, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.122, 62.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.432, 62.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.82, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.697, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.732, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.571, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.782, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.515, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.49, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.168, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.449, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.85, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.527, 62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.662, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.727, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.351, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.378, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.24, 62.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.177, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.943, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.037, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.84, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.929, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.411, 62.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.96, 62.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.833, 62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.731, 62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.377, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.839, 62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.857, 62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.38, 62.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.43, 63.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.374, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.201, 62.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.025, 62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.96, 62.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.776, 62.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.311, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.277, 62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.912, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.274, 62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.476, 62.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.268, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.829, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.811, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.744, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.876, 62.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.815, 62.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.022, 62.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.3, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.573, 69.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -157.861, 84.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.508, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.884, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.814, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 69.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.009, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.945, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.981, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.186, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.32, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.311, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.37, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.401, 69.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.405, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.779, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.201, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.901, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.945, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.786, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.034, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.18, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.3, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.895, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.476, 69.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.784, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.299, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.795, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.053, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.043, 70.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.311, 70.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.494, 70.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 70.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.757, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.242, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 71.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.401, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.431, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 71.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.613, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.679, 71.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 72.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 72.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 72.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.526, 72.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.725, 72.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 72.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 72.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 72.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 72.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.47, 72.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 72.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 72.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 72.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 72.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 72.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 72.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 72.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 72.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.777, 72.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.277, 73.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.157, 72.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.895, 72.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 72.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.627, 72.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.418, 72.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.28, 72.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.765, 72.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.82, 72.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 72.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.949, 72.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 72.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.245, 72.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.047, 72.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 72.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 72.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 72.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 72.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 72.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 72.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.141, 72.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.931, 72.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.174, 69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.164, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.039, 68.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.047, 68.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.024, 68.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 68.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.095, 68.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.093, 68.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 68.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 68.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.072, 68.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 68.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 68.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.116, 68.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 68.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.129, 68.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 68.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.143, 68.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 68.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 68.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.394, 68.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 68.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.904, 68.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.233, 68.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 68.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 68.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 68.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.266, 68.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 68.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 68.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 68.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 68.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.046, 68.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 68.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.113, 68.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.469, 68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.316, 68.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.494, 68.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.074, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.489, 67.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.566, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 67.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 68.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.693, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.657, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 67.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.702, 67.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 67.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 67.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.764, 67.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.602, 67.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 68.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.844, 67.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 67.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.729, 67.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.958, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.275, 68.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.295, 68.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.688, 68.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.596, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.786, 67.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.608, 67.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 67.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 67.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.977, 68.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 68.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.732, 68.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.821, 67.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.76, 67.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.862, 67.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.775, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.006, 67.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.778, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 68.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.014, 68.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.896, 67.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.952, 67.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 67.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 67.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.158, 67.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.011, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.154, 67.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.93, 67.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.947, 67.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 67.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 67.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.958, 67.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.098, 67.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.942, 67.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.018, 67.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 68.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.992, 67.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 67.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.135, 67.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.745, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.984, 67.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 67.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.454, 67.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.4, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.342, 67.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 67.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.987, 67.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 67.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -36.752, 75.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.708, 68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.304, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.186, 67.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 67.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 67.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.217, 67.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 67.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.043, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.146, 67.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.104, 67.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 67.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 67.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 67.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.008, 67.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 67.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.165, 67.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.919, 67.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 67.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 67.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.922, 67.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.33, 67.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.783, 67.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.853, 67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 67.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.611, 67.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.856, 67.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.965, 67.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.923, 67.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.977, 67.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.985, 67.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 67.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.917, 67.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.853, 67.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.851, 67.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 67.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.285, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.86, 67.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.005, 67.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.974, 67.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 67.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 67.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.93, 67.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 67.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.849, 67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.587, 67.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.504, 67.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.311, 67.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.312, 67.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.851, 67.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.545, 67.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.117, 67.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.442, 67.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.768, 66.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.894, 67.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.478, 67.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.438, 67.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.592, 67.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.59, 67.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 67.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.478, 67.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 67.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.488, 67.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.34, 67.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 67.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 67.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 67.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.572, 67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.651, 67.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.472, 67.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.568, 67.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.62, 67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.647, 67.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.598, 67.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.595, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 67.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.511, 67.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.43, 67.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 67.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 67.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.185, 67.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.534, 67.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.743, 67.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 67.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.368, 67.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.402, 67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 67.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.485, 67.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.628, 67.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.373, 67.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.366, 67.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 67.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.627, 67.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.95, 67.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.378, 67.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.402, 67.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.54, 67.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.645, 67.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.514, 67.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.615, 67.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.407, 67.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 67.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.504, 67.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.503, 67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.313, 67.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 67.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.386, 67.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 67.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.516, 67.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.504, 67.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.431, 67.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.665, 67.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 67.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.75, 67.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.641, 67.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.743, 67.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 67.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.611, 67.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.627, 67.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.638, 67.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.634, 67.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.564, 67.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.581, 67.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.199, 67.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.408, 67.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.296, 67.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.492, 67.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.789, 67.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.685, 67.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.421, 67.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.604, 67.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.536, 67.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.63, 67.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.498, 67.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.816, 67.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.379, 67.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 67.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 67.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.649, 67.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.694, 67.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 67.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.691, 67.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.831, 67.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.031, 67.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.702, 67.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.426, 67.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.489, 67.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 67.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.093, 67.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.087, 67.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.362, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.191, 67.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.699, 67.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.298, 67.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.627, 67.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 67.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.655, 67.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.798, 67.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.258, 67.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.714, 67.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.556, 67.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.5, 67.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.58, 67.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.526, 67.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.525, 67.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.593, 67.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.644, 67.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.664, 67.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.781, 67.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.617, 66.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.643, 67.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.273, 67.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.284, 67.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.548, 66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.374, 66.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.56, 66.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.909, 66.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.715, 66.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.518, 66.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 66.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.446, 66.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.209, 66.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.792, 66.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.778, 66.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 66.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.436, 66.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.565, 66.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.636, 66.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.612, 66.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.724, 66.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.715, 66.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.718, 66.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 67.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.887, 66.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.058, 67.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.008, 67.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.449, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.285, 67.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.204, 67.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.587, 66.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.515, 67.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.391, 67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.577, 67.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.75, 67.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.576, 67.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.672, 67.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.99, 67.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.721, 67.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.592, 67.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.631, 67.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.706, 67.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.988, 66.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.689, 67.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.766, 67.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.558, 66.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.831, 67.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.782, 67.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.719, 67.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.619, 67.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.761, 67.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.629, 67.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.563, 67.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.585, 67.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.557, 67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.594, 67.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.574, 67.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.623, 67.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 67.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.932, 67.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.532, 66.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.638, 67.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.555, 67.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.614, 67.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 67.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.65, 67.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.585, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.576, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.417, 67.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.632, 67.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.617, 67.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.684, 67.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.597, 67.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.573, 67.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.972, 67.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.565, 67.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.535, 67.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.646, 67.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.509, 67.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.572, 67.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.192, 67.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.158, 67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.61, 67.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.845, 66.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.748, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.851, 67.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 66.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.885, 67.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.495, 67.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.299, 67.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.568, 67.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.727, 67.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.019, 67.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.868, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.606, 67.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.436, 67.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.815, 67.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.18, 67.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.353, 67.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.399, 66.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.545, 67.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.62, 67.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.126, 67.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.07, 67.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.268, 67.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.242, 66.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 66.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.792, 66.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.978, 68.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.629, 67.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.942, 66.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.127, 67.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 66.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 67.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.223, 66.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.894, 66.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.306, 66.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.757, 66.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.437, 67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.326, 67.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.385, 67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.411, 67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.419, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.088, 67.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.464, 67.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.409, 67.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.35, 67.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 67.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.334, 67.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.532, 67.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.269, 67.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.716, 67.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.192, 67.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.349, 67.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 67.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.451, 67.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.526, 67.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.527, 67.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.392, 67.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.359, 67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.979, 67.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.407, 67.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.418, 67.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.426, 67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.381, 67.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.355, 67.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.332, 67.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.213, 67.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.347, 67.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.725, 67.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.331, 67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.37, 67.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.286, 67.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.298, 67.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.149, 67.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.369, 67.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.393, 67.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.449, 67.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.394, 67.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.245, 67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.705, 67.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.483, 67.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.522, 67.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.528, 67.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.507, 67.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.44, 67.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.691, 67.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.424, 67.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.726, 67.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.079, 67.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.988, 67.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.741, 67.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.844, 67.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.682, 67.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.626, 67.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.585, 67.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.705, 67.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.055, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.853, 67.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.651, 67.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.75, 67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.654, 67.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.684, 67.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.79, 67.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.581, 67.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.496, 67.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.617, 67.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.617, 67.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.647, 67.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.607, 67.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.589, 67.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.668, 67.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.575, 67.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.867, 67.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.657, 67.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.782, 67.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.686, 67.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.342, 67.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.705, 67.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.63, 67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.57, 67.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.603, 67.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.635, 67.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.603, 67.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 67.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.605, 67.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.586, 67.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.405, 67.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.722, 67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 67.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -30.343, 66.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.685, 67.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.773, 67.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.53, 67.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.971, 67.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 67.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.535, 67.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.125, 67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.034, 67.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.241, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.094, 67.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.969, 67.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.07, 67.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.162, 67.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.118, 67.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.032, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 67.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.116, 67.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 67.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.515, 67.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.331, 67.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.165, 67.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.551, 67.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.349, 67.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.209, 67.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.115, 67.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.043, 67.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.118, 67.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 67.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.273, 67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 67.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.22, 67.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.173, 67.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.077, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.076, 67.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.07, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.079, 67.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.036, 67.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.089, 67.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.179, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.104, 67.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.137, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.122, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.147, 67.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.984, 67.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.089, 67.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.072, 67.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.976, 67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.103, 67.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.139, 67.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.297, 67.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.21, 67.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.513, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.199, 67.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.187, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.207, 67.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.043, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.049, 67.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.16, 67.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.096, 67.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.23, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 67.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.058, 67.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.996, 67.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.95, 67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.938, 67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.715, 67.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 67.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.873, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.813, 67.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.871, 67.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.178, 67.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.841, 67.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.24, 67.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.09, 67.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.897, 67.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.908, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.552, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.01, 67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.836, 67.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.764, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.801, 67.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.834, 67.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.76, 67.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.676, 67.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.835, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.934, 67.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.717, 67.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.28, 67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.823, 67.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.805, 67.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.837, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.109, 67.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.643, 67.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.565, 67.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.857, 67.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.9, 67.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.847, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.983, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.955, 67.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.911, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.869, 67.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.01, 67.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.948, 67.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.979, 67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.926, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.939, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.911, 67.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.876, 67.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.929, 67.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.861, 67.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.891, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.877, 67.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.789, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.677, 67.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.11, 68.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.814, 67.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.795, 67.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 67.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.821, 67.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.008, 67.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.987, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.004, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.001, 67.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.972, 67.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.04, 67.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.992, 67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.0, 67.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.783, 67.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.042, 67.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.995, 67.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.863, 67.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.938, 67.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.964, 67.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.893, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.952, 67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.794, 67.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.821, 67.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.825, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.875, 67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.758, 67.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.821, 67.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.96, 67.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.945, 67.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 67.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.031, 67.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.044, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.997, 67.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.014, 67.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.051, 67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.919, 67.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.493, 67.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.766, 67.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.888, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.977, 67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.971, 67.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 67.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.177, 67.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.061, 67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.035, 67.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.068, 67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.988, 67.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.958, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.01, 67.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.756, 67.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.809, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.851, 67.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.03, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.848, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 67.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.9, 67.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.869, 67.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.865, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.732, 67.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.92, 67.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.695, 67.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.874, 67.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.852, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.885, 67.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.945, 67.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.775, 67.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.711, 67.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.94, 67.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.943, 67.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.013, 67.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.994, 67.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.965, 67.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.91, 67.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.963, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.02, 67.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.211, 67.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.709, 67.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.417, 67.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.349, 67.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.526, 67.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.554, 67.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.664, 67.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.783, 67.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.292, 67.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 67.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.051, 67.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.691, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.055, 67.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.141, 67.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.039, 67.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.027, 67.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.003, 67.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.984, 67.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.992, 67.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.004, 67.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.107, 67.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.112, 67.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.164, 67.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.157, 67.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.182, 67.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.317, 67.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.156, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.146, 67.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.289, 67.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.147, 67.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.169, 67.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.186, 67.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.202, 67.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.242, 67.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.322, 67.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.321, 67.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 67.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.409, 67.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.426, 67.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.547, 68.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 67.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 67.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.235, 67.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.333, 67.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.335, 67.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.38, 67.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 67.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.354, 67.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.35, 67.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 67.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.424, 67.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.396, 67.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.453, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.996, 68.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.589, 67.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.218, 68.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.479, 67.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.454, 67.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.577, 67.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.483, 68.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.345, 68.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 68.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.168, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 68.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.339, 68.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.408, 68.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.344, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.266, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.276, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.278, 67.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.056, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.347, 67.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 67.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.952, 68.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.358, 68.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.421, 68.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.4, 68.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.399, 68.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.479, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.341, 68.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 68.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.443, 68.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.402, 68.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.409, 68.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.394, 68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.436, 68.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 68.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 68.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 68.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.425, 68.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.51, 68.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.411, 68.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.381, 68.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 68.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.244, 68.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.159, 68.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.205, 68.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.29, 68.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.155, 68.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.073, 68.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.008, 68.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.603, 69.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.299, 69.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.26, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.29, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.43, 69.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.097, 69.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.965, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.953, 69.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.451, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.886, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 69.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.814, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.703, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.73, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.65, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.502, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.515, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.38, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.351, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.171, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.112, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.94, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.973, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.74, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.727, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.912, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.935, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.685, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.264, 69.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.782, 69.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.091, 69.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.072, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.323, 69.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.111, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.952, 68.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.084, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.113, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.12, 69.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.1, 69.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.991, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.078, 69.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.12, 69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.879, 68.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.137, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.911, 68.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.159, 69.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.147, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.189, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.044, 68.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.144, 69.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.105, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.091, 69.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.135, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.076, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.206, 69.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.152, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.08, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.084, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.097, 69.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.118, 69.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.116, 69.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.119, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.123, 69.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.133, 69.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.67, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.079, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.096, 69.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.15, 69.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.135, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.084, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.123, 69.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.118, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.13, 69.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.085, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.915, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.903, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.418, 69.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.108, 69.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.024, 68.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.959, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.989, 69.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.048, 69.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.058, 69.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.145, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.807, 69.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.893, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.135, 68.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.088, 68.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.027, 68.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.019, 69.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.036, 69.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.998, 68.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.002, 68.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.033, 68.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.858, 68.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.96, 68.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.946, 68.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.107, 68.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.914, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.651, 68.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.973, 69.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.038, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.982, 68.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.051, 68.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.055, 69.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.015, 69.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.924, 69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.708, 69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.05, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.683, 69.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.646, 69.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.619, 68.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.73, 68.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.198, 69.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.885, 68.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.824, 68.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.915, 68.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.688, 68.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.342, 68.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.768, 68.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.728, 68.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.276, 68.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.685, 68.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.712, 68.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.653, 68.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.639, 68.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.475, 68.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.683, 68.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.807, 68.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.401, 68.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.967, 68.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.021, 68.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.022, 68.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.007, 68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 68.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.228, 68.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.098, 68.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 68.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.855, 68.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.067, 68.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -139.795, 58.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.029, 68.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 68.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.258, 68.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.254, 68.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.208, 69.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.105, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.004, 69.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.095, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.965, 69.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.868, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.977, 69.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.09, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.216, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.006, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.991, 69.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.105, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.179, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.984, 69.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.026, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.982, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.038, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.703, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.693, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.258, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.742, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.378, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.505, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.004, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.896, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.061, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.022, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.151, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.731, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.85, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.999, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.786, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.984, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.809, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.725, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.9, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.628, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.275, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.315, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.131, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.325, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.156, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.006, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.797, 69.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.859, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.897, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.007, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 69.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.075, 69.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.991, 69.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.059, 69.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.705, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.318, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.433, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.995, 67.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.668, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 69.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.318, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.372, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.377, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.461, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.267, 69.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.225, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.46, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.388, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.527, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.653, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.163, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.054, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.723, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.853, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.29, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.352, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.997, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.325, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.827, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.619, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.565, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.612, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.614, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.656, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.064, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.607, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.294, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 69.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.901, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.984, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.306, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.324, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.501, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.188, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.435, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.896, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.81, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.984, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.032, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.908, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.886, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.678, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.735, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.706, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.752, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.843, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.82, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.84, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.797, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.755, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.754, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.361, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.745, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.775, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.727, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.665, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.25, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.211, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.2, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.193, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.682, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.623, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.388, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.416, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.495, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.503, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.509, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.465, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.504, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.569, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.673, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.053, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.414, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.501, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.151, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.424, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.591, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.396, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.513, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.306, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.58, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.572, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.945, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.399, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.495, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.434, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.518, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.238, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.188, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.214, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.633, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.663, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.37, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.223, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.929, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.409, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.085, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.989, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.359, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.912, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.943, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.987, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.132, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.044, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.194, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.97, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.738, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.911, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.573, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.104, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.236, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.259, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.033, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.142, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.804, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.78, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.966, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.209, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.106, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.284, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.315, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.222, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.071, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.244, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.986, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.933, 69.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.968, 69.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.394, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.8, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.618, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.475, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.489, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.555, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.507, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.547, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.545, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.793, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.553, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.891, 69.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.871, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.887, 69.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.85, 69.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.959, 68.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.992, 68.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.982, 68.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.033, 68.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.987, 68.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.902, 68.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.896, 68.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.964, 68.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.171, 68.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.042, 68.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.013, 68.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.953, 68.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.817, 68.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 68.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.731, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.775, 68.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 68.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.178, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.277, 67.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.342, 67.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.415, 67.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.368, 67.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.533, 68.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 67.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 68.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 67.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.51, 67.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.382, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.394, 67.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.34, 67.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.657, 67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.499, 67.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.385, 67.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.244, 67.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.397, 67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.375, 67.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.406, 67.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.4, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 67.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.368, 67.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.315, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.273, 67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.286, 67.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 67.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 67.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.232, 67.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 67.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.326, 67.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 67.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.2, 67.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.19, 67.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.288, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.233, 67.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.305, 67.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 67.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 67.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.264, 67.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.273, 67.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.296, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.303, 67.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.381, 67.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.378, 67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.317, 67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 67.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.32, 67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.236, 67.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 67.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.269, 67.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.321, 67.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.298, 67.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 67.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.093, 67.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.303, 67.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.223, 67.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.437, 67.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.292, 67.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.316, 67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.27, 67.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 67.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.993, 67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 67.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.029, 67.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.062, 67.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.997, 67.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.031, 67.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.618, 67.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.194, 67.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.323, 67.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.272, 67.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.951, 67.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 67.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.516, 67.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.142, 67.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 67.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.996, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 67.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.124, 67.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 67.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.602, 67.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.564, 67.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.917, 67.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 67.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 67.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.04, 67.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.009, 67.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.97, 67.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.564, 67.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.609, 67.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.279, 67.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 67.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.942, 67.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.393, 67.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.871, 67.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.076, 67.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.943, 66.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 66.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 66.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 66.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.964, 66.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.978, 66.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.027, 66.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 65.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.976, 65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.3, 66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.346, 65.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.55, 65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.826, 65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.76, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.397, 66.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.132, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.601, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.589, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.706, 67.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.961, 65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.382, 64.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.716, 65.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.523, 66.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.259, 66.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.166, 65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.172, 65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.146, 65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.751, 65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.546, 65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.579, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.001, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.108, 65.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.129, 65.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.105, 65.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.045, 65.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.017, 65.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.985, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.987, 65.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.813, 65.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.79, 65.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.605, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.417, 65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.44, 65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.639, 65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.794, 65.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.371, 65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.685, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.844, 65.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.788, 65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.87, 65.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.926, 65.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.157, 65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.874, 65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.82, 65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.943, 65.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.357, 65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.649, 66.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.467, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.586, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.49, 66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.417, 65.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.585, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.665, 66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.815, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.525, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.676, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.596, 65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.367, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.698, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.455, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.937, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.578, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.677, 66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.906, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.628, 66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.224, 65.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.021, 65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.216, 65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.19, 65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.129, 65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.766, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.905, 65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.793, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.68, 65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.857, 65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.802, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.835, 65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.732, 65.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.093, 65.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.022, 65.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.991, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.924, 65.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.853, 65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.96, 65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.953, 65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.956, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.939, 65.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.85, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.816, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.759, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 66.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.885, 66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.764, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.745, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.721, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.656, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.574, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.663, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.628, 65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.885, 65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.817, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.724, 65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.546, 65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.501, 65.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.415, 65.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.16, 64.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.467, 65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.547, 65.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.467, 64.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.375, 65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.37, 64.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.24, 64.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.588, 64.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.421, 64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.404, 64.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.155, 64.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.904, 64.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.924, 64.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.549, 64.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.051, 64.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.26, 64.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.263, 64.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.24, 64.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.209, 64.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.256, 64.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.185, 64.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.99, 64.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.194, 64.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.148, 64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.301, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.208, 64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.572, 64.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.431, 64.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.351, 64.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.735, 63.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.668, 63.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.844, 63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.566, 63.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.608, 63.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.617, 63.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.696, 63.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.447, 63.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.398, 63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.295, 63.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.309, 63.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.474, 63.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.28, 63.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.21, 63.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.205, 63.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.144, 63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.785, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.804, 62.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.845, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.628, 62.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.638, 62.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.307, 62.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.46, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.422, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.513, 62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.377, 62.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.264, 62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.348, 62.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.515, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.386, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.581, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.342, 62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.242, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.878, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.092, 62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.231, 63.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.062, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.392, 63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.503, 62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.496, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.467, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.525, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.397, 62.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.417, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.003, 61.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.877, 63.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.674, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.324, 62.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.739, 63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.596, 63.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.142, 62.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.981, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.386, 63.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.639, 63.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.952, 63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.751, 63.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.189, 63.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.612, 63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.599, 63.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.123, 62.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.761, 63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.425, 63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.543, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.973, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.975, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.055, 63.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.478, 63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.187, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.189, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.282, 62.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.662, 63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.768, 63.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.801, 63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.984, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.875, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.893, 63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.881, 63.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.739, 63.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.811, 63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.858, 63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.262, 63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.661, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.864, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.827, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.375, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.685, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.977, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.424, 62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.409, 62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.494, 62.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.996, 62.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.983, 62.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.818, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.648, 62.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.817, 62.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.691, 62.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.52, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.526, 62.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.537, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.343, 62.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.46, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.314, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.05, 62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.483, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.661, 62.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.448, 62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.466, 62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.595, 62.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.598, 62.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.654, 62.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.631, 62.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.047, 61.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.436, 62.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.471, 62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.168, 62.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.552, 61.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.621, 61.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.671, 61.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.502, 61.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.187, 61.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.3, 61.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.692, 61.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.883, 61.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.306, 61.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.656, 61.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.824, 61.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.892, 61.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.094, 62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.326, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.557, 62.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.499, 62.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.555, 62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.43, 62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.134, 62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.919, 62.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.54, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.581, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.57, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.579, 62.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.573, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.592, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.564, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.929, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.817, 62.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.841, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.816, 62.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.5, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.928, 62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.974, 62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.84, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.775, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.61, 62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.653, 62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.754, 62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.826, 62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.898, 62.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.687, 62.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.836, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.711, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.07, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.783, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.844, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.871, 62.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.458, 62.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.732, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.385, 62.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.768, 62.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.45, 62.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.795, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.809, 62.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.881, 62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.531, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.98, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.002, 62.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.982, 62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.005, 62.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.059, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.751, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.023, 62.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.804, 62.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.843, 62.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.857, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.59, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.43, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.355, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.584, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.713, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.607, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.881, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.874, 62.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.536, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.497, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.86, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.734, 62.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.709, 62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.726, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.926, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.886, 63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.984, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.408, 63.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.166, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.957, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.052, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.863, 62.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.975, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.889, 62.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.793, 62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.687, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.882, 62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.864, 62.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.998, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.961, 62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.993, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.974, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.899, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.321, 62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.216, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.169, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.537, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.269, 62.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.099, 62.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.626, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.852, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.109, 62.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.055, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.777, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.565, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.877, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.322, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.46, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.497, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.556, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.144, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.704, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.402, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.34, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.622, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.638, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.216, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.98, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.273, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.999, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.561, 62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.668, 62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.144, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.092, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.048, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.997, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.028, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.949, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.925, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.935, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.824, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.902, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.923, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.929, 62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.756, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.971, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.394, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.332, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.41, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.31, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.33, 62.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.223, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.3, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.368, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.436, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.366, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.114, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.199, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.292, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.793, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.972, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.1, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.925, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.875, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.888, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.765, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.853, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.784, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.824, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.988, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.637, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.711, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.61, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.34, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.245, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.66, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.546, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.206, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.38, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.742, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.512, 62.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.419, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.049, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.221, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.314, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.802, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.817, 62.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.61, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.34, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.064, 62.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.765, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.408, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.634, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.98, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.847, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.785, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.854, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.767, 62.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.982, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.803, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.896, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.481, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.859, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.739, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.94, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.158, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.804, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.772, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.493, 62.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.907, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.908, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.869, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.056, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.889, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.813, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.22, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.822, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.762, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.868, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.884, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.868, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.907, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.971, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.163, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.126, 62.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.085, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.875, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.866, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.938, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.799, 62.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.8, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.619, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.689, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.802, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.735, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.818, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.634, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.745, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.604, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.973, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.013, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.028, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.725, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.529, 62.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.571, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.502, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.465, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.452, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.889, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.032, 62.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.77, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.74, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.887, 62.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.771, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.667, 62.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.038, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.406, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.362, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.151, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.192, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.176, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.458, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.468, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.468, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.436, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.413, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.401, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.497, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.176, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.17, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.216, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.489, 62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.319, 62.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.636, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 62.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.98, 62.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.948, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.117, 62.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.432, 62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.502, 62.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.501, 62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.002, 62.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.189, 62.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.255, 61.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.496, 63.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.668, 61.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.579, 61.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.582, 61.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.626, 61.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.359, 61.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.438, 61.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.399, 61.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.373, 61.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 61.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 61.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.225, 61.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 61.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 62.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.178, 67.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.989, 67.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 67.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.81, 68.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 68.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.953, 68.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.779, 69.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.748, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.171, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.503, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.655, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.464, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.535, 69.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.619, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.657, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.611, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.691, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.08, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.998, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.901, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.731, 68.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.331, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.918, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.121, 69.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.655, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.801, 68.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.716, 68.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.553, 68.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.892, 67.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.808, 68.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 67.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.372, 67.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.496, 67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.51, 67.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.476, 67.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.413, 67.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.342, 67.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.713, 67.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.805, 67.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -31.356, 77.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.11, 67.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.922, 67.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.946, 67.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.957, 67.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.102, 67.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.181, 67.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.63, 67.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.59, 67.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.133, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.834, 67.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 67.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.051, 67.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.209, 67.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.953, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.095, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.02, 67.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.868, 67.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.774, 67.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.84, 67.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.737, 67.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.796, 67.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.341, 67.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.558, 68.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.776, 67.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.897, 67.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.369, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.618, 67.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.727, 67.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.487, 67.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.134, 66.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.479, 66.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.506, 66.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.957, 66.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.835, 66.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.364, 66.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.752, 66.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.85, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.755, 66.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.861, 66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.836, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.855, 66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.826, 65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.056, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.165, 65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.302, 65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.416, 65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.212, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.561, 67.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.597, 67.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.38, 67.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.502, 67.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.386, 67.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.449, 67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.407, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.509, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.562, 67.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.432, 67.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.647, 67.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.515, 67.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.568, 67.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.52, 67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.453, 67.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.302, 67.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.336, 67.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.383, 67.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.401, 67.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.765, 67.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.598, 67.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.583, 67.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.471, 67.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.301, 67.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.495, 67.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.388, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.342, 67.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.372, 67.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.742, 67.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.756, 67.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.46, 67.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.486, 67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.264, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.557, 67.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 67.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.552, 67.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.442, 67.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.44, 67.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.858, 67.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.486, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.492, 67.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.431, 67.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 67.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.243, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.263, 67.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.265, 67.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.111, 67.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.288, 67.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.097, 67.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.608, 67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.433, 67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.447, 67.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.565, 67.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.733, 67.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.394, 67.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.162, 67.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.167, 67.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.836, 67.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.555, 67.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.469, 67.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.844, 67.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.144, 67.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.456, 67.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.408, 67.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.441, 67.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.379, 67.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.44, 67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.541, 67.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.495, 67.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.536, 67.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.428, 67.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.554, 67.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.778, 67.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.509, 67.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.573, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.431, 67.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.627, 67.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.551, 67.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.58, 67.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.093, 67.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.688, 67.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.577, 67.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.877, 68.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.759, 68.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.59, 67.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.372, 67.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.213, 67.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.527, 67.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.575, 67.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.88, 67.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.07, 67.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.648, 67.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.558, 67.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.694, 68.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.544, 68.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.35, 67.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.201, 68.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.499, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.367, 68.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.646, 68.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.613, 68.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.578, 68.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.565, 67.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.716, 67.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.686, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.715, 68.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.874, 68.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.33, 68.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.866, 68.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.759, 68.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.741, 68.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.717, 68.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.647, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.695, 68.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.897, 67.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.604, 68.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 68.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.677, 68.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.761, 68.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.777, 68.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.836, 68.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.837, 68.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.973, 68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.679, 68.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.907, 68.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.882, 68.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.997, 68.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.726, 68.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.877, 68.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.81, 68.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.88, 67.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.072, 68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.326, 68.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.722, 68.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.935, 67.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.895, 67.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.379, 68.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.889, 68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.746, 68.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.805, 68.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 68.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.901, 68.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.941, 68.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.91, 68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.003, 68.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.451, 68.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.194, 68.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.177, 68.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.359, 68.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.357, 68.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.466, 68.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.496, 68.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.427, 68.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.312, 68.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.3, 68.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.327, 68.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.387, 68.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.389, 68.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.249, 68.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.62, 68.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 68.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 68.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 68.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.774, 68.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.716, 68.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 68.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.757, 68.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.771, 68.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 68.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.796, 68.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.889, 68.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 68.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 68.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.862, 68.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.979, 68.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.826, 68.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.894, 68.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.655, 68.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.625, 68.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.651, 68.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.581, 68.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 68.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 68.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.16, 68.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.243, 68.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.814, 68.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.846, 68.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.359, 68.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.33, 68.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.3, 68.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.428, 68.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.344, 68.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.344, 68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.254, 68.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.265, 68.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.162, 68.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.059, 68.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.964, 68.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.216, 68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.811, 68.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.763, 68.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.832, 68.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.854, 68.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.686, 68.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.491, 68.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.021, 68.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.08, 68.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.82, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 69.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.184, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.201, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.768, 68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.722, 68.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.113, 68.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.791, 68.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.296, 68.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.521, 68.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.18, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.289, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.069, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.877, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.888, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.984, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.881, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.014, 69.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.903, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.09, 69.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.919, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.943, 69.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.993, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.041, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.985, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.002, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.89, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.921, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.697, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.919, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.998, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.872, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.83, 69.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.952, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.914, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.081, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.088, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.721, 69.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.785, 68.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.653, 68.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.959, 68.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.056, 68.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 68.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.271, 68.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.472, 68.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.384, 68.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.355, 68.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 68.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.74, 67.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 67.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.495, 67.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.474, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.574, 67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.499, 67.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.52, 67.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.612, 67.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.99, 68.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 68.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 68.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.893, 68.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.753, 68.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 68.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 68.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.589, 50.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 68.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.989, 68.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.051, 68.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.631, 68.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.827, 68.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.017, 68.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 68.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.912, 68.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.912, 68.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.754, 68.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.689, 68.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.989, 68.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.129, 68.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.898, 68.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.281, 68.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 68.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.485, 68.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 68.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.931, 68.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 68.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 68.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.802, 68.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.03, 68.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.415, 68.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.306, 68.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 68.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 68.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.978, 68.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 68.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.818, 68.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.172, 68.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 68.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.059, 68.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.255, 68.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 68.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 68.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.542, 68.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.594, 68.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.846, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 68.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.597, 68.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.975, 68.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -7.024, 80.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 68.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.429, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.633, 67.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.566, 68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.829, 68.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.802, 68.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.616, 67.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.179, 67.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.965, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.166, 67.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.67, 68.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.252, 67.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.526, 66.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.954, 66.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.705, 66.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.696, 66.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.73, 66.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.612, 66.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.721, 66.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.711, 66.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.686, 66.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.0, 66.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.083, 66.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 66.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.866, 66.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.559, 66.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.688, 66.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.77, 66.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 65.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.863, 66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.777, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.735, 65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.463, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.538, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.469, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.362, 65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.388, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.356, 66.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.337, 65.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.349, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.409, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.365, 66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.28, 66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.602, 65.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 65.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.558, 65.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.515, 65.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.462, 65.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.448, 64.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.189, 64.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.141, 64.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.212, 64.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 64.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.683, 64.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.165, 64.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.625, 63.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.503, 63.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.855, 63.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.486, 63.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.551, 63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.131, 63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.141, 63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.382, 63.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.755, 63.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.819, 63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 63.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.573, 63.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.385, 63.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.235, 63.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.216, 63.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.029, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.861, 63.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.846, 63.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.167, 64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.576, 63.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.688, 63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.897, 64.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.025, 63.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.978, 63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.853, 63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.745, 64.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.077, 64.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.567, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.435, 62.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.243, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.595, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.759, 62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.992, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.818, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.744, 62.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.941, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.002, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.837, 62.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.588, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.59, 62.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.644, 62.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.435, 62.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.506, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.67, 62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.106, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.16, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.533, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.028, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.995, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.817, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.577, 62.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.664, 62.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.786, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.585, 62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.662, 62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.003, 62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.571, 62.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.587, 62.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.599, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.813, 62.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.032, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.523, 62.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.19, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.024, 63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.931, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.067, 63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.104, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.478, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.547, 63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.638, 63.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.778, 63.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.303, 64.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.798, 63.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.982, 63.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.552, 63.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.223, 63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.284, 63.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.09, 63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.058, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.091, 63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.273, 63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.256, 63.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.442, 63.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.295, 62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.687, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.443, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.511, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.258, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.926, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.95, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.06, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.939, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.079, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.01, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.505, 62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.157, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.998, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.987, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.891, 62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.675, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.314, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.81, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.784, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.681, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.98, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.224, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.666, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.054, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.915, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.95, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.846, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.907, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.901, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.912, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.659, 62.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.564, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.028, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.029, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.088, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.196, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.046, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.117, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.226, 62.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.104, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.272, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.852, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.932, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.912, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.779, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.776, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.742, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.753, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.711, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.644, 62.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.776, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.781, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -141.796, 73.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.624, 62.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.637, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.591, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.468, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.288, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.788, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.291, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.033, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.476, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.73, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.935, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.923, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.695, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.728, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.901, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.481, 62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.258, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.536, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.645, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.959, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.909, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.977, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.118, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.998, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.88, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.757, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.745, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 62.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.851, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.866, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.893, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.819, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.86, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.954, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.975, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.876, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.908, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.872, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.728, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.77, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.639, 62.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.694, 62.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.808, 62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.763, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.746, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.961, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.9, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.04, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.886, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.963, 62.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.032, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.919, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.877, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.471, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.476, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.046, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.957, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.827, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.67, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.834, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.955, 62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.83, 62.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.762, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.795, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.827, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.829, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.83, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.668, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.802, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.805, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.726, 62.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.834, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.672, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.788, 62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.197, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.146, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.792, 62.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.471, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.51, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.935, 62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.777, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.661, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.135, 62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.854, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.926, 62.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.776, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.471, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.561, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.752, 62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.588, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.534, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.709, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.578, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.094, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.756, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.648, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.737, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.553, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.576, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.363, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.979, 62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.117, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.077, 62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.256, 62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.325, 62.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.266, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.73, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.337, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.327, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.152, 62.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.113, 62.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.973, 62.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.059, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.008, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.93, 62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.308, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.431, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.478, 62.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.123, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.878, 62.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.011, 62.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.362, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.438, 62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.637, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.689, 62.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.632, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.699, 62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.121, 62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.777, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 62.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.901, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.746, 62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.657, 62.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.167, 62.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.113, 62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 63.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.093, 63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.865, 63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.009, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.969, 62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.035, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 61.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.846, 61.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 61.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.002, 61.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 61.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.06, 61.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 61.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.322, 61.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.395, 61.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.831, 61.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.872, 61.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.962, 61.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.896, 61.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.921, 61.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.939, 61.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.983, 61.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.445, 61.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.491, 61.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.678, 61.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.657, 61.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.583, 61.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.694, 61.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.95, 61.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.1, 61.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.99, 61.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.019, 61.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.005, 61.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.967, 61.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.87, 61.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.952, 61.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.917, 61.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.207, 61.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.703, 61.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.828, 61.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.91, 61.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.067, 61.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.109, 61.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.971, 61.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.84, 61.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.88, 61.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.368, 60.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.237, 61.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.846, 60.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.952, 60.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.359, 60.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.37, 60.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.359, 60.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.357, 60.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.916, 60.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.987, 60.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.902, 60.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.045, 60.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.779, 60.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.601, 60.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.614, 60.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.492, 60.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.206, 60.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.136, 60.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.101, 60.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.304, 60.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.374, 60.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.359, 60.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.624, 60.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.792, 60.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.845, 60.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.8, 60.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.78, 60.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.889, 60.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.02, 60.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.385, 60.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.136, 60.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.046, 60.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.398, 60.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.488, 60.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.701, 60.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.72, 60.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.819, 60.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.731, 60.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.914, 60.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.613, 60.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.324, 60.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.398, 60.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.382, 60.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.316, 60.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.267, 60.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.229, 60.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.216, 60.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.214, 60.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.266, 60.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.303, 60.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.582, 60.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.557, 60.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.634, 60.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.671, 60.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.626, 60.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.711, 60.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.922, 60.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.956, 60.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.917, 61.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.912, 61.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.762, 61.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.767, 61.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.736, 61.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.697, 61.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.685, 61.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.709, 61.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.761, 61.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.717, 61.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.746, 61.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.733, 61.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.852, 61.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.648, 61.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.728, 61.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.744, 61.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.655, 61.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.682, 61.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.724, 61.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.656, 61.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.71, 61.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.622, 61.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.432, 61.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.353, 61.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.287, 61.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.466, 61.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.108, 61.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.275, 61.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.997, 61.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.573, 61.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.515, 61.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.304, 61.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.586, 61.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.522, 61.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.456, 61.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.662, 61.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.482, 61.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.962, 61.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.786, 61.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.702, 62.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.41, 62.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.365, 62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.332, 62.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.181, 62.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.128, 62.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.908, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.869, 62.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.812, 62.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.667, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.398, 62.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.367, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.332, 62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.32, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.171, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.094, 62.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.104, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.045, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.843, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.651, 62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.694, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.721, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.613, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.703, 62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.549, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.475, 62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.361, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.326, 62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.294, 62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.17, 62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.994, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.108, 62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.1, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.182, 62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.191, 62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.265, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.275, 62.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.385, 62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.199, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.217, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.14, 62.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.063, 62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.052, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.071, 62.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.553, 62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.115, 62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.05, 62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.237, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.04, 62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.84, 62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.856, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.857, 62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.827, 62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.777, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.595, 62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.79, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.713, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.843, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.706, 62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.568, 62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.607, 62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.526, 62.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.595, 62.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.594, 62.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.586, 62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.74, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.509, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.453, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.345, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.492, 62.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.324, 62.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.283, 62.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.306, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.234, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.25, 62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.229, 62.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.144, 62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.106, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.075, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.944, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.03, 62.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.416, 62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.035, 62.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.931, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.898, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.959, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.954, 62.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.099, 62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.031, 62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.997, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.139, 62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.053, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.996, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.929, 62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.421, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.409, 62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.468, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.638, 62.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.509, 62.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.501, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.514, 62.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.51, 62.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.949, 62.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.506, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.381, 62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.505, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.518, 62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.566, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.419, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.485, 62.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.404, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.511, 63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.321, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.254, 62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.417, 62.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.377, 62.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.066, 63.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.174, 63.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.255, 63.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.528, 63.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.404, 63.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.254, 63.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.436, 63.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.497, 63.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 63.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.386, 64.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.49, 64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.546, 64.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.467, 64.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.716, 64.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 64.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 69.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.176, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 68.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.93, 68.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 68.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.383, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 68.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 68.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 68.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.962, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 68.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.006, 68.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 68.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 68.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.103, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.233, 68.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.142, 68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 68.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 68.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 68.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 68.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.209, 68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.242, 68.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.09, 68.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.194, 68.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.446, 68.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 68.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.314, 68.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.436, 69.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.292, 69.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.296, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 68.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.918, 68.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.872, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.617, 66.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.068, 69.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.053, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.227, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.934, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.922, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.921, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.932, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.052, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.572, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.009, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.383, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.428, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.365, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.278, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.501, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.505, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.362, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.391, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.195, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.395, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.479, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.335, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.451, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.645, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.8, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.877, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.492, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.087, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.021, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.127, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.99, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.39, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.381, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.612, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.659, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.689, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.392, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.33, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.361, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.627, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.077, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.988, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.033, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.421, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.252, 70.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.724, 70.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.778, 70.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 71.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.342, 73.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.051, 71.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 71.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 71.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 71.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.483, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.412, 71.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.511, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 71.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.527, 71.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 71.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 71.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 71.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.719, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 71.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 71.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 71.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 71.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.677, 71.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.496, 71.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 71.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.726, 71.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 71.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.951, 71.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.588, 70.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 71.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 71.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 71.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 71.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 71.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.054, 71.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 71.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 71.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.198, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.135, 71.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 71.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.898, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 71.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 71.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 71.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 71.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 71.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 71.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 71.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.211, 71.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 71.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 71.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.342, 71.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.406, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 71.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.613, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.521, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.88, 71.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.493, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.386, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.567, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 72.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.246, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.831, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.978, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 72.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.696, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 72.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.141, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.081, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.189, 72.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.406, 72.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 72.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.437, 72.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.491, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.497, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 72.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.453, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.237, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.196, 72.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.257, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.216, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 72.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 72.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.274, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.285, 72.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.936, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.316, 72.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 72.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 72.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.133, 72.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.081, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 72.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.172, 72.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 72.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.206, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.168, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.137, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 72.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 72.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 72.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.565, 72.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 72.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 72.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 72.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.431, 72.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.968, 72.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 72.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 72.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.051, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.271, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.595, 72.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.362, 72.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.502, 72.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 72.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.362, 72.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.798, 72.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 72.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 72.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.604, 72.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 72.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.944, 72.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 72.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 72.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 72.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 72.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 72.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.004, 72.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 72.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 72.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 72.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.768, 72.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.999, 72.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 72.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.976, 72.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 72.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 72.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.249, 72.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.754, 72.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 72.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 72.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 72.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 72.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.953, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.351, 72.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.718, 72.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 72.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.436, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 72.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 72.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 72.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.308, 72.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.83, 72.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.941, 72.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.752, 72.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.716, 72.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.694, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.844, 72.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.739, 72.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.756, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.719, 72.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.167, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.945, 72.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 72.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.1, 72.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.097, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.372, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.278, 72.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.303, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.495, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.523, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.541, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.706, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.79, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.035, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.105, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.16, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.008, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.968, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.256, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.813, 71.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.819, 71.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.369, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.246, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.209, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.202, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.223, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.18, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.171, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.088, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.863, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.912, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.067, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.931, 72.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.907, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.988, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.883, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.016, 72.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.961, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.288, 72.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.685, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.958, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.678, 72.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.529, 72.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 72.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 72.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.421, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.417, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 72.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.514, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.405, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.464, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 72.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.494, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.531, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.146, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.382, 72.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.583, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.887, 72.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.051, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 72.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 72.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.949, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 72.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.064, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.933, 72.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.93, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.713, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.8, 72.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 72.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.966, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.994, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 72.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.684, 72.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 71.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.234, 71.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.86, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.654, 71.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.112, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 72.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.175, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.984, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.078, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.135, 71.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.13, 71.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.117, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.286, 71.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.131, 71.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 71.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.651, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.078, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.202, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.241, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.157, 71.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 71.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.061, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.044, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.875, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.883, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.316, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.837, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.701, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 71.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.727, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.83, 71.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.876, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.86, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.807, 71.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.842, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.792, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.795, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 71.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.945, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.957, 71.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.015, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.941, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.886, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.923, 71.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.927, 71.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.779, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.758, 71.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.683, 71.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.674, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.663, 71.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.635, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.631, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.629, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.577, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.686, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.663, 71.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.662, 71.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.509, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.709, 71.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.489, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.358, 71.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.57, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.606, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.64, 71.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.624, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.205, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.651, 71.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.631, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.637, 71.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.276, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.824, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.664, 71.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.756, 71.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.403, 71.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.659, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.726, 71.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.718, 71.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 71.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.688, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.67, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.664, 71.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.666, 71.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 71.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.736, 71.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.711, 71.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.617, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.637, 71.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.535, 71.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.426, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.612, 71.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.585, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.656, 71.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.63, 71.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.763, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.697, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.57, 71.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.767, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.667, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.626, 71.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.652, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.361, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.686, 71.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.644, 71.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.682, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.671, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.738, 71.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.708, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.681, 71.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.679, 71.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.724, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.679, 71.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.467, 72.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 71.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.14, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.47, 71.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.079, 71.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.056, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.142, 71.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.676, 71.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.786, 71.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 71.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.902, 71.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.901, 71.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 71.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 71.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 71.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.25, 71.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.891, 71.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.927, 71.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.776, 71.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.641, 71.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.533, 71.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.151, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.278, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.336, 71.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.281, 71.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.751, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96, 71.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.726, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.692, 71.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.379, 70.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.975, 71.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.343, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.51, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 71.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.933, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.428, 71.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.948, 71.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.455, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.763, 71.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.636, 71.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.894, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.882, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 70.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.989, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 70.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.235, 70.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.119, 71.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.247, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.216, 70.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.192, 70.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.176, 70.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.233, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.299, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.209, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.309, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 70.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.14, 70.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 70.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.879, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.349, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.189, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 70.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.362, 70.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 70.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 70.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 70.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 70.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.718, 70.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.575, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.769, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 70.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.866, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.583, 70.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.211, 70.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 70.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.759, 70.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 70.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 70.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.714, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.808, 70.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 70.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.845, 70.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.651, 70.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 70.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 70.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 70.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 70.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 70.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 70.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 70.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.816, 70.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 70.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.825, 70.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 70.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 70.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 70.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.394, 70.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.57, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 71.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 71.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.748, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 71.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 71.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.885, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 71.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 71.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 71.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.716, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 71.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 71.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.515, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.687, 71.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 71.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.751, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.542, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.677, 71.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 71.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.555, 71.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.748, 71.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.588, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 71.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 71.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 71.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 71.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.688, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 71.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.933, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.606, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.593, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 71.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.706, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.697, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.764, 71.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.728, 71.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.734, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.712, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 71.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.735, 71.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 71.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.906, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 71.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 71.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 71.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 71.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 71.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.952, 71.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 71.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 71.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.015, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 71.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.787, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 71.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.522, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.75, 71.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.711, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.852, 71.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.679, 71.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.423, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 71.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.578, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 71.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.593, 71.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.597, 71.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.621, 71.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.746, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 71.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 71.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.587, 71.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.356, 71.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 71.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.341, 71.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 71.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 71.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 71.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.457, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.726, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.514, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 71.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 71.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.452, 71.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.305, 71.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.132, 71.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.364, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.142, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.719, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.464, 71.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.177, 71.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.085, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 71.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.349, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 71.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.041, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.108, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.149, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 71.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.208, 71.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 71.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.743, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.84, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.763, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.016, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.169, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.322, 71.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.354, 71.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.551, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.311, 72.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 71.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 71.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.533, 71.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 71.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.579, 71.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 71.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.717, 71.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.679, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.683, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.504, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.687, 71.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.013, 71.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 71.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.708, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 71.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.697, 71.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.728, 71.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 71.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 71.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.066, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.765, 71.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.394, 71.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 71.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 71.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.408, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 71.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 71.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.779, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 71.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 71.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.533, 71.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.251, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.567, 71.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 71.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 71.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.514, 71.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 71.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.762, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.686, 71.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.571, 70.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.54, 70.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 71.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.927, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.562, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 70.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 70.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.438, 70.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 70.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 70.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 70.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 70.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.134, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.123, 70.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 69.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.809, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.478, 70.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.846, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.698, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.776, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.196, 70.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.936, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.737, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.891, 70.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.614, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.488, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.222, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.037, 70.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.803, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.674, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.695, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.693, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.907, 70.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.888, 70.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.222, 70.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.733, 70.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.688, 70.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.221, 70.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.293, 70.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.309, 70.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.502, 71.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.39, 71.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.575, 71.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.751, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.531, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 71.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 70.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.015, 70.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 70.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 70.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 70.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 70.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.441, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.713, 70.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.581, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.723, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.745, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.222, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.151, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.241, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.286, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.344, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.295, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.434, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.524, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.343, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.278, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.253, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.192, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.457, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.165, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.437, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.536, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.39, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.401, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.399, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.341, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.236, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.131, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.018, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.138, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.729, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.083, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.579, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.807, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.844, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.874, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.822, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.893, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.899, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.902, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.872, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.869, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.914, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.951, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.861, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.935, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.879, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.928, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.935, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.139, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.016, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.944, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.187, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.246, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.165, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.874, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.045, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.91, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.731, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.78, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.797, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.78, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.841, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.764, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.417, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.251, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.618, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.56, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.306, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.632, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.431, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.817, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.358, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.368, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.443, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.631, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.112, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.386, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.492, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.438, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.252, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.314, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.261, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.184, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.151, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.133, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.093, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.249, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.088, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.091, 69.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.106, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.139, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.086, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.672, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.093, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.107, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.063, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.005, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.038, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.145, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.156, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.18, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.176, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.088, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 69.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.961, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.059, 69.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.189, 69.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.065, 69.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.021, 69.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.089, 69.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.139, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.025, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.036, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.904, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.093, 69.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.976, 69.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.667, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.826, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.633, 69.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.636, 69.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.633, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.436, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.369, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.294, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.292, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.292, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.266, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.012, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.298, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.251, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.181, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.833, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.947, 69.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.905, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.899, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.811, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.835, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.733, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.438, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.105, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5, 69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48, 69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.477, 69.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.395, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.444, 68.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.426, 69.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.445, 69.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.686, 68.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.878, 69.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.196, 68.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.01, 69.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.283, 68.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.295, 68.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25, 68.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.084, 69.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.187, 68.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.394, 69.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.436, 68.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.371, 69.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.545, 68.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.459, 69.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.405, 68.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.332, 68.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.319, 68.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.311, 68.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.294, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.333, 68.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.287, 68.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.262, 68.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.287, 68.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.242, 68.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.392, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.371, 68.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.335, 68.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.818, 68.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33, 68.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.297, 68.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.025, 68.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.024, 68.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.081, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.315, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.251, 68.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.521, 69.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.425, 69.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.539, 68.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.639, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.563, 69.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 69.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.538, 69.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.586, 69.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.401, 69.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.398, 69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.424, 68.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.318, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.337, 68.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.217, 68.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25, 68.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.201, 68.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29, 68.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.336, 68.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.425, 68.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.336, 68.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.386, 68.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.325, 68.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.242, 68.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.197, 68.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.229, 68.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.261, 68.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.251, 68.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.264, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.353, 68.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.342, 69.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.332, 68.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.204, 68.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.366, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.379, 68.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.346, 69.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.403, 69.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.358, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.326, 68.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.397, 68.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.409, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.478, 68.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.495, 69.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.337, 68.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.672, 68.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.426, 68.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.371, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.359, 69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.303, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.191, 68.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.299, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.322, 68.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.413, 68.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.383, 68.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6, 68.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.509, 69.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.406, 69.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.401, 69.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.411, 69.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.296, 68.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.412, 68.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.341, 68.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.297, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.263, 68.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.236, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.97, 68.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.305, 68.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.433, 68.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.263, 68.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.264, 68.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.257, 68.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.271, 68.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.972, 69.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.365, 68.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.327, 68.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.331, 68.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.301, 68.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.31, 68.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.157, 68.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.105, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.084, 68.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.113, 68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.183, 68.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.223, 68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.283, 68.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.287, 68.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.232, 68.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.097, 68.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.085, 68.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.061, 68.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.228, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.113, 68.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.045, 68.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.055, 68.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.654, 68.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.93, 68.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.002, 68.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.004, 68.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.087, 68.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.841, 68.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.826, 68.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.961, 68.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.061, 68.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.036, 68.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.032, 68.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.065, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.063, 68.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.081, 68.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.091, 68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.064, 68.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.043, 68.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.11, 68.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.931, 68.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.027, 68.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05, 68.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.678, 68.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.046, 68.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.239, 68.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.133, 68.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.173, 68.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.064, 68.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03, 68.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.131, 68.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.983, 68.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.026, 68.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.036, 68.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.117, 68.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.047, 68.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.055, 68.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.018, 68.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.041, 68.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04, 68.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.017, 68.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.614, 68.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.002, 68.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.965, 68.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.987, 68.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.023, 68.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.998, 68.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.003, 68.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.017, 68.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.008, 68.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.066, 68.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.058, 68.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.046, 68.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.052, 68.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.057, 68.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.008, 68.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02, 68.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.044, 68.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.004, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.975, 68.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.031, 68.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.039, 68.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.071, 68.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.059, 68.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.116, 68.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.104, 68.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.093, 68.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.312, 69.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.068, 68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.987, 68.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.089, 68.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.066, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.129, 68.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12, 68.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.075, 68.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 68.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.084, 68.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.077, 68.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.055, 68.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.019, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.115, 68.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03, 68.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.952, 68.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.004, 68.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.997, 68.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.063, 68.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.064, 68.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13, 68.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13, 68.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.204, 68.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.145, 68.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.223, 68.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.262, 68.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.207, 68.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.188, 68.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.223, 68.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.274, 68.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24, 68.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15, 68.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17, 68.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.147, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.432, 68.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.304, 68.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.319, 68.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29, 69.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.512, 69.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.773, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.889, 68.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.646, 69.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.489, 69.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.573, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61, 69.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.704, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.612, 69.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.757, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.143, 69.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.581, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.631, 69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.534, 69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.604, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.637, 69.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.719, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.654, 69.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.711, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.652, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.694, 69.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.641, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.833, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.682, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69, 69.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.703, 69.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.716, 69.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.158, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.723, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.887, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.036, 68.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.137, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.776, 69.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.753, 69.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.803, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.718, 69.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.698, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.859, 69.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.808, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.746, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.869, 69.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.873, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.846, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.811, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.856, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.878, 69.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.767, 69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.619, 69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.781, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.726, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.764, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.782, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.709, 69.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.719, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.673, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.725, 69.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.797, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.615, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65, 69.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.717, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.776, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.742, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.494, 68.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.814, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.736, 69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.712, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59, 69.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67, 69.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.751, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.686, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.764, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.766, 69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.796, 69.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.762, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.744, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.663, 69.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.729, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.107, 69.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.717, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.916, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.714, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.437, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75, 69.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.689, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.774, 69.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.802, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.664, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.747, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.722, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92, 69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.649, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.698, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.655, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.746, 69.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.719, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.748, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.574, 69.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.741, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.656, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.709, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.741, 69.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.601, 69.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.976, 68.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.708, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.685, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.728, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.658, 69.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.557, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.507, 69.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.447, 68.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.439, 68.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.434, 69.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.088, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.11, 69.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.329, 69.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.928, 69.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.962, 69.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.856, 69.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.859, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.585, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.591, 69.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.24, 69.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.265, 69.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.355, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.367, 69.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.912, 69.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.409, 69.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.203, 69.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.767, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.419, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.436, 69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.28, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.217, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.145, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77, 69.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.69, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.684, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.69, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.519, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.545, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.487, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.261, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.153, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.959, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.936, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.929, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.298, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.657, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.839, 69.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.288, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.064, 69.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.528, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.335, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.516, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.183, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.788, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.15, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.204, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.965, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.96, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.872, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.938, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.908, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.79, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.742, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.518, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.767, 69.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.157, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.88, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.502, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.882, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.723, 69.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.783, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.823, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.796, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.803, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.538, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.626, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.398, 69.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.422, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.347, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.808, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.722, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.511, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.565, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.85, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.752, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.122, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.699, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.294, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.144, 69.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.655, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.899, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.949, 69.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.838, 68.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.859, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.943, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.649, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.941, 69.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.928, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.09, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.932, 68.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.961, 68.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.966, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.334, 68.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.922, 68.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.888, 68.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.737, 68.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.051, 68.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.164, 67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.033, 67.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.659, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.104, 68.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.003, 68.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 68.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.519, 68.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.364, 68.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.112, 68.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 68.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 68.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.34, 68.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.121, 68.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.413, 68.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 68.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 68.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.317, 68.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.291, 68.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.382, 68.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.18, 68.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.394, 68.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 68.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.194, 68.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 68.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.425, 68.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.423, 68.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.277, 68.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 68.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.448, 68.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.342, 68.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.38, 68.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.51, 68.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.428, 68.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.353, 68.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.325, 68.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.332, 68.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.228, 68.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.238, 68.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.229, 68.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.489, 68.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.368, 68.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.257, 68.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.279, 68.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 68.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 68.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 68.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.524, 68.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.517, 68.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.516, 68.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.505, 68.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.528, 68.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 68.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 68.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.458, 68.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.553, 68.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.46, 68.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.471, 68.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.602, 68.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.576, 68.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.617, 68.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.778, 68.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.44, 68.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.429, 68.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.464, 68.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.471, 68.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.443, 68.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.314, 68.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.364, 68.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.208, 68.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.35, 68.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.175, 68.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.355, 68.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 68.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 68.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.469, 68.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 68.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 68.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 68.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 68.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 68.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 68.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 68.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.437, 68.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.399, 68.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.347, 68.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 68.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.421, 68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 67.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.268, 67.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.394, 67.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 67.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.342, 67.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 67.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.216, 67.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.276, 67.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.072, 67.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 67.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.064, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.665, 67.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.088, 67.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.119, 67.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 67.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 67.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.115, 67.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.143, 67.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.06, 67.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.38, 67.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 67.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.921, 67.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.04, 67.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.554, 67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.57, 68.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.225, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 67.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.899, 67.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.836, 67.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 67.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.998, 67.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.405, 67.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.565, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.283, 67.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.035, 67.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.278, 67.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.632, 67.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 67.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 67.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.305, 67.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.188, 67.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.247, 67.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.018, 67.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 67.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.195, 67.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 67.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 67.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.406, 67.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.421, 67.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.085, 67.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.032, 67.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.113, 67.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.105, 67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 67.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.115, 67.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.388, 67.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.062, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 67.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 67.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 67.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 67.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.145, 67.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.187, 67.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 68.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.933, 67.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.272, 67.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.149, 67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 67.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.261, 67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 67.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 67.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.095, 67.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 67.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.989, 67.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.272, 67.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.176, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.175, 67.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 67.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.284, 67.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 67.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.603, 67.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 67.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.448, 67.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.751, 67.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.554, 67.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.756, 67.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.635, 67.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.594, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 67.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.611, 67.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 67.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.708, 67.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.648, 67.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.723, 67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.656, 65.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 65.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.759, 65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.002, 65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.08, 65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.011, 65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.816, 65.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.452, 66.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.46, 66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.536, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.556, 66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 66.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.887, 66.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.027, 66.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.81, 66.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.599, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.693, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.621, 66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.584, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.645, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.696, 65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.733, 65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.94, 65.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.245, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.664, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.933, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.718, 66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.695, 66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.518, 66.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.239, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.652, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.56, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.779, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.693, 66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.765, 66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.717, 66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.685, 66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.539, 66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.753, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.871, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 27.186, 82.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.863, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.524, 66.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.867, 66.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.902, 66.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.344, 66.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.713, 66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.815, 66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.859, 65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.817, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.767, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.849, 66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.761, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.812, 66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.729, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.845, 65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.833, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.825, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.82, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.816, 65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.945, 66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.626, 65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.677, 65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 65.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.788, 65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.507, 65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 65.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.624, 65.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.928, 65.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.678, 65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 65.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.898, 65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.526, 65.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.542, 65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.594, 65.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.672, 65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.642, 65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.606, 65.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.6, 65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 64.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.649, 65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.636, 65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.591, 65.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.652, 65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.671, 64.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.108, 64.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.049, 64.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.044, 64.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.856, 64.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.826, 64.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.707, 64.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.696, 64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.565, 64.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.57, 64.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.588, 64.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.012, 64.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.478, 64.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.424, 64.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.888, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 63.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.927, 63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.722, 63.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.972, 63.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.231, 63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 63.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.988, 63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.516, 63.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.936, 63.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.996, 63.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.847, 63.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.709, 63.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.668, 64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.841, 63.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.686, 63.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.736, 63.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.743, 63.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.751, 63.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.851, 63.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 63.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.938, 63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.976, 63.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.855, 63.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.872, 63.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.89, 63.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.862, 63.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.9, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.92, 63.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.883, 63.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.19, 64.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.939, 63.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.899, 63.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.914, 63.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.902, 63.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.917, 63.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.881, 63.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.937, 63.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.653, 63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.612, 63.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.098, 63.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.833, 63.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.677, 63.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.799, 63.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.689, 63.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.856, 63.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.636, 63.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.569, 63.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.035, 63.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.866, 63.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.893, 63.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.993, 63.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.777, 63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.851, 63.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.818, 63.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.795, 63.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.045, 63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.722, 63.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.886, 63.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.7, 63.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.965, 63.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.077, 63.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.861, 63.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.836, 63.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.802, 63.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.816, 63.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.817, 63.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.725, 63.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.813, 63.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.841, 63.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.927, 63.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.899, 63.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.728, 63.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.679, 63.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.14, 63.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.714, 63.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.688, 63.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.153, 63.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.492, 63.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.82, 64.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.588, 64.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.46, 64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.229, 64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.293, 64.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.334, 64.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.492, 64.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.174, 63.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.153, 64.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.165, 63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.296, 63.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.31, 64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.18, 64.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.31, 64.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.145, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.16, 63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.09, 63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.374, 63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.446, 64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.202, 64.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.044, 63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.051, 63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.79, 63.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.951, 63.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.748, 63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.9, 63.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.801, 63.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.153, 63.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.639, 63.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.932, 63.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.353, 63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.634, 63.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.546, 63.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.536, 63.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.658, 63.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.843, 63.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.638, 63.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.517, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.552, 63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.557, 63.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.514, 63.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.669, 63.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.581, 63.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.573, 63.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.582, 63.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.607, 63.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.038, 63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.472, 63.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.571, 63.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.548, 63.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.668, 63.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.627, 63.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.632, 63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.105, 63.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.205, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.908, 63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.99, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.93, 63.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.802, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.944, 63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.158, 63.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.236, 63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.089, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.26, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.297, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.684, 63.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.21, 62.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.154, 63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.181, 62.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.084, 63.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.974, 62.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.802, 62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.811, 62.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.647, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.681, 62.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.685, 62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.556, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.817, 62.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.809, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.758, 62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.802, 62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.136, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.406, 62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.562, 62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.661, 62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.671, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.475, 62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.319, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.566, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.389, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.362, 62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.151, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.13, 62.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.882, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.065, 62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.974, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.983, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.105, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.065, 62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.826, 62.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.832, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.779, 62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.902, 62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.972, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.872, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.745, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.902, 62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.928, 62.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.936, 62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.907, 62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.942, 62.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.933, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.93, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.611, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.921, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.949, 62.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.148, 62.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.953, 62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.924, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.938, 62.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.822, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.661, 62.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.199, 62.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.636, 62.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.696, 62.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.687, 62.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.728, 62.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.621, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.812, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.555, 62.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.935, 62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.07, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.725, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.951, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.902, 62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.802, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.862, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.873, 62.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.619, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.505, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.251, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.695, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.659, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.71, 62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.673, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.711, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.744, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.816, 62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.892, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.853, 62.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.85, 62.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.882, 62.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.985, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.968, 62.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.013, 62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.972, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.072, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.952, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.814, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.829, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.791, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.741, 62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.832, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.807, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.182, 63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.767, 62.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.666, 62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.665, 62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.645, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.621, 62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.869, 62.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.094, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.261, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.167, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.1, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.116, 63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.868, 62.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.45, 63.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.382, 62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.201, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.303, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.842, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.364, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.424, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.446, 63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.492, 63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.524, 63.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.52, 63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.528, 63.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.62, 63.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.918, 63.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.149, 63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.008, 63.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.527, 63.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.561, 63.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.567, 63.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.868, 63.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.058, 63.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.144, 63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.926, 63.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.278, 63.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.284, 63.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.472, 63.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.495, 63.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.591, 63.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.55, 63.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.532, 63.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.929, 63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.947, 63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.474, 63.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.841, 63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.723, 63.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.829, 63.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.914, 64.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.951, 63.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.94, 64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.102, 63.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.203, 63.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.773, 64.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.041, 63.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.847, 64.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.788, 63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.72, 64.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.983, 63.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.877, 64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.043, 64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.579, 63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.76, 64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.89, 63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.802, 64.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.93, 63.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.991, 63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.93, 63.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.851, 64.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.87, 63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.08, 63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.766, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.633, 62.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.402, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.62, 62.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.528, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.324, 62.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.389, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.361, 62.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.388, 63.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.307, 63.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.366, 63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.504, 63.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.478, 63.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.088, 63.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.69, 63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.02, 63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.837, 63.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.739, 63.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.718, 63.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.798, 63.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.062, 63.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.615, 63.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.621, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.522, 63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.705, 63.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.689, 63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.791, 63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.822, 63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.859, 63.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.85, 63.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.869, 63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.968, 63.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.996, 63.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.99, 63.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.02, 63.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.926, 63.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.997, 63.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.719, 63.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.652, 63.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.54, 63.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.453, 63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.244, 63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.182, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.203, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.231, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.998, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.636, 62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.855, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.712, 62.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.211, 62.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.145, 62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.152, 62.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.175, 62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.193, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.265, 62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.474, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.398, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.577, 63.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.865, 63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.875, 63.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.147, 64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 64.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.053, 64.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.555, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 64.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.096, 64.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.717, 64.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.642, 65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.068, 65.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.446, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.445, 65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.349, 65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.295, 65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 65.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.715, 65.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.66, 65.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.562, 65.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.646, 65.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.995, 70.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.523, 65.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.433, 64.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.109, 64.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 64.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 64.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.798, 64.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.909, 64.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.941, 64.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 64.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.026, 64.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.621, 64.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.742, 64.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.181, 65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.015, 65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.617, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.761, 65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.705, 65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.678, 65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.946, 65.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.091, 65.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.226, 65.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.554, 66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.642, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.611, 66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.614, 66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.894, 66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.193, 66.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.24, 65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.183, 65.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.034, 65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.791, 65.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.288, 65.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.763, 65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.757, 65.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.733, 65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.775, 65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.683, 65.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.615, 65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.656, 65.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.731, 65.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.635, 65.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.551, 65.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.354, 65.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.645, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.758, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.75, 65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.747, 65.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.744, 66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.645, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.784, 66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.359, 66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.414, 66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.436, 66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.459, 66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.767, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.562, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.007, 66.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.912, 66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.394, 65.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.654, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.52, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.096, 65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.126, 65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.291, 65.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.263, 65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.388, 66.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.998, 66.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.03, 66.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.876, 66.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 66.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 67.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.972, 67.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.986, 67.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.189, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 67.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 68.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.428, 68.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.925, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.986, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.317, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.346, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.268, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.457, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.4, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.522, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.385, 69.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.055, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.613, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.868, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.303, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.381, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.299, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.198, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.331, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.902, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.554, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.916, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.952, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.707, 69.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.58, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.665, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.368, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.837, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.479, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.544, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.452, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.474, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.961, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.061, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.096, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.176, 69.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.226, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.25, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.733, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.15, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.487, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.326, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.426, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.263, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.898, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.835, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.834, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.858, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.032, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.313, 69.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.519, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.274, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.323, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.259, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.945, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 69.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.06, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.796, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.472, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.362, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.44, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.454, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.639, 69.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.029, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.972, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.801, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.681, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.675, 69.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.838, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.003, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.127, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.534, 69.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.841, 69.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.126, 69.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.073, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.385, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.479, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.472, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.64, 69.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.727, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.452, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.295, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.012, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.133, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.966, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.177, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.444, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.829, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.692, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.606, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.351, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.675, 70.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.055, 70.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.136, 70.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.634, 70.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.789, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.542, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 71.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.486, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.733, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.844, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.453, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.173, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.727, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.641, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.195, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -37.466, 83.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.175, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 71.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 71.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.638, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.608, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.683, 71.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 71.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 71.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 71.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 71.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.514, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.524, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.411, 72.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.441, 72.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.56, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.094, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.398, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.545, 72.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.598, 72.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.425, 72.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.238, 72.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 73.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.233, 73.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.403, 73.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.713, 72.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.867, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.913, 72.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 72.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 72.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 72.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17, 72.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 72.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.234, 72.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 72.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.155, 72.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 72.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.175, 72.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 72.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 72.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.903, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 72.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.878, 72.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.865, 72.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.828, 72.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.642, 72.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87, 72.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.828, 72.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 72.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.977, 72.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01, 72.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.817, 72.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.811, 72.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.828, 72.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.832, 72.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.69, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 72.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.73, 72.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75, 72.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.751, 72.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.652, 72.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.777, 72.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.709, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.831, 72.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.807, 72.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 72.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.733, 72.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.881, 72.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 72.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.874, 72.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 72.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 72.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.124, 72.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.053, 72.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.764, 72.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.662, 72.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 72.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 72.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 72.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.073, 72.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 72.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.013, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.802, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.167, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.853, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.047, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.527, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.412, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 71.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.606, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 71.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 71.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.138, 71.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.183, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01, 71.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.268, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.259, 71.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.142, 71.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.127, 71.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.369, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 71.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 71.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 71.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 71.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.486, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 71.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 71.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.379, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.444, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 71.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.971, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 71.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.331, 71.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 71.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.551, 71.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.175, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 71.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.218, 71.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.174, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 71.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.027, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.08, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 71.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 71.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 71.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 71.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 71.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.889, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.869, 71.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.706, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 71.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.001, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.011, 71.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 71.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.999, 71.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 71.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 71.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.963, 71.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 71.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.792, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.001, 71.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 71.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.29, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 71.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 71.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.956, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.991, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 71.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 71.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 71.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.968, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.804, 71.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 71.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.903, 71.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.751, 71.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 70.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 70.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.444, 70.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 70.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 70.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 70.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 70.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 70.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 70.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.271, 70.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 70.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 70.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 70.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 70.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 70.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 70.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.657, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.197, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.154, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.09, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 69.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.941, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.852, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.96, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.919, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.921, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.222, 69.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.633, 69.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.474, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.61, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.681, 69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69, 69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.353, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.328, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.344, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.417, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.76, 68.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.295, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.712, 69.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51, 68.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.763, 68.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77, 68.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.372, 68.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.693, 68.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.179, 67.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 68.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.467, 67.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.299, 68.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.209, 68.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.507, 68.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.75, 68.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.881, 68.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05, 68.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.175, 68.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.923, 68.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.974, 68.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27, 68.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.259, 68.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.302, 68.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.093, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.545, 69.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.393, 69.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.405, 68.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.457, 68.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.429, 68.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38, 68.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.336, 68.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.341, 68.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.525, 69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.474, 69.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.596, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.792, 69.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.793, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.066, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.827, 69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.978, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.687, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.708, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.372, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.141, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.315, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.384, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.49, 70.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.555, 70.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.552, 70.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.604, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.81, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.368, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.851, 70.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.408, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.395, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.494, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.305, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.707, 70.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.738, 70.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.704, 70.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.907, 70.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.008, 70.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.085, 70.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13, 70.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22, 70.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.325, 70.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.246, 70.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.363, 70.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.415, 70.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.518, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.569, 70.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.462, 70.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.456, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.431, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.436, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.487, 70.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.386, 70.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.422, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.516, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.509, 70.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.343, 70.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.415, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.452, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.391, 70.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.381, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.456, 70.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.424, 70.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.405, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.669, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.338, 70.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.455, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.348, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.376, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.406, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.398, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47, 70.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.367, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.367, 70.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.086, 70.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.447, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.321, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.273, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.287, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.333, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.321, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.407, 70.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.973, 70.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.352, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.025, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.138, 70.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.405, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.494, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.052, 70.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.264, 70.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.386, 70.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.35, 70.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.373, 70.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.364, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.009, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.454, 70.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.341, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.338, 70.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.374, 70.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.309, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.357, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.502, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.915, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.803, 70.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.657, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.206, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.779, 70.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.539, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.539, 70.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.652, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 71.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.129, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.055, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.384, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 71.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.101, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.093, 71.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.028, 71.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.011, 71.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.619, 71.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.981, 71.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.032, 71.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.084, 71.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.995, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.201, 71.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07, 71.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.041, 71.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.139, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.887, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.996, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.037, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.209, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 72.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 72.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.013, 71.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.891, 72.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.121, 72.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.849, 72.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 72.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 72.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.837, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.617, 72.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.41, 72.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 72.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.989, 72.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 72.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.985, 72.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.023, 71.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.719, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.626, 70.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.415, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.452, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.434, 71.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.433, 71.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.433, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.491, 71.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.501, 71.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.424, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.474, 71.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.413, 71.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.432, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.454, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.372, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.429, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.494, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.393, 71.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.523, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.473, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.518, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.539, 71.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.31, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.386, 71.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.369, 71.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.308, 71.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.278, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.387, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.667, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.481, 71.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.444, 71.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.419, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.547, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.439, 71.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.443, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.413, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.421, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.464, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.529, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.444, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.461, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.368, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.082, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.372, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.465, 71.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.363, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.401, 71.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.501, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.546, 71.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.368, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.441, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.478, 71.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.489, 71.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.485, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.199, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.341, 71.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.385, 71.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.484, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.496, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.462, 71.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.342, 71.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.783, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.416, 71.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.202, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.399, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.578, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.137, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.355, 71.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.995, 71.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 71.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.086, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.701, 71.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.136, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94, 71.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 71.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 71.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.151, 71.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.543, 71.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 71.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.588, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94, 71.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.902, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.395, 70.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.888, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 70.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 70.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.156, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 70.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.891, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 70.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.736, 70.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.867, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.88, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 70.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.755, 70.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 70.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 70.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.099, 70.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.09, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.143, 70.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.98, 70.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.024, 70.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.031, 71.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 71.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 70.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 70.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 70.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 70.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 70.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 70.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.905, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.776, 70.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.758, 70.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 70.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.802, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 71.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.073, 70.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.987, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.973, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.937, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.064, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.985, 71.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.964, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.961, 71.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 71.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 71.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.956, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.956, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.954, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 70.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 71.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.156, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.024, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.004, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 70.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 71.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.102, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 71.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.002, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 70.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 70.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 71.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.934, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.204, 71.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 71.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.531, 71.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.405, 71.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.308, 71.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 71.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.466, 70.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 71.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.359, 71.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 71.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.323, 71.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 71.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.154, 71.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.148, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 71.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 71.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 71.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 71.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.934, 71.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.943, 71.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 71.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.243, 71.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.335, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.764, 70.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.786, 70.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.674, 70.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.495, 70.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.496, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.126, 70.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.831, 70.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.031, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.928, 70.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.462, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.307, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.952, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.866, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.46, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.388, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.796, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.16, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.096, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.882, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.62, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.806, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.123, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.073, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.378, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.628, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.496, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.3, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.146, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.928, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.002, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.949, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.928, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.872, 69.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.74, 68.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.681, 68.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 68.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 68.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.601, 68.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.43, 68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 68.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 68.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.39, 67.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.432, 66.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.447, 66.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.526, 66.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.192, 66.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.395, 66.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.011, 66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.247, 66.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.205, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.042, 66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.408, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.418, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.295, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.377, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.336, 65.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.289, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.334, 66.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.304, 66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.359, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.382, 66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.184, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.394, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.391, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.266, 66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.41, 66.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.433, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.272, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.154, 65.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.972, 65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.8, 65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.131, 65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.845, 64.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 64.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.795, 64.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.902, 64.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.833, 64.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.296, 64.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.614, 64.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.347, 64.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.267, 64.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.9, 64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.75, 64.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.619, 64.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.733, 64.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.958, 63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.829, 63.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.343, 63.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.465, 63.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.277, 63.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.271, 63.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.321, 63.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 63.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.389, 63.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.3, 63.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.235, 63.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.241, 63.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.289, 63.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.399, 63.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.105, 63.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.352, 63.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.394, 63.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.337, 63.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.5, 63.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.488, 63.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.625, 63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.182, 63.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.121, 63.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.218, 63.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.349, 63.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.221, 63.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.446, 63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.068, 63.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.233, 63.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.296, 63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.489, 63.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.527, 63.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.509, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.784, 63.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.447, 63.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.462, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 63.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.472, 63.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.581, 63.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.864, 63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.6, 63.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.859, 63.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.878, 63.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.088, 63.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.952, 63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.032, 63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.097, 63.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.019, 63.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.906, 63.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.776, 63.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.829, 63.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.567, 63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.662, 63.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.313, 63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.802, 63.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.786, 64.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.066, 64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -130.944, 73.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.913, 63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.079, 63.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.043, 63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.685, 63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.761, 63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.822, 63.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.809, 63.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.91, 63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.838, 63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.393, 64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.241, 64.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.162, 64.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.091, 64.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.15, 64.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.215, 64.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.488, 64.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.693, 64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.206, 63.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.153, 63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.907, 63.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.024, 63.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.119, 63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.015, 63.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.719, 64.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.8, 64.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.636, 64.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.657, 64.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.033, 64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.323, 64.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.803, 63.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.018, 64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.998, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.074, 64.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.796, 64.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.962, 64.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.965, 64.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.946, 64.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.989, 64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.64, 63.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.437, 63.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.405, 63.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.83, 63.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.851, 63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.86, 63.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.003, 63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.912, 63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.152, 63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.484, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.543, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.674, 63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.667, 63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.678, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.811, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.918, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.823, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.916, 63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.565, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.812, 63.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.406, 63.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.007, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.919, 62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.132, 62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.975, 63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.81, 62.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.103, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.009, 62.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.067, 62.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.217, 63.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.816, 63.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.794, 63.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.544, 63.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.692, 63.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.649, 63.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.759, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.789, 63.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.796, 63.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.832, 63.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.843, 63.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.665, 63.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.821, 63.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.682, 63.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.792, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.635, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.509, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 62.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.295, 63.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.161, 63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.988, 62.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.022, 64.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.083, 62.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.641, 64.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.483, 62.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.794, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.162, 63.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.874, 63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.264, 61.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.67, 62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.326, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.595, 62.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.58, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.647, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.646, 62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.214, 62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.135, 63.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.558, 63.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.541, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.578, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.823, 62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.42, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.524, 63.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.76, 62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.05, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.675, 62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.392, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.817, 63.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.688, 63.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.05, 63.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.774, 63.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.748, 63.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.796, 63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.307, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.487, 63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.995, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.074, 63.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.137, 63.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.22, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.287, 63.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.57, 63.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.933, 63.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.318, 63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.945, 63.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.249, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.262, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.295, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.936, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.199, 62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.606, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.745, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.703, 62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.809, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.082, 57.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.754, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.763, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.044, 62.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.052, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.216, 62.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.423, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.502, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.804, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 62.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.806, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.9, 62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.771, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.625, 62.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.524, 62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.976, 62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 62.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.756, 62.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.514, 62.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.386, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 62.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.27, 62.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.626, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.258, 62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.419, 62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.467, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.225, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.215, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.171, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.726, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.686, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.609, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.571, 62.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.053, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.355, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.18, 62.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.151, 62.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.148, 62.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.258, 61.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.828, 61.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.842, 61.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.796, 61.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.875, 61.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.931, 61.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.111, 61.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.37, 61.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.166, 61.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.241, 61.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.378, 61.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.62, 61.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.774, 61.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 61.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.287, 60.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.215, 60.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.307, 60.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.675, 61.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.883, 61.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.919, 61.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.072, 61.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.004, 61.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.815, 61.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.869, 61.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.192, 61.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.386, 61.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.449, 61.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.338, 61.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.43, 61.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.538, 61.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.581, 61.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.624, 61.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.71, 61.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.532, 61.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.639, 61.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.765, 61.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.757, 61.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.816, 61.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.34, 61.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.349, 61.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.345, 61.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.242, 61.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.237, 61.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.209, 61.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.322, 61.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.192, 61.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.285, 61.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.993, 61.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.976, 61.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.787, 61.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.826, 61.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.082, 61.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.78, 61.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.028, 61.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.85, 61.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.19, 61.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.012, 61.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.497, 61.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.97, 61.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.145, 61.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.929, 61.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.267, 61.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.28, 61.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.409, 61.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.382, 61.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.323, 61.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.757, 61.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.672, 61.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.275, 61.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.978, 61.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.898, 62.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 62.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.178, 62.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.271, 62.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.11, 61.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.828, 62.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.97, 62.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.888, 62.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 62.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.692, 62.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.825, 62.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.886, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.928, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.215, 62.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.226, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.411, 62.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.898, 62.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.166, 62.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.163, 62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.371, 62.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.272, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.202, 62.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.179, 62.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.154, 62.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.21, 62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.221, 62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.259, 62.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.281, 62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.223, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.515, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.71, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.672, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.018, 62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.249, 62.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.269, 61.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 61.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.323, 61.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 61.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 61.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.49, 61.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.772, 61.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.399, 61.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.549, 61.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.748, 61.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.829, 61.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.926, 61.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.639, 61.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.484, 61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.41, 61.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.752, 62.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.713, 62.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.802, 62.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.705, 62.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.901, 62.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 62.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 62.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.304, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.325, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 62.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.229, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.226, 62.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 62.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 62.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.719, 62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.287, 62.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.262, 62.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.289, 62.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.327, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.34, 62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.36, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.369, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.342, 62.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.287, 62.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.273, 62.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.329, 62.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.375, 62.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 62.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.367, 62.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.36, 62.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.412, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.414, 62.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.364, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.303, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.542, 62.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 62.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.264, 62.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.289, 62.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.326, 62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.341, 62.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 62.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.213, 62.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.193, 62.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 62.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.2, 62.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 62.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 62.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 62.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.05, 62.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 62.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.984, 62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.586, 62.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.051, 62.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 62.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.941, 62.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 62.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 62.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.115, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.002, 62.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.098, 62.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.097, 62.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 62.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 62.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 62.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.251, 62.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 62.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.13, 62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.052, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.119, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.815, 62.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.254, 62.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 62.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 62.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.181, 62.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.113, 62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 62.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.219, 62.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.242, 62.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.257, 62.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 62.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.236, 62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 62.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.29, 62.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 62.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.177, 62.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.172, 62.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.136, 62.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 62.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.441, 62.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 61.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.561, 61.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.565, 62.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 62.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.511, 62.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.573, 62.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.653, 62.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.6, 62.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.775, 62.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.674, 62.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.764, 62.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.748, 62.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.781, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.786, 62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.746, 62.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.766, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.758, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.8, 62.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.842, 62.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.873, 62.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.809, 62.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.815, 62.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.773, 62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.945, 62.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.78, 62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.838, 62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 62.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.861, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.857, 62.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.828, 62.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.827, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.843, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.886, 62.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.765, 62.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.763, 62.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.807, 62.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.822, 62.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.871, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.754, 62.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.776, 62.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.725, 62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.58, 61.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.519, 62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.706, 62.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.562, 62.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.721, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.714, 62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.699, 62.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.655, 62.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.717, 62.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.834, 62.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.71, 62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.689, 62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.742, 62.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.806, 62.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.827, 62.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 62.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.759, 62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.633, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.788, 62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.724, 62.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.617, 62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.763, 62.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.735, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.743, 62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.661, 62.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.866, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.805, 62.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.779, 62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.76, 62.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.86, 62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.854, 62.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.848, 62.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.84, 62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.871, 62.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.782, 62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.83, 62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.743, 62.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.762, 62.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.726, 62.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.622, 62.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.642, 62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.366, 62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 62.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.239, 62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.685, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.47, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.461, 62.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.411, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.422, 62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.537, 62.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.516, 62.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.527, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.481, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.401, 62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.405, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.46, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.436, 62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.566, 62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.49, 62.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.365, 62.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.363, 62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.383, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.322, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.194, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.102, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.168, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.05, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.27, 62.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.017, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.034, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.038, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.122, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.11, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.996, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.97, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.986, 62.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.77, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.892, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.904, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.925, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.986, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.139, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.014, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.935, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.58, 62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.956, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.924, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.9, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.847, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.73, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.783, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.722, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.838, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.731, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.774, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.721, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.56, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.433, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.393, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.425, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.434, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.475, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.458, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.372, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.387, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.26, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.364, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.24, 62.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.187, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.369, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.38, 62.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.397, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.395, 62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.264, 62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.256, 62.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.239, 62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.322, 62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.312, 62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.332, 62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.411, 62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.382, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.373, 62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.212, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.031, 62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.097, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.255, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.044, 62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.155, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.174, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.239, 62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.248, 62.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.247, 62.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.22, 62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.093, 62.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.318, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.274, 62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.316, 62.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.388, 62.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.409, 62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.387, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.338, 62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.408, 63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.559, 63.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.43, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.365, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.479, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.714, 63.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.707, 62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.57, 62.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.765, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.167, 63.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.15, 63.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.128, 63.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.083, 63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.081, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.132, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.155, 63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.12, 63.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.125, 63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 63.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.134, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.148, 63.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.015, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.953, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.986, 63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.942, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.921, 63.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.874, 63.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.887, 63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.177, 63.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.865, 63.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.901, 63.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.932, 63.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.855, 63.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.959, 63.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.969, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.949, 63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.914, 63.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.928, 63.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.975, 63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.059, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.026, 63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.878, 63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 63.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.885, 63.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.054, 63.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.21, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.986, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.016, 63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.05, 63.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.006, 63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.041, 63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.085, 63.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.963, 63.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.107, 63.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.005, 63.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.98, 63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.028, 63.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.01, 63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.934, 63.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.116, 63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.922, 63.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.921, 63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.899, 63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.876, 63.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.883, 63.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.927, 63.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.913, 63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.947, 63.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.016, 63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.007, 63.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.988, 63.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.002, 63.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.965, 63.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.977, 63.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 63.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.971, 63.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 63.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.906, 63.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.967, 63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 63.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.984, 63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.956, 63.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.037, 63.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.916, 63.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.976, 63.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.921, 63.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.862, 63.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.971, 63.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.019, 63.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.1, 63.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.092, 63.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.223, 63.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.665, 63.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.403, 63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.5, 63.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.554, 63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.652, 63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.692, 63.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.929, 63.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.93, 64.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.951, 64.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.854, 64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.848, 64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.88, 64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.891, 64.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.005, 64.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.985, 64.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.178, 64.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.553, 65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.187, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 69.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 69.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.187, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.197, 69.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.287, 69.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.195, 69.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.276, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.205, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.254, 69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.397, 69.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.163, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.292, 69.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.305, 69.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.062, 68.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.262, 68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.441, 69.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 68.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 68.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.12, 68.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 68.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.164, 68.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.492, 68.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.117, 68.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 68.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.019, 68.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.074, 68.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.11, 68.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 68.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.763, 68.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.288, 68.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 68.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 68.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.047, 68.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 68.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.06, 68.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.956, 68.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 68.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 68.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 68.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.107, 68.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.007, 68.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -131.352, 59.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.071, 68.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.032, 68.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 68.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 68.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 68.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 68.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.998, 68.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.882, 68.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.871, 68.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.709, 68.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.791, 68.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 68.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.627, 68.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.63, 67.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.561, 67.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.703, 67.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.757, 67.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.649, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.917, 68.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.885, 67.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.938, 67.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.732, 67.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.507, 67.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.739, 67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 67.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.755, 67.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.365, 67.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 67.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.463, 67.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.505, 67.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.512, 67.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.532, 67.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.624, 67.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 68.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.794, 67.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.004, 68.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.823, 68.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.836, 68.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.68, 68.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 68.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.914, 68.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.967, 68.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.968, 68.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.01, 68.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.951, 68.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.225, 68.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.211, 68.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.608, 68.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.899, 68.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.311, 68.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 68.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.98, 68.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.587, 68.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 68.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.085, 68.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 68.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.091, 68.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 68.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.476, 68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.024, 68.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.911, 68.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 68.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.644, 68.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.814, 68.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 68.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 68.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.951, 68.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 68.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.018, 68.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 68.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 68.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.524, 68.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.508, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.504, 69.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.813, 68.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.372, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.506, 69.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 69.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.145, 69.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.106, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.251, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.652, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 69.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 69.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.309, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.266, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.363, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.217, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.79, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.799, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.947, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.932, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.496, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.735, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.522, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.234, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.204, 69.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.457, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.67, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.719, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.812, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.949, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.107, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.113, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.753, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.042, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.593, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.022, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.407, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.394, 70.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.945, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.005, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.141, 70.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.098, 70.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.091, 70.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.808, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 70.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.668, 70.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.052, 70.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.542, 71.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.567, 71.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.612, 71.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.692, 71.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.782, 71.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.915, 71.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 71.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.339, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.723, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.734, 71.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.975, 71.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.145, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 71.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.867, 71.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.897, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.939, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.969, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.822, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 71.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.184, 71.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.319, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 71.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 72.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.222, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.547, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.323, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 72.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.772, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.451, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.513, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.264, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.642, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 72.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.248, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.222, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 72.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 72.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.991, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.754, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 71.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.558, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.727, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.47, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.719, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 71.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.395, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 71.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 71.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 71.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.426, 71.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 71.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.398, 71.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.401, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.531, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.534, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 71.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 71.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.241, 71.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 71.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.536, 71.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 71.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.313, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.301, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.847, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 71.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.269, 71.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.398, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 71.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.495, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.507, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.459, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.411, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.459, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.587, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.544, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.968, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.849, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.307, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.177, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.235, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.185, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 71.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.359, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.221, 71.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 71.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.206, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 71.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.209, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.257, 71.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.452, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.656, 71.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.939, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.323, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.383, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.275, 71.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.103, 71.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.024, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 71.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.126, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.043, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 71.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.093, 71.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 71.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.177, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.221, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.195, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.342, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 71.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.103, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.392, 71.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 71.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.849, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 71.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.229, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.241, 71.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 71.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.267, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.404, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.165, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.111, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.067, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.105, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.994, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.886, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 71.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.735, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.821, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.864, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.809, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 72.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74, 72.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 70.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.263, 72.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81, 72.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.448, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.235, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.479, 72.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.743, 72.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.977, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.379, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.75, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 72.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.723, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.975, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 72.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.552, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 71.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.373, 71.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.273, 71.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 71.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.454, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.421, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.308, 71.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.291, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.869, 71.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.355, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.44, 71.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 71.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.472, 71.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.559, 71.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33, 71.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.611, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.821, 71.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.832, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.311, 71.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.856, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.793, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.048, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.832, 71.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.99, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.794, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.08, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.725, 71.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.037, 71.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.072, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.118, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.245, 71.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.902, 71.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.339, 71.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.765, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.938, 71.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.742, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.974, 71.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.929, 71.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.384, 71.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.393, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.488, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.184, 71.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.224, 71.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9, 71.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.742, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 71.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 71.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.738, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 71.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.697, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 71.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 71.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.704, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 71.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.786, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.174, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.781, 71.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.538, 71.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.718, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.289, 71.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.118, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.496, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 71.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 71.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.031, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.946, 71.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.992, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 71.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.585, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.385, 72.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.411, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.736, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.789, 71.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.008, 71.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.867, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.386, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.855, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.829, 71.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.918, 71.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.853, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 71.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.398, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93, 71.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 71.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 71.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 71.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.138, 71.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.157, 71.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 71.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 71.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.333, 71.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 71.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 71.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.267, 71.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.413, 71.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.369, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 71.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 71.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.405, 71.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 70.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 71.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.458, 71.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 71.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 71.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.427, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.149, 71.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.752, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.685, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.46, 71.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 71.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.753, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 71.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 71.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.531, 70.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.575, 70.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 70.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 70.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 70.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 70.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.501, 70.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 70.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 70.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.932, 70.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 70.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.029, 70.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.257, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96, 69.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.39, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.786, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.433, 70.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.609, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.568, 70.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.707, 70.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.628, 70.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.561, 70.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.59, 70.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 70.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 70.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.744, 70.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.818, 70.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.696, 70.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 70.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 70.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.698, 70.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93, 70.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 70.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.247, 70.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.922, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.106, 70.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.152, 70.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 70.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.411, 70.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 70.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 71.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.119, 70.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.144, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.417, 71.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.424, 71.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.169, 71.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 71.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 71.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.23, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.114, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 71.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 71.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 71.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.095, 71.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 71.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.074, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.063, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.174, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 71.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 70.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.008, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.926, 70.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.765, 70.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 71.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.233, 71.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 71.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9, 71.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.979, 71.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 71.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.031, 71.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 71.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 71.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.035, 71.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 71.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.644, 71.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 71.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.165, 71.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 71.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.829, 71.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 71.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 71.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.126, 71.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 71.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 71.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.973, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.018, 71.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.036, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 70.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.951, 70.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.559, 71.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 70.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 70.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15, 70.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 70.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 70.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.14, 70.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.119, 70.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 70.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.027, 70.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92, 70.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.212, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 71.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 70.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 70.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.006, 70.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.738, 70.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 70.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 70.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.573, 70.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.583, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.885, 70.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.632, 70.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.926, 70.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.737, 70.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.702, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 70.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 70.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5, 70.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 70.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 70.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.529, 70.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 70.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.434, 70.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 70.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 70.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.647, 70.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 70.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.589, 70.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 70.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.545, 70.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 70.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.489, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.433, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.767, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.195, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.652, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.386, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.362, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.499, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.574, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.491, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.985, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.706, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.789, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.764, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.511, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.674, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.276, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.231, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.977, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 69.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.003, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.003, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.888, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.904, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.937, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.322, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.789, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.853, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.677, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.817, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.755, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.32, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.097, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.174, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.036, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.886, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.952, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.954, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.916, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.928, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.087, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.084, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.966, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.492, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.582, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.724, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.248, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.346, 69.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.898, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.321, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.184, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.191, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.093, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.124, 69.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.133, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.719, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.657, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.314, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.42, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.923, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.492, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.852, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.815, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.074, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.065, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.178, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.158, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.138, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.323, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.372, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.418, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.237, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.41, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.389, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.377, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.501, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.378, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.422, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.046, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.93, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.844, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.816, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.843, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.825, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.788, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.68, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.686, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.543, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.603, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.098, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.942, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.706, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.603, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.667, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.626, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.507, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.566, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.56, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.704, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.75, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.88, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.075, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.136, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.21, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.294, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.351, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.359, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.388, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.522, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.435, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.513, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.615, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.652, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.025, 69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.722, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.742, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.72, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.774, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.781, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.613, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.568, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.567, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.631, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.389, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.431, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.628, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.576, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.596, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.443, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.307, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.392, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.29, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.963, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.633, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.388, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.66, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.706, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.763, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.607, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.649, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.671, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.621, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.637, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.397, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.637, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.634, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.487, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.798, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.702, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.701, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.715, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.686, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.703, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.644, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.666, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.655, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.518, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.717, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.667, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.595, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.482, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.636, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.624, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.608, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.648, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.588, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.219, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.524, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.618, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.593, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.597, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.585, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.921, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.74, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.215, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.523, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.59, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.479, 70.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.445, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.58, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.799, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.546, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.784, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.278, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.954, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.678, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.795, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.283, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.638, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.11, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.413, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.541, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.622, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.844, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.544, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.888, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.734, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.58, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.632, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.557, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.513, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.527, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.511, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.215, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.536, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.565, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.504, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.642, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.577, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.542, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.666, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.551, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.283, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.502, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.565, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.379, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.408, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.457, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.591, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.78, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.515, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.526, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.512, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.484, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.519, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.542, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.678, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.539, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.539, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.663, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.674, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.646, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.676, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.0, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.488, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.636, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.647, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.722, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.724, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.574, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.595, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.666, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.477, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.589, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.612, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.466, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.671, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.595, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.579, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.55, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.655, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.699, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.709, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.638, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.736, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.784, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.616, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.559, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.597, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.916, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.679, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.631, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.589, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.473, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.654, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.367, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.589, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.952, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.526, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.819, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.384, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.225, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.274, 69.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.459, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.242, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.373, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.269, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.369, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.336, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.362, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.698, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.502, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.307, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.249, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.665, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.907, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.162, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.075, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.031, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.365, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.161, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.215, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.139, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.181, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.286, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.638, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.361, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.462, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.627, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.651, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.605, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.604, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.552, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.625, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.684, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.705, 69.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.189, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.779, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.198, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.72, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.785, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.661, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.639, 69.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.328, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.617, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.626, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.651, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.646, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.649, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.309, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.621, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.606, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.645, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.63, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.383, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.709, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.64, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.456, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.876, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.75, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.553, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.433, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.56, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.66, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.623, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.812, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.723, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.094, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.779, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.308, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 69.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.917, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.667, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.164, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.728, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.737, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.745, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.505, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.044, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.577, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.972, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.519, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.119, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.652, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.401, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.518, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.044, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.585, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.871, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.918, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.207, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.368, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.404, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.309, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.318, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.302, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.352, 69.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.204, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.383, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.482, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.601, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.637, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.649, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.003, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.829, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.123, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.102, 69.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.218, 69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.903, 69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.604, 69.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.657, 69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.815, 69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.651, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.653, 69.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17, 69.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.004, 69.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.366, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.462, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.467, 69.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.807, 69.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.823, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.798, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.824, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.907, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.917, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 69.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.435, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.445, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.832, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.819, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.756, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.956, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 69.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.924, 69.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.974, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 69.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.877, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.642, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.847, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.719, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.796, 69.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 69.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.898, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.376, 69.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.827, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.882, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.784, 69.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.078, 69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.097, 69.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.798, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.729, 69.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.292, 69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.777, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.781, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 69.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.696, 69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.734, 69.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.835, 69.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.866, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.812, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.453, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.781, 69.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.272, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.847, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.928, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.844, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.946, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.991, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.46, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.853, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.008, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.53, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.827, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.99, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 69.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.987, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.36, 69.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.925, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.895, 69.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.924, 69.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.931, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.922, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.818, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.855, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.173, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.967, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.903, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.918, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.953, 69.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.918, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.088, 69.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.948, 69.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.434, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.541, 68.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.998, 69.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 69.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.802, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 69.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.753, 69.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.31, 69.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 69.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.101, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.773, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.706, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.902, 69.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.819, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.783, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.692, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.846, 69.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 69.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.777, 69.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.156, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.828, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.005, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.84, 69.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.39, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.281, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.994, 68.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.518, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.822, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.837, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.762, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.058, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.932, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.874, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.847, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.822, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.399, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.883, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.866, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.399, 68.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 69.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.008, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.746, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.889, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.866, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.636, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.817, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.898, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.888, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.838, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.895, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.596, 69.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.899, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.308, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.819, 69.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.722, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.036, 69.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.877, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.276, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.244, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.983, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.956, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.758, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.769, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.778, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.325, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.75, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.821, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.914, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.922, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.979, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.83, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.897, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.911, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.901, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.019, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.291, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.746, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.433, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.557, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.643, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.101, 69.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.622, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.731, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.677, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.143, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.986, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.694, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.798, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.812, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.979, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.476, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.241, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.814, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 70.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.571, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.795, 72.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.548, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.204, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.589, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.27, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03, 70.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.956, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.629, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.784, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.919, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.173, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.777, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.348, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.246, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.116, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.455, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.108, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.96, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.809, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.804, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.164, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 69.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.485, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.966, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.246, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.324, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 70.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.113, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.14, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.234, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.312, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.217, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.017, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.047, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.015, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.049, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.192, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.055, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.512, 70.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.263, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.062, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.261, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.895, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.764, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.958, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.821, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.06, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.976, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.084, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.948, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.691, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.949, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.728, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.921, 70.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.943, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.799, 70.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 70.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.908, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 70.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.901, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.663, 70.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 70.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.744, 70.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57, 70.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.812, 70.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.975, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.396, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.956, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.473, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.683, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.149, 70.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.995, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.898, 70.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.161, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.972, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.082, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.112, 69.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.917, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.403, 67.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.017, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.414, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.051, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.338, 68.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.219, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.915, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.911, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.834, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 68.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.579, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.856, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.031, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.823, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.049, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.056, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.072, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.189, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.492, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.989, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.925, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.902, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.623, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.517, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.006, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.772, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.434, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.775, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.897, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.705, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.922, 70.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.641, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.813, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.033, 70.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.029, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.917, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.047, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.012, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.076, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.203, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.978, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.902, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.869, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.998, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.994, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.529, 70.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.336, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.851, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.003, 70.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.853, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.708, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.33, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.007, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.102, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.316, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.761, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.769, 70.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 70.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.049, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.628, 70.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.137, 70.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.228, 70.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.022, 70.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.939, 70.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 70.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.974, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.911, 70.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.836, 70.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.892, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86, 70.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.944, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93, 70.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.878, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.612, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.614, 70.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.287, 70.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.585, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.908, 70.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.319, 70.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.529, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.886, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.676, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.911, 70.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.541, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.046, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.186, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.003, 69.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.47, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.104, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.931, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.88, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.761, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.938, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.789, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.723, 69.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.69, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.737, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.377, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.117, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.064, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.972, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.496, 68.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.431, 68.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.103, 68.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.188, 68.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.904, 68.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.032, 67.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.921, 68.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.022, 67.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.567, 66.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.551, 66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 66.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.755, 66.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.768, 66.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.848, 66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.833, 66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.922, 66.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.799, 66.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.237, 65.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.192, 65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.137, 65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.497, 65.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.379, 65.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.163, 65.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.124, 65.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.285, 64.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.011, 65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.806, 65.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.96, 65.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.247, 65.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.544, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.701, 65.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.199, 65.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.947, 65.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.985, 65.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.064, 65.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.079, 65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.439, 65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.278, 65.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.601, 65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.317, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.16, 65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.561, 65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.731, 65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.674, 65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.666, 65.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.704, 65.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.09, 65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.618, 65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.443, 65.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.509, 65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.536, 65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.635, 65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.782, 65.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.595, 64.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.873, 64.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.774, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.626, 64.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.512, 64.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.35, 64.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.453, 64.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.376, 64.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.289, 64.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.107, 64.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 64.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.297, 63.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.106, 63.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.865, 64.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.073, 63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.987, 64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.628, 64.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.742, 64.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.742, 64.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.664, 64.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.233, 64.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.748, 64.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.429, 64.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.329, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.323, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.066, 64.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.34, 64.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.338, 64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.252, 63.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.441, 63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.601, 63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.851, 63.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.889, 63.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.028, 63.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.272, 63.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.739, 63.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.048, 63.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.582, 63.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.731, 63.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.001, 63.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.818, 63.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.968, 63.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 63.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.656, 63.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.95, 63.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.843, 63.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.864, 63.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.695, 63.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.653, 63.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.84, 63.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.556, 63.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.742, 63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.73, 63.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.664, 63.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.113, 63.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.577, 63.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.502, 63.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.72, 63.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.55, 63.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.619, 63.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.261, 63.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.779, 63.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.026, 63.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.312, 63.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.455, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.427, 63.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.418, 63.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.374, 63.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.227, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.897, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.735, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.407, 63.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.364, 63.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.266, 63.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.967, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.989, 63.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.943, 63.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.747, 63.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.688, 63.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.343, 63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.971, 63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.119, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.33, 63.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -22.665, 53.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.386, 63.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.291, 63.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.238, 63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.223, 63.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.161, 63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.167, 63.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.12, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.971, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.985, 63.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.129, 63.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.088, 63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.989, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.126, 63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.201, 63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.256, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.317, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.212, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.905, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.881, 63.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.914, 63.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.406, 62.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.846, 63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.693, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.765, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.854, 62.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.732, 62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.853, 62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.479, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.662, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.606, 62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.96, 62.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.627, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.671, 62.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.542, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.643, 62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.018, 62.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.488, 63.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.599, 62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.091, 62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.107, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.997, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.046, 62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.98, 62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.939, 62.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.309, 62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.937, 62.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.911, 62.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.914, 62.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.89, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.864, 62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.808, 63.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.707, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.329, 62.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.36, 62.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.311, 62.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.27, 62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.145, 62.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.443, 62.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.242, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.487, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.218, 62.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.304, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.368, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.36, 62.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.48, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.499, 62.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.641, 62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.529, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.63, 63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.659, 63.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.724, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.64, 62.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.673, 63.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.824, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.044, 63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.148, 63.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.161, 63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.95, 63.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.987, 63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.952, 63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.093, 63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.941, 63.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.053, 63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.026, 63.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.859, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.821, 63.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.655, 63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.671, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.689, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.696, 62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.634, 62.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.516, 63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.766, 62.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.651, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.743, 62.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.627, 62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.543, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.545, 62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.579, 62.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.919, 63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.019, 63.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.571, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.85, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.911, 63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.006, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.824, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.86, 63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.456, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.533, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.902, 63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.598, 62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.615, 62.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.228, 62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.975, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.6, 62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.358, 63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.929, 62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.208, 63.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.988, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.858, 63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.876, 63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.995, 63.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.089, 63.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.965, 63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.859, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.829, 63.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.945, 63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.116, 62.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.741, 62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.633, 63.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.812, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.697, 62.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.038, 62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.029, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.067, 63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.329, 63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.374, 63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.265, 63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.189, 63.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.102, 63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.186, 63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.336, 63.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.756, 62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.791, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.893, 62.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.806, 62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.834, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.742, 62.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.791, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.739, 62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.793, 62.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.739, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.697, 62.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.779, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.834, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.539, 62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.463, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.568, 62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.507, 62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.512, 62.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.47, 62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.514, 62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.466, 62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.502, 62.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.447, 63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.355, 62.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.314, 62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.381, 62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.414, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.655, 62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.843, 62.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.794, 62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.549, 62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.867, 62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.969, 62.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.458, 63.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.849, 62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.727, 62.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.016, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.25, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.49, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.146, 63.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.161, 63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.185, 63.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.199, 63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.159, 63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.685, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.097, 62.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.968, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.904, 62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.198, 63.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.05, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.094, 63.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.638, 63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.897, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.355, 63.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.508, 63.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.535, 63.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.717, 63.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.02, 63.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.78, 63.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.189, 63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.691, 63.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.607, 63.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.719, 63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.749, 63.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.758, 63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.219, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.254, 63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.441, 63.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.231, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.071, 63.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.548, 63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.764, 63.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.629, 63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.552, 63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.559, 63.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.643, 63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.421, 63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.77, 63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.476, 63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.475, 63.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.09, 63.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.785, 63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.851, 63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.939, 63.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.792, 63.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.056, 63.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.178, 63.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.844, 63.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.885, 63.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.791, 63.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.215, 63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.411, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.443, 62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.555, 62.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.626, 62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.585, 62.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.712, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.822, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.713, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.11, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.382, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.861, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.71, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.689, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.72, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.723, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.195, 62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.928, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.944, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.993, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.927, 62.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.904, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.93, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.807, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.815, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.834, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.821, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.84, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.868, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.739, 62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.9, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.768, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.019, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.738, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.867, 62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.739, 62.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.899, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.88, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.198, 62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.883, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.882, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.834, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.85, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.707, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.644, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.487, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.003, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.829, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.015, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.98, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.886, 62.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.497, 62.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.398, 62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.951, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.031, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.228, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.211, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.941, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.849, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.798, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.743, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.659, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.127, 62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.88, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.912, 62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.276, 62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.995, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.976, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.92, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.066, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.928, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.061, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.875, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.333, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.404, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.439, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.409, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.625, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.895, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.824, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.739, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.797, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.253, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.334, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.375, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.405, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.91, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.374, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.552, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.958, 62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.386, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.017, 62.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.377, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.332, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.417, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.385, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.375, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.351, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.72, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.431, 62.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.063, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.383, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.347, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.164, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.489, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.33, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.355, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.279, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.25, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.308, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.185, 62.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.325, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.34, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.349, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.213, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.412, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.427, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.427, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.487, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.233, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.15, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.195, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.068, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.08, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.939, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.131, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.526, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.936, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.954, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.923, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.958, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.325, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.853, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.73, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.95, 62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.974, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.958, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.935, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.954, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.1, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.207, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.225, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.949, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.155, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.288, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.018, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.311, 62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.951, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.911, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.665, 62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.597, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.01, 62.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.973, 62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.216, 62.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.12, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.276, 62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.245, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.459, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.132, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.024, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.968, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.752, 62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.174, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.235, 62.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.459, 62.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.572, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.753, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.209, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.578, 62.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.008, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.831, 62.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.754, 62.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.823, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.527, 62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.519, 62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.875, 62.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.266, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.115, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.208, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.141, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.346, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.418, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.193, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.319, 62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.981, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.031, 62.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.227, 62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.379, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.374, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.642, 62.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.204, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.553, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.324, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.376, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.305, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 62.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.251, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.407, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.472, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.629, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.279, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.131, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.343, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.332, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.336, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.3, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.29, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.39, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.432, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.097, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.273, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.346, 62.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.246, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.313, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.09, 62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.226, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.168, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.207, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.203, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.18, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.266, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.147, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.04, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.164, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.752, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.173, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.406, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.741, 62.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.229, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.283, 62.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.231, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.209, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.15, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.188, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.06, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.098, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.061, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.84, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.972, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.047, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.008, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.214, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.026, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.261, 62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.995, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.995, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.107, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.235, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.147, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.209, 62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.122, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.394, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.376, 62.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.157, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.964, 62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.258, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.262, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.192, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.189, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.195, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.252, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.228, 62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.165, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.191, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.131, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.093, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.129, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.11, 62.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.254, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.116, 62.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.763, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.68, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.775, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.69, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.6, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.483, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.189, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.12, 62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.467, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.643, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.624, 62.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.543, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.532, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.728, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.465, 62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.523, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.489, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.454, 62.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.034, 62.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.165, 62.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.71, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.877, 62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.281, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.427, 62.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.135, 62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.995, 62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.968, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.961, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.949, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.001, 62.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.076, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.062, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.017, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.314, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.345, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.364, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.507, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.254, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.307, 62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.09, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.085, 62.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.17, 62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.207, 62.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.98, 62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.034, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.051, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.03, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.188, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.179, 62.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.886, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.871, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.697, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.706, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.685, 62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.645, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.663, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.286, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.157, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.768, 62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.449, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.608, 62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.458, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.614, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.018, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.387, 62.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.421, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.383, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.416, 62.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.854, 62.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.343, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.35, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.365, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.622, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.903, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.906, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.037, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.34, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.595, 62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.188, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.129, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.384, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.688, 62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.454, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.477, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.392, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.482, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.609, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.972, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.594, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.623, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.759, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.091, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.776, 62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.542, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.755, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.617, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.687, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.689, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.375, 62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.309, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.181, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.801, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.884, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.812, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.818, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.952, 62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.711, 62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.808, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.917, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.975, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.882, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.979, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.063, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.693, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.623, 62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.08, 62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.833, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.74, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.93, 62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.242, 62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.227, 62.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.195, 62.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.98, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.885, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.631, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.236, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.928, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.819, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.723, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.331, 62.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.319, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.52, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.333, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.361, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.386, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.269, 62.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.942, 62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.358, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.94, 62.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.892, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.895, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.919, 62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.954, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.865, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.82, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.898, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.101, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.763, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.765, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.732, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.905, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.857, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.034, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.817, 62.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.736, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.815, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.839, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.121, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.576, 62.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.91, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.78, 62.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.015, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.826, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.912, 62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.629, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.073, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.081, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.983, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.084, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.015, 62.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.143, 62.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.012, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.139, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.157, 62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.138, 62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.911, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.09, 62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.066, 62.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.01, 62.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.653, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.494, 62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.808, 62.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.721, 62.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.577, 62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.682, 62.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.544, 62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.544, 62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.466, 62.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.434, 62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.424, 62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.151, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.539, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.051, 62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.145, 62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.094, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.871, 62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.647, 63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.703, 63.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.641, 63.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.443, 63.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.339, 63.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.363, 63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.538, 63.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.018, 63.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.151, 63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.156, 63.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.1, 63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.996, 63.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.001, 63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.901, 63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.717, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.8, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.83, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.97, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.718, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.017, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.052, 62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.944, 62.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.503, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.136, 62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.558, 62.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.587, 62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.567, 62.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.565, 62.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.732, 62.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.891, 62.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.06, 62.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.128, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.086, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.086, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.756, 62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.222, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.675, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.622, 62.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.68, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.673, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.876, 63.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.974, 62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.872, 62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.188, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.396, 62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.308, 62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.324, 62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.357, 62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.356, 62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.495, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.308, 62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.264, 62.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.298, 62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.149, 62.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.362, 62.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.338, 62.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.443, 62.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.341, 62.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.224, 62.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.229, 62.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.413, 62.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.714, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.777, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.737, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.671, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.736, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.56, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.551, 62.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.519, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.661, 62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.469, 62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.813, 62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.993, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.385, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.864, 62.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.809, 61.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.578, 61.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.777, 61.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.743, 61.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.839, 61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.105, 61.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.656, 61.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.986, 61.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.519, 61.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.676, 61.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.465, 61.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.741, 61.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.769, 61.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.628, 61.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.62, 61.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.527, 61.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.873, 61.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.34, 61.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.219, 61.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.871, 60.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.72, 60.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.207, 60.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.2, 60.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.988, 60.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.702, 60.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.627, 60.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.73, 60.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.774, 60.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.706, 60.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.393, 60.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.505, 61.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.394, 61.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.645, 61.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.111, 61.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.455, 61.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.128, 60.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.467, 61.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.9, 61.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.715, 61.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.716, 61.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.698, 61.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.286, 61.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.224, 61.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.15, 61.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.1, 61.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.091, 61.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.16, 61.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.213, 61.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.223, 61.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.264, 61.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.18, 61.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.221, 61.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.234, 61.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.255, 61.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.143, 61.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.234, 61.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.213, 61.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.262, 61.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.345, 61.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.414, 61.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.168, 61.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.163, 61.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.422, 61.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.317, 61.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.361, 61.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.288, 61.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.174, 61.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.053, 61.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.275, 61.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.288, 61.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.218, 61.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.331, 61.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.2, 61.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.26, 61.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.989, 60.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.598, 61.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.211, 61.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.095, 61.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.055, 61.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.147, 61.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.064, 60.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.992, 61.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.037, 60.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.062, 60.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.963, 60.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.791, 60.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.024, 61.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.856, 60.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.987, 60.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.982, 60.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.018, 60.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.836, 60.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.948, 60.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.709, 60.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.124, 60.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.014, 60.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.0, 61.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.137, 60.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.918, 60.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.935, 60.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.804, 60.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.884, 60.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.838, 61.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.806, 60.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.823, 60.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.816, 60.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.82, 60.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.832, 60.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.777, 60.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.859, 60.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.854, 60.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.874, 60.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.757, 60.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.377, 61.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.757, 60.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.515, 60.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.171, 60.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.28, 60.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.569, 60.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.925, 60.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.878, 61.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.644, 60.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.627, 60.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.106, 60.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.595, 60.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.557, 60.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.527, 60.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.513, 60.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.547, 60.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.775, 60.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.627, 60.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.483, 60.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.426, 60.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.378, 60.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.461, 60.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.07, 60.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.915, 60.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.354, 61.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.743, 60.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.397, 61.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.284, 60.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.603, 60.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.246, 60.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.424, 60.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.58, 60.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.392, 60.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.359, 60.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.335, 60.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.148, 60.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.293, 60.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.351, 60.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.323, 60.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.223, 60.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.393, 60.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.34, 60.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.31, 60.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.29, 61.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.374, 60.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.993, 60.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.041, 60.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.181, 60.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.088, 60.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.333, 60.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.077, 61.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.303, 60.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.362, 60.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.181, 60.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.218, 60.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.285, 60.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.138, 60.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.306, 60.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.251, 60.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.169, 60.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.237, 60.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.103, 60.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.273, 61.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.248, 60.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.851, 61.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.228, 60.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.241, 60.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.232, 61.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.19, 60.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.147, 60.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.134, 60.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.093, 60.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.094, 60.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.048, 60.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.976, 60.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.037, 60.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.022, 60.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.217, 60.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.065, 60.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.938, 60.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.998, 60.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.969, 60.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.799, 61.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.685, 61.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.784, 61.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.822, 61.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.809, 61.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.786, 60.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.771, 61.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.781, 60.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.823, 60.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.84, 60.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.782, 60.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.688, 60.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.684, 60.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.614, 61.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.84, 60.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.481, 61.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.724, 61.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.589, 61.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.61, 61.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.681, 61.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.935, 61.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.837, 61.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.881, 61.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.839, 61.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.925, 61.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.94, 61.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.879, 61.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.925, 61.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.035, 61.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.853, 61.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.022, 60.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.454, 60.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.033, 60.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.592, 60.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.573, 61.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.494, 61.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.407, 61.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.382, 61.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.422, 61.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.541, 60.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.553, 60.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.56, 60.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.599, 60.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.614, 60.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.7, 60.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.747, 60.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.517, 60.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.826, 61.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.805, 61.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.816, 60.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.239, 60.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.933, 61.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.244, 60.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.058, 60.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.277, 60.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.305, 60.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.265, 60.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.326, 60.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.286, 60.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.343, 60.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.308, 60.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.369, 60.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.244, 60.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.545, 61.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.187, 60.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.21, 60.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.153, 60.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.68, 60.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.352, 60.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.51, 60.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.01, 60.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.947, 60.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.796, 61.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.841, 60.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.855, 60.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.051, 60.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.867, 60.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.158, 60.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.222, 60.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.184, 60.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.153, 60.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.108, 60.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.071, 60.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.297, 60.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.773, 60.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.547, 61.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.21, 61.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.056, 61.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.132, 61.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.155, 60.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.174, 61.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.214, 61.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.305, 61.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.242, 61.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.289, 61.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.287, 61.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.291, 61.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.352, 61.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.502, 61.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.305, 60.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.459, 61.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.441, 61.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.925, 61.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.593, 61.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.433, 60.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.331, 61.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.466, 61.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.648, 61.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.827, 61.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.815, 61.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.119, 61.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.422, 61.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.939, 61.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.14, 61.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.576, 61.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.793, 61.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.288, 61.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.613, 61.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.287, 61.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.468, 61.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.917, 62.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.977, 62.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.169, 62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.156, 62.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.177, 62.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.415, 62.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.086, 62.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.391, 62.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.362, 62.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.199, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.927, 62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.788, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.655, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.086, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.095, 62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.379, 62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.795, 63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.074, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.911, 63.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.109, 63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.358, 63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.227, 63.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.538, 63.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.491, 63.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.832, 63.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.19, 63.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.077, 63.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.794, 63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.376, 63.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.359, 63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.74, 63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.245, 63.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.91, 63.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.279, 63.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.201, 63.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.364, 64.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.302, 64.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.587, 64.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.264, 64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.574, 63.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.867, 63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.743, 64.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.412, 64.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.992, 64.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.399, 64.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.133, 64.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.733, 64.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.675, 64.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.771, 64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.098, 64.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.35, 64.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.977, 64.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.641, 64.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.968, 64.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.845, 64.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.388, 63.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.017, 64.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.488, 64.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.004, 64.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.918, 64.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.995, 64.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.099, 64.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.878, 64.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.931, 64.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.97, 64.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.028, 64.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.002, 64.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.02, 64.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.793, 64.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.198, 64.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.181, 64.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.284, 64.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.275, 64.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.306, 64.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.597, 64.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.78, 64.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.77, 64.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.906, 64.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.712, 64.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.873, 64.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.129, 64.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.986, 64.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.797, 64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.605, 64.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.703, 64.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.048, 64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.4, 64.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.128, 64.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.847, 64.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.952, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.091, 64.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.733, 64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.601, 64.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.656, 63.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.136, 64.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.157, 64.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.842, 64.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.102, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.041, 64.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.082, 64.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.062, 64.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.975, 64.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.915, 64.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.066, 64.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.3, 64.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.473, 64.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.831, 64.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.02, 64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.352, 64.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.79, 64.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.221, 64.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.139, 64.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.917, 64.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.821, 64.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.62, 64.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.89, 64.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.987, 64.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.974, 64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.047, 64.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.442, 64.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.065, 64.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.238, 64.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.778, 64.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.146, 64.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.704, 64.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.199, 64.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.569, 64.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.526, 64.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.535, 64.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.261, 64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.311, 64.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.878, 64.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.889, 64.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.58, 64.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.04, 64.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.161, 64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.016, 64.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.651, 64.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.691, 64.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.727, 64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.767, 64.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.796, 64.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.834, 64.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.842, 64.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.752, 64.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.752, 64.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.531, 64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.802, 64.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.871, 64.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.571, 64.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.484, 64.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.357, 64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 64.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.994, 65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.123, 65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.133, 65.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.907, 65.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.38, 65.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.23, 65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.938, 65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 65.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.836, 65.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.572, 65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.569, 65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.534, 65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.157, 65.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.74, 65.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.297, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.899, 65.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.683, 66.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 66.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 66.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.503, 66.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.689, 66.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.881, 65.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.389, 66.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 66.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.375, 66.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.392, 66.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.364, 66.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.982, 66.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.768, 67.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.797, 67.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.419, 67.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 68.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 67.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.847, 67.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.763, 67.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.943, 68.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 68.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.924, 68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.437, 68.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 68.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.815, 68.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.791, 68.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.837, 68.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.84, 68.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.913, 68.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 69.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.189, 69.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.377, 69.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.088, 69.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.268, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.309, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.221, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.188, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.338, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.371, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.412, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.383, 69.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.29, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.492, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.282, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.203, 69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.969, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.851, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.052, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.933, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.807, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.703, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.4, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.496, 68.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.699, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.461, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.398, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.444, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.186, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.407, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.624, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.428, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.721, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.993, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.263, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.46, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.392, 69.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.29, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.992, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.845, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.612, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.635, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.553, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.57, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.548, 69.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.507, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.442, 69.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.803, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.661, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.765, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.646, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.596, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.719, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.761, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.923, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.97, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.848, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.882, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.719, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.79, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.946, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 69.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.94, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.003, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.925, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.708, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.344, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.256, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 69.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.975, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.0, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.991, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.806, 69.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.269, 69.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.616, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.579, 69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.514, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.417, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.439, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.524, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.247, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.782, 69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.098, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.119, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.139, 69.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.348, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.125, 69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.029, 68.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.18, 68.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.454, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.167, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.168, 68.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.186, 68.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.991, 68.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.316, 68.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.204, 68.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 68.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.552, 68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.438, 68.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 68.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 68.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.622, 68.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.788, 68.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 68.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.819, 68.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.011, 68.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 68.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.956, 68.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.612, 68.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.31, 68.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 68.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 68.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.846, 67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.943, 68.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.868, 67.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.456, 67.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.247, 67.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.953, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.92, 68.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.828, 68.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.794, 67.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.724, 67.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 67.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.612, 67.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 67.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.497, 67.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.619, 67.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.538, 67.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 67.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 67.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.537, 67.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.539, 67.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 67.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 67.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.503, 67.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 67.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.515, 67.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.544, 67.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.996, 67.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.273, 67.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 67.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.479, 67.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.219, 67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.389, 67.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.407, 67.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.523, 67.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.924, 67.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 66.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.939, 66.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.506, 67.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.316, 67.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.289, 67.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.444, 67.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.33, 67.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.232, 67.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.116, 67.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.159, 67.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 67.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.157, 67.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 67.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 67.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.255, 67.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.146, 67.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.156, 67.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.117, 67.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.332, 67.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.154, 67.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.53, 67.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.56, 68.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.526, 68.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.596, 67.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.668, 68.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.824, 68.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.793, 68.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.876, 68.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.465, 68.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.778, 68.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.862, 68.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.76, 68.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.632, 68.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.539, 68.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.561, 68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 68.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 68.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.763, 68.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.761, 68.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 68.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.887, 68.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.031, 68.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.636, 68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.729, 68.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.54, 69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.724, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.932, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.882, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.361, 70.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.282, 69.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.137, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.135, 69.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.044, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.391, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.464, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.413, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.522, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.358, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.518, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.287, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.493, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.556, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.802, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.872, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.178, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.762, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.344, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.749, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.854, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.988, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.226, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.528, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.552, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.003, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.005, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.277, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.886, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.915, 70.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.158, 70.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.041, 70.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.724, 70.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19, 70.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.305, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.31, 70.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.651, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.705, 70.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.921, 71.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.248, 71.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.551, 71.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.704, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.475, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.769, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.967, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.115, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 72.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.748, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 72.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.459, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.316, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 72.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.304, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 72.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.46, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.265, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.47, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.329, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36, 72.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.455, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.667, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.258, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 72.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.802, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11, 72.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.259, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.329, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 72.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.432, 72.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 72.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.657, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.282, 72.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.134, 72.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 72.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.659, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.766, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.768, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 72.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.635, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 72.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.407, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.216, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87, 72.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7, 72.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.931, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.085, 72.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.717, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.715, 72.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 72.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.005, 72.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 72.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.041, 72.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 72.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 72.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.123, 72.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 72.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 72.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 72.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 72.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.114, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 72.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 72.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 72.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.132, 72.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.354, 72.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 72.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.234, 72.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 72.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.182, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.273, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 72.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 72.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87, 72.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 72.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 72.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.236, 72.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.192, 72.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 72.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.959, 72.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.863, 72.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.838, 72.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 72.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 72.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 72.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 72.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 72.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.375, 72.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.877, 72.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 72.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.24, 72.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.137, 72.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.197, 72.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 72.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.229, 72.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 72.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.161, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 72.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 72.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 72.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.371, 72.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.016, 72.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 72.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 72.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.036, 72.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 72.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.239, 72.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.115, 72.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.526, 72.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 72.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 72.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.703, 72.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.352, 72.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.393, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.393, 72.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 72.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.263, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.296, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 72.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 72.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.399, 72.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.234, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.486, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 72.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.489, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 72.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.986, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.238, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 72.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.286, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.256, 72.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.373, 72.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.263, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.343, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 72.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.408, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.458, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.397, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 72.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.451, 72.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.807, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.703, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.753, 72.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 72.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 72.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 72.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 72.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.859, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 72.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.878, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.004, 72.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.696, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.711, 72.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.409, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.822, 72.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.065, 72.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 72.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.261, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.201, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 72.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.241, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.675, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.303, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.139, 72.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.021, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.084, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.177, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.189, 72.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.039, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 72.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.141, 72.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 72.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.169, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.188, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.326, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.375, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 72.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.944, 72.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.85, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 72.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.735, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.913, 72.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.894, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.187, 72.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.814, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.83, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.877, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.766, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.847, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.774, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.683, 72.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.649, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.859, 71.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.68, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 71.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.686, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.477, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 71.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.238, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.112, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.123, 71.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.041, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.483, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.135, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.145, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 71.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.206, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.253, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.908, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.044, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.157, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.061, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.022, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 71.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 71.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 71.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 71.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.142, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.172, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.108, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.225, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.144, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.613, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.197, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 72.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.23, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.139, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 71.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 71.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.266, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.163, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.231, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.326, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.229, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 71.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.174, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.228, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.305, 71.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.063, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.725, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.986, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.333, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02, 71.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.055, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.906, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.371, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 72.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.969, 72.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.976, 72.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.518, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.838, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.783, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.946, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.976, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.855, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.781, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.681, 72.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.744, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.754, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.718, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.688, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.751, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.739, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.784, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.777, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.825, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.866, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.806, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.871, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.593, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.903, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.547, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.888, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 72.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.971, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.922, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.875, 72.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.976, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.704, 72.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 72.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 72.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.392, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.106, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.837, 71.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.354, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.192, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 72.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.211, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.165, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.289, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.189, 72.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.13, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.976, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.113, 71.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.746, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.005, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.242, 72.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.331, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.206, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.144, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.171, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.152, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.172, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.362, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 72.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.332, 72.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 72.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.233, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.246, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.962, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02, 72.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.899, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.885, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.017, 71.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.904, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.246, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.117, 72.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 71.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.627, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.257, 71.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.651, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.471, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.505, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.243, 71.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.003, 71.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.544, 71.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.588, 70.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.433, 71.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 70.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.181, 70.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.164, 70.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.103, 70.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.152, 70.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.112, 70.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.431, 70.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.389, 70.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.903, 70.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.628, 70.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.316, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.96, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.41, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.495, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.506, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.657, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.394, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.265, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.522, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 70.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.593, 70.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.314, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.003, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.901, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.096, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.182, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.446, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.221, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.254, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.133, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.993, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.342, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.863, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.933, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.758, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.948, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.788, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.521, 69.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.822, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.453, 69.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.441, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.505, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.422, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.036, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.718, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.606, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.565, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.728, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.663, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.677, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.696, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.742, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.683, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.834, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.439, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.269, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 70.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 70.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.534, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.393, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.364, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.504, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.805, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.909, 69.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.127, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.611, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.475, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.533, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.577, 70.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.811, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.292, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.396, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.378, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33, 70.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.689, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.066, 70.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.909, 70.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.718, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.653, 70.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.424, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.387, 70.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.536, 70.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.001, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.074, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.74, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.95, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.865, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.967, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.005, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.062, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.827, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.576, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.689, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.791, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.811, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.59, 70.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.687, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.022, 70.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.389, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.483, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.653, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.719, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.822, 70.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.751, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.548, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.926, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.813, 70.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.485, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.473, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.537, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.451, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.53, 69.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.116, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.116, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.014, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.941, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.986, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.065, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.068, 70.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.165, 70.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.663, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.655, 70.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.763, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.991, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.165, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.848, 70.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.983, 70.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.149, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.408, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.943, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.454, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.962, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.205, 70.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.302, 70.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.096, 70.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.369, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.473, 70.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.778, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.428, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.685, 70.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.561, 70.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.553, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.682, 70.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.512, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.829, 70.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.607, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.617, 71.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.849, 70.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.856, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.588, 70.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.734, 70.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.663, 70.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.561, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.667, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.655, 70.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.761, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.776, 70.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.917, 70.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.931, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.125, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.643, 70.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.627, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.557, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.579, 70.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.535, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.474, 70.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.279, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.963, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.865, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.358, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.374, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.127, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.109, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.337, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.323, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.363, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.256, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.348, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.714, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.378, 69.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.475, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.715, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.636, 69.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.162, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.304, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.223, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.236, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.31, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.394, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.561, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.821, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.741, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.528, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.071, 69.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.847, 69.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.885, 69.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.78, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.839, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.914, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.869, 69.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.001, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.799, 69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.721, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.471, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.909, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.904, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.708, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.892, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.841, 69.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.167, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72, 69.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.975, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.428, 69.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.895, 69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87, 69.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.718, 69.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.107, 69.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.822, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.887, 69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.909, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.946, 69.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.405, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.549, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.252, 69.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.919, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.916, 69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.723, 69.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.808, 69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.796, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.216, 69.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.804, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.883, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 69.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13, 68.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.623, 69.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 69.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.052, 69.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.548, 69.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.459, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.954, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.959, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 69.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.904, 69.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.892, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.187, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.834, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.883, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.368, 69.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.822, 69.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.249, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.958, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.761, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.946, 69.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.181, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.064, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.019, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.322, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.383, 68.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.781, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.933, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.754, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.434, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 69.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.95, 69.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.079, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.931, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.983, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.149, 68.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.163, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.567, 69.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.775, 69.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.883, 69.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.799, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.256, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 69.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.712, 69.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.753, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.845, 69.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 68.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.783, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.996, 69.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.851, 69.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.734, 69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.851, 69.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.721, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.118, 69.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.466, 68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.345, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87, 69.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.819, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.937, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 69.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.236, 68.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.862, 69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.971, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.864, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89, 69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.786, 69.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.816, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.755, 69.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.772, 69.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.163, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 69.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.735, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.784, 69.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.031, 69.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.629, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.801, 69.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.864, 69.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 69.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.875, 69.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.805, 69.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 69.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.849, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.988, 69.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.791, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.187, 69.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.848, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.408, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.042, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.92, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.981, 69.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.708, 69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.812, 69.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.705, 69.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.77, 69.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.616, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 69.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.974, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.049, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.648, 68.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.042, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 69.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.865, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.889, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.616, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.432, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.897, 69.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.927, 69.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.904, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 69.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.941, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.898, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 69.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.891, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.902, 69.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.077, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.197, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.928, 69.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.858, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.833, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.907, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.926, 69.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.884, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81, 69.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.779, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.842, 69.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.907, 69.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.882, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.899, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.207, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.95, 69.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.013, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.665, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.173, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.102, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.965, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.05, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.09, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.988, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.053, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.818, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.072, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.198, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.057, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.896, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.206, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.038, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.053, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.166, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.259, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.058, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.177, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.381, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.327, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.06, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.071, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.47, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.597, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.054, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.99, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.359, 70.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.595, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.917, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.585, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.087, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.445, 69.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.184, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.905, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.939, 69.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.969, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.116, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.215, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2, 69.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.323, 69.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.271, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.242, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.258, 69.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.152, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.085, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.279, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.222, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.402, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.228, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.246, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.087, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.532, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.109, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.208, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.527, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 70.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.655, 70.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.425, 69.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.143, 70.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.326, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.085, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.395, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.734, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.495, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.697, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.141, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.687, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.505, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.415, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.481, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.636, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.46, 70.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.512, 70.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.562, 70.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.753, 70.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.773, 70.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 70.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.89, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.694, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 70.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.176, 70.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.539, 70.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.047, 70.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 70.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.779, 70.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.785, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.834, 70.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 70.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.923, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.952, 70.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.956, 70.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.723, 70.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.775, 70.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 70.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.177, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.047, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.81, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.813, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.171, 70.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.754, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.937, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.856, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.113, 70.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.822, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.574, 70.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 70.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.963, 70.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.961, 70.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 70.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.842, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.751, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.013, 68.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.227, 70.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.841, 70.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.67, 70.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 70.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 70.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.308, 70.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 70.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.849, 70.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.844, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.037, 70.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.796, 70.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 70.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.647, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.721, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.738, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.921, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.811, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.805, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.881, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 70.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 70.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.944, 70.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.741, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.883, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 70.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.284, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.461, 70.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.509, 70.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.575, 70.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.205, 70.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 70.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 70.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.912, 70.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.728, 70.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.708, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.748, 70.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 70.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 70.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 70.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.383, 70.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.866, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.575, 70.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.532, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.552, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.914, 71.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.356, 70.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.947, 71.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 71.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 71.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.247, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.267, 71.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.569, 70.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 71.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02, 71.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.765, 71.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.713, 71.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.692, 71.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.695, 71.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 71.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.81, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 71.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.567, 71.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.776, 71.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.842, 71.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.611, 71.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.775, 71.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.223, 71.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.678, 71.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 71.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.35, 70.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.409, 71.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.565, 71.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.253, 71.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.759, 70.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.052, 73.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 71.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.376, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 71.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.204, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.289, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.095, 72.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.024, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.888, 72.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.704, 72.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.057, 73.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.838, 73.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.31, 73.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.667, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.749, 73.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.348, 73.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.263, 73.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.554, 73.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.89, 73.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.349, 74.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.737, 73.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.998, 73.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.801, 74.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.083, 73.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.413, 73.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.115, 73.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.977, 73.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.165, 73.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.969, 73.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.684, 73.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.556, 73.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.498, 73.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.601, 73.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.433, 73.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.322, 73.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.907, 73.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.711, 73.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.998, 73.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 73.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.701, 73.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 73.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.729, 73.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.455, 73.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.455, 73.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.374, 73.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.406, 73.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.351, 73.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.409, 73.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.909, 73.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.889, 73.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.767, 73.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.667, 73.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.22, 73.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.304, 73.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.903, 73.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.624, 73.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.503, 73.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.251, 73.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.986, 73.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.107, 73.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.151, 73.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.898, 73.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.515, 73.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.497, 73.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.234, 73.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.191, 73.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.234, 72.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.11, 72.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.042, 72.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.037, 72.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.032, 72.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.024, 72.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.889, 72.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.698, 72.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.069, 72.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.199, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.304, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.196, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.252, 72.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.248, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.048, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.516, 71.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.226, 71.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.376, 71.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.464, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.163, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.287, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.709, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.726, 70.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.75, 70.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.772, 70.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.179, 70.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.755, 70.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.869, 70.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.71, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.968, 70.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.844, 70.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.691, 70.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.72, 70.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.231, 70.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.604, 70.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.714, 70.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.497, 70.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.247, 70.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.647, 70.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.896, 70.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.793, 70.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.684, 70.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.668, 70.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.606, 70.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.607, 70.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.972, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.938, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.109, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.337, 70.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.869, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.501, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.376, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.295, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.158, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.186, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.95, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.915, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.954, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.572, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.416, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.39, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.444, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.043, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.374, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.43, 69.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.489, 69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.517, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.496, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.556, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.724, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.032, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.603, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.486, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.424, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.363, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.382, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.512, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.92, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.327, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.114, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.358, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.184, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.106, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.302, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.329, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.293, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.522, 69.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.327, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.359, 69.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.385, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.417, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.587, 69.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.457, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.522, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.883, 69.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.432, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.239, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.571, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.525, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.506, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.518, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.544, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.585, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.68, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.823, 67.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.52, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.521, 69.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.498, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.513, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.705, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.586, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.556, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.409, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.419, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.535, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.61, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.543, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.484, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.978, 68.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.999, 68.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.428, 68.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.043, 68.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.037, 68.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.052, 68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.986, 68.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.967, 68.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.126, 68.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.826, 68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.01, 68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.201, 68.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.801, 68.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.609, 68.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.006, 68.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.778, 68.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.122, 68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.17, 68.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.162, 68.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.174, 68.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.088, 68.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.842, 68.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.983, 68.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.071, 68.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.482, 68.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.298, 68.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.961, 68.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.033, 68.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.084, 68.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.4, 68.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.114, 68.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.591, 67.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.514, 67.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.411, 67.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.541, 67.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.471, 67.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.529, 67.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.629, 67.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.458, 67.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.514, 67.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.518, 67.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.421, 67.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.323, 67.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.267, 67.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.095, 67.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.814, 67.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.379, 67.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.909, 67.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.365, 67.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.474, 66.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.328, 66.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.413, 65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.581, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.736, 65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.755, 65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.798, 64.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.828, 64.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.959, 64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.028, 64.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.282, 64.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.235, 64.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.592, 64.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.229, 64.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.743, 64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.703, 64.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.759, 64.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.816, 64.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.774, 64.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.952, 64.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.935, 64.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.92, 64.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.132, 64.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.091, 64.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.092, 64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.27, 64.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.865, 64.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.451, 64.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.518, 64.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.582, 64.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.665, 64.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.628, 64.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.601, 64.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.65, 64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.547, 64.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.251, 64.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.486, 64.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.229, 64.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.77, 64.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.484, 64.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.219, 64.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.283, 64.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.28, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.204, 64.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.212, 64.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.22, 64.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.193, 64.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.173, 64.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.012, 64.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.192, 64.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.243, 64.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.134, 64.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.208, 64.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.231, 64.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.951, 64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.451, 64.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.5, 64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.354, 64.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.329, 64.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.205, 64.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.245, 64.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.237, 64.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.689, 64.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.846, 64.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.676, 64.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.29, 64.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.688, 64.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.54, 64.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.257, 64.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.496, 64.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.41, 64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.285, 64.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.353, 64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.988, 64.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.258, 64.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.837, 64.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.795, 64.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.89, 64.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.032, 64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.986, 64.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.87, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.881, 64.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.096, 64.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.988, 64.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.939, 64.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.003, 64.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.985, 64.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.03, 64.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.084, 64.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.048, 64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.145, 64.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.823, 64.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.808, 64.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.756, 64.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.815, 64.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.827, 64.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.777, 64.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.933, 64.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.853, 64.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.91, 64.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.806, 64.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.303, 64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.27, 64.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.041, 65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.408, 64.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.382, 64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.28, 64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.257, 64.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.252, 64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.187, 64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.274, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.344, 64.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.283, 64.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.165, 64.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 64.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.338, 64.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.244, 64.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.272, 64.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.177, 64.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.206, 64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.236, 64.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.926, 64.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.726, 64.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.115, 64.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.117, 64.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.089, 64.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.238, 64.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.229, 64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.34, 64.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.287, 64.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.321, 64.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.474, 64.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.962, 64.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.754, 67.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.151, 64.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.265, 64.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.275, 64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.271, 64.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.263, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.279, 64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.71, 64.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.156, 64.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.224, 64.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.392, 64.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.452, 64.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.466, 64.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.826, 64.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.719, 64.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.89, 64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.729, 64.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 64.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.327, 64.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.568, 64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.266, 64.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.972, 64.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.418, 64.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.95, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.024, 64.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.589, 64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.694, 64.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.614, 64.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.382, 64.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.375, 64.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.3, 64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.362, 64.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.612, 64.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.332, 64.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.307, 64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.473, 64.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.589, 65.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.608, 65.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.609, 65.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.204, 64.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.399, 64.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.722, 64.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.655, 64.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.65, 64.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.661, 64.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.636, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.544, 64.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.662, 64.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.301, 64.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.537, 64.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.441, 64.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 64.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.586, 64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.429, 64.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.332, 65.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.25, 65.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.915, 65.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.964, 65.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.921, 65.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.304, 65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.272, 65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.286, 64.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.06, 65.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.765, 64.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.027, 64.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.559, 64.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.86, 65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.621, 64.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.271, 65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.478, 65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.536, 65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.484, 65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.984, 65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.575, 65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.704, 65.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.467, 65.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.677, 65.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.533, 65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.968, 65.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.832, 65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.776, 65.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.902, 65.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.804, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.697, 65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.742, 65.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.843, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.819, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.878, 65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.746, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.541, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.77, 65.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.86, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.525, 65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.503, 65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.617, 65.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.749, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.584, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.838, 65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.842, 65.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.613, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.477, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.507, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.606, 65.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.616, 65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.983, 65.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.229, 65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.186, 65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.672, 65.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.702, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.631, 65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.305, 65.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.657, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.641, 65.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.611, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.73, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.574, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.558, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.474, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.734, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.275, 66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.728, 66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.751, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.785, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.599, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.521, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.582, 65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.587, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.063, 66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.578, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.544, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.568, 65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.749, 66.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.423, 66.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.686, 65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.687, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.624, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.837, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.837, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.728, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.846, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.885, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.906, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.496, 65.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.013, 65.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.34, 66.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.854, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.911, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.858, 65.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.573, 65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.789, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.773, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.727, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.761, 65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.813, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.791, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.802, 65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.747, 65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.742, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.765, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.782, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.783, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.89, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.818, 66.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.81, 65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.756, 65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.769, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.632, 66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.925, 65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.823, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.781, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.672, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.881, 65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.586, 65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.12, 65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.828, 65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.794, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.836, 65.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.113, 66.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.909, 65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.738, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.948, 66.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.948, 65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.894, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.73, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.939, 65.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.866, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.755, 66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.862, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.45, 65.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.702, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.72, 65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.442, 65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.701, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.736, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.924, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.775, 65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.878, 65.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.758, 65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.784, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.846, 65.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.785, 65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.732, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.77, 65.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.82, 65.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.782, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.621, 65.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.855, 65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.663, 65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.709, 65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.678, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.627, 65.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.667, 65.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.741, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.852, 65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.471, 65.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.756, 65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.808, 65.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.71, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.686, 65.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.763, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.561, 65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.979, 65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.912, 65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.756, 65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.638, 65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.975, 65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.672, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.812, 65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.931, 65.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.48, 65.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.22, 65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.01, 65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.76, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.56, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.777, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.73, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.642, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.774, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.762, 65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.942, 65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.861, 65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.947, 65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.835, 65.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.83, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.723, 65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.68, 65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.722, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.663, 65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.682, 65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.509, 65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.614, 65.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.644, 65.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.436, 65.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.811, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.88, 65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.06, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.857, 65.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.069, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.152, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.189, 65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.132, 65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.127, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.139, 65.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.085, 65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.85, 65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.78, 65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.797, 65.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.727, 65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.758, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.978, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.736, 65.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.892, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.761, 65.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.816, 65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.887, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.839, 65.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.023, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.892, 65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.018, 65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.846, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.829, 65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.82, 65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.43, 65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.775, 65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.986, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.951, 65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.891, 65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.887, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.393, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.377, 65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.416, 65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.54, 65.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.779, 65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.812, 66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.718, 65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.732, 65.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.771, 65.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.147, 65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.379, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.578, 65.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.628, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.622, 65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.481, 65.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.754, 65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.558, 65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.328, 65.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.317, 65.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.386, 65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.335, 65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.289, 65.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.202, 65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.293, 65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.239, 65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.27, 65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.189, 65.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.837, 65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.955, 65.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.599, 65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.557, 65.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.608, 65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.231, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.069, 65.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.588, 65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.606, 65.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.493, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.551, 65.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.065, 66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.12, 65.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.032, 66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.062, 66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.197, 66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.096, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.131, 65.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.121, 65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.187, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.117, 65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.257, 65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.365, 65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.166, 65.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.515, 66.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.454, 66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.561, 65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.422, 65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.994, 65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.455, 65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.143, 66.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.092, 65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.995, 70.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.375, 70.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.588, 70.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.988, 70.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.156, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.011, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.951, 71.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.039, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 71.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.521, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.484, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.526, 72.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.64, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.196, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 71.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.396, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.495, 71.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 71.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.301, 71.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.086, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 71.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.545, 71.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.52, 71.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 71.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.557, 71.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.589, 71.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.871, 71.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.607, 71.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6, 71.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.833, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 71.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.116, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.865, 71.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.514, 71.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.764, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.793, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 71.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.977, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.114, 71.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.004, 70.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -147.886, 60.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.158, 70.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.599, 70.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.341, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.282, 70.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.295, 70.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.109, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.139, 70.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.812, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.45, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.349, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.708, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.573, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -134.5, 62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 70.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.813, 70.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.656, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71, 70.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 70.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.687, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 70.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.752, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.709, 70.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.681, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 70.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98, 70.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.663, 70.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.592, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.704, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.262, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.574, 70.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.034, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.953, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.367, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 29.442, 86.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.236, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.524, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.991, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.056, 70.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.086, 70.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.273, 70.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.945, 70.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.296, 70.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13, 70.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.295, 70.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.536, 70.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.447, 70.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.224, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.287, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.307, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.249, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.293, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.286, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.073, 72.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.06, 72.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.508, 73.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.187, 73.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.606, 73.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.516, 73.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.591, 73.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.896, 73.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.612, 73.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.048, 73.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.751, 73.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.696, 73.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.064, 73.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.875, 73.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.201, 72.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.1, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.816, 73.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.065, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.695, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.9, 68.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.522, 68.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.531, 67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.368, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.847, 67.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.602, 67.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.082, 67.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.935, 67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.811, 67.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.752, 67.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.71, 67.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.729, 67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.299, 66.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.163, 66.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.161, 66.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.228, 66.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.222, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.227, 66.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.822, 66.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.422, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.417, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.732, 64.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.374, 64.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.718, 64.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.738, 64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.593, 63.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.745, 64.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.93, 64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.326, 64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.275, 64.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.219, 64.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.759, 64.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.178, 63.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.909, 63.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.142, 64.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.279, 63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.093, 63.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.925, 63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.395, 63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.363, 63.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.623, 63.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.822, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.816, 63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.774, 63.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.768, 63.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.94, 63.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.981, 63.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.909, 63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.682, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.231, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.544, 62.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.266, 62.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.445, 62.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.07, 62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.747, 62.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.691, 62.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.894, 62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -34.236, 56.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.313, 62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.36, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.307, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.548, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.415, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.378, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.27, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.893, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.635, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -15.951, 51.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.673, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.13, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.901, 63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.43, 62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.578, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.758, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.856, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.785, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.804, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.281, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.877, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.812, 62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.7, 62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.002, 62.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.932, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.893, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.825, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.82, 62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.939, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.886, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.832, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.498, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.823, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.843, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.636, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.873, 62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.826, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.837, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.774, 62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.802, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.548, 62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.552, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.754, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.82, 62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.78, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.593, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.259, 62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.673, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.705, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.697, 62.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.689, 62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.151, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.451, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.027, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.719, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.806, 62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.814, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.82, 62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.69, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.869, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.822, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.908, 62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.756, 62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.789, 62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.766, 62.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.873, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.893, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.94, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.877, 62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.586, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.596, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.508, 62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.345, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.232, 62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.347, 62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.522, 62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.854, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.864, 62.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.859, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.238, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.629, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.077, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.9, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.948, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.083, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.117, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.186, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.766, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.879, 62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.732, 62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.762, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.13, 62.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.902, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.468, 63.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.117, 62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.676, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.812, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.773, 62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.797, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.804, 62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.869, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.83, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.896, 62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.451, 62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.872, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.973, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.726, 62.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.0, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.685, 62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.522, 62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.562, 62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.513, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.533, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.521, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.499, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.473, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.723, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.315, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.229, 62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.333, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.345, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.446, 62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.405, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.403, 62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.251, 62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.699, 62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.648, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.499, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.852, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.929, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.03, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.082, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.014, 62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.295, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.382, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.527, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.621, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.655, 62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.753, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.687, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.825, 62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.761, 62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.84, 62.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.762, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.358, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.338, 62.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.398, 62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.143, 62.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.105, 62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.152, 62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.198, 62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.378, 62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.509, 62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.452, 62.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.435, 62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.739, 62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.723, 63.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.792, 63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.807, 63.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.93, 63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.828, 63.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.551, 62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.384, 62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.407, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.952, 62.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.033, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.757, 62.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.612, 62.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.018, 62.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.498, 62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.361, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.013, 63.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.404, 64.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.763, 64.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.975, 64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.201, 64.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.349, 64.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.187, 64.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.749, 64.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.598, 64.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 64.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 64.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.266, 64.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 64.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.988, 65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.928, 65.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.819, 65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.669, 64.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.5, 65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.211, 65.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.885, 65.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.587, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.533, 66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.536, 66.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.969, 67.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.679, 67.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.937, 67.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.425, 67.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.441, 67.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.291, 67.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.23, 67.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.961, 67.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.923, 67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.785, 67.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.252, 67.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.109, 67.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.927, 68.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.712, 68.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.132, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.473, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.081, 69.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.508, 69.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.925, 69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.816, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.029, 69.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.359, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.262, 69.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.453, 69.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.414, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.54, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.483, 69.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.447, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.385, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.3, 69.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.595, 69.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.836, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.89, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.422, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.432, 69.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.962, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.221, 69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.526, 69.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.131, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.727, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.541, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.921, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.454, 69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.863, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.944, 69.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.243, 69.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.522, 69.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.741, 68.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.563, 68.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.529, 68.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.783, 68.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.754, 68.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.725, 68.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.158, 68.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.264, 68.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.695, 68.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.774, 68.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.376, 68.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.656, 68.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.388, 67.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.5, 67.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.3, 67.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.309, 67.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.913, 67.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.92, 66.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.296, 66.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.185, 66.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.317, 66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.038, 66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.221, 65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.52, 65.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.879, 65.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.531, 65.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.904, 65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.611, 65.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 65.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.371, 65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 65.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.315, 66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.705, 65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 65.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.534, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.458, 65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.389, 65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.493, 65.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.42, 65.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.446, 65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.337, 65.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.642, 65.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.251, 65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 64.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.589, 65.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.148, 65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.392, 65.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.647, 65.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.899, 65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.586, 65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.638, 65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.2, 65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.96, 65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.746, 66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 65.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.675, 66.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.712, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.73, 66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.77, 66.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.061, 66.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.925, 66.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.865, 66.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.749, 66.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.563, 66.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.836, 66.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.416, 66.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.433, 66.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.459, 66.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 66.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 67.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.204, 67.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.227, 67.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.212, 67.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.194, 67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 67.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.286, 68.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 67.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.182, 67.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 67.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.794, 68.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.329, 67.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.802, 68.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.738, 68.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 68.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.826, 68.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.873, 67.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.869, 68.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.293, 68.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.369, 69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.509, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.593, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.475, 68.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 69.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.803, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.995, 69.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.795, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.157, 69.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.204, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.88, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.541, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.795, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.775, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.517, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.704, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.714, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.123, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.019, 69.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.85, 69.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.403, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.703, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.353, 69.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.849, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.867, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.511, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.098, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.51, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.592, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.543, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.382, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.848, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.221, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.461, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.68, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.648, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.515, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.961, 69.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.063, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.213, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.677, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.874, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.999, 69.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.963, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.264, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.397, 69.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.281, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.312, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.393, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.376, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.936, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.251, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.878, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.288, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.317, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.212, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.633, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.993, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.59, 69.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.371, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.833, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.282, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.947, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.859, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.31, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.586, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.509, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.923, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.96, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.438, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.576, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.196, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.348, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.409, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.357, 68.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.37, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.349, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.124, 69.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.028, 69.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 69.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.884, 69.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.846, 69.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.127, 69.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.847, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.919, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.924, 69.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.5, 69.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 69.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.706, 69.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 69.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.068, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.938, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.698, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.518, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.663, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.502, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.636, 69.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.695, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.58, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.732, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.728, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.571, 69.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.713, 69.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.762, 69.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 69.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.872, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.574, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.215, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.717, 69.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.742, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.828, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.048, 69.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.186, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.206, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.272, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.092, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.163, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.277, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.978, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.952, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.022, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.098, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.353, 69.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.022, 69.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.59, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.563, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.658, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 69.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.191, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.769, 69.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.378, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.364, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.513, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.421, 69.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.175, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.402, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.688, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.633, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.313, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.338, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.332, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.285, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.282, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.374, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.387, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.108, 69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.202, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.352, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.432, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.458, 69.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.497, 69.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.361, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.241, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.179, 69.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.114, 69.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.013, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.072, 69.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.032, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.456, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.389, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.124, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.977, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.424, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.315, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.254, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.012, 69.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.527, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.555, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.829, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.842, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.019, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.268, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.252, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.409, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.459, 69.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.177, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.231, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.432, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 69.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.391, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.365, 69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.259, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.355, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.324, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.158, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.935, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.127, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.099, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.808, 69.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.793, 69.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.397, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.321, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.392, 69.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.435, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.262, 69.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.342, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.297, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.335, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.36, 69.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.251, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.339, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.582, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.757, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.891, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.283, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.512, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.608, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.668, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.789, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.992, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.994, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.003, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.34, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.843, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.188, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.443, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.487, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.504, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.464, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.238, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.568, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.328, 70.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.472, 70.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 70.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.693, 71.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.205, 71.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.413, 71.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.899, 71.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 71.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.187, 71.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 71.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.168, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.173, 71.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.232, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.339, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.447, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.196, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.327, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.246, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.291, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.308, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.824, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 72.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.929, 72.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 72.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.775, 72.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.459, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.628, 72.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.805, 72.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 72.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 72.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.733, 72.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.536, 72.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 72.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 72.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 72.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 72.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 72.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 72.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.813, 72.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.778, 72.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.776, 72.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.784, 72.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.161, 72.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.657, 72.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.607, 72.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75, 72.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.278, 72.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.005, 72.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.214, 72.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.122, 72.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.214, 72.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.697, 72.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.083, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.103, 72.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.071, 72.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 72.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.168, 72.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.871, 72.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.177, 72.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.606, 72.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.285, 72.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.776, 72.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.189, 72.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.051, 72.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.988, 72.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.926, 72.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.026, 72.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 72.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.009, 72.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.575, 72.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.165, 72.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.334, 72.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.301, 72.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.238, 72.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.089, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.537, 72.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.472, 72.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.549, 72.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.229, 72.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.482, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.641, 72.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.619, 72.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.563, 72.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.477, 72.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.589, 72.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.565, 72.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.542, 72.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.526, 72.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.505, 72.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.373, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.327, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 72.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.397, 72.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 72.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.37, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.781, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.658, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.453, 72.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.513, 72.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.56, 72.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.445, 72.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.304, 72.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.207, 72.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.215, 72.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.147, 72.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.005, 72.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 72.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 73.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.775, 72.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.936, 72.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.851, 72.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.779, 72.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 72.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.441, 72.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.779, 72.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.747, 72.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.866, 72.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.596, 72.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.611, 72.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.525, 72.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.509, 72.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.469, 72.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.439, 72.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.414, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.058, 72.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.781, 72.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 72.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 72.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.039, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.216, 72.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.644, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.124, 72.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.501, 72.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.573, 72.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.012, 72.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.458, 72.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.044, 72.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.595, 72.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 72.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.336, 72.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.579, 72.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.643, 72.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.545, 72.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 72.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.485, 72.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.417, 72.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15, 72.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 72.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 72.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 72.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.492, 72.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 72.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.266, 72.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.39, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.456, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.345, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.396, 72.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.245, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.767, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.85, 72.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.846, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.373, 72.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.046, 72.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17, 72.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.231, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 72.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.401, 71.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 71.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.98, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.889, 72.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.605, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.616, 71.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.491, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.554, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.531, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.656, 71.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.589, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 71.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.429, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.447, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.449, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.495, 71.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43, 71.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 71.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.137, 71.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 71.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 71.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 71.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.145, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.298, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 71.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 71.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.972, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 71.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.703, 71.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27, 71.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.274, 71.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 71.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.894, 71.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.876, 71.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.496, 71.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.352, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.025, 70.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.449, 70.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.43, 70.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.429, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49, 70.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.457, 70.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.364, 70.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.567, 70.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.352, 70.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.545, 70.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.881, 70.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.935, 70.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.425, 70.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.984, 70.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 71.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 70.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.525, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.735, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.764, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.64, 70.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.746, 70.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.768, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.871, 70.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.867, 70.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.912, 70.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.041, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.912, 71.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 70.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.188, 71.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 71.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 71.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.893, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.833, 71.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.127, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.353, 70.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 71.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.283, 71.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.294, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.432, 71.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 71.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 71.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 71.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.282, 71.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.137, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.621, 71.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.335, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 70.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 70.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 70.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.137, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.987, 70.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 71.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.113, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 71.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 70.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.195, 70.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.435, 70.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.488, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.479, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.474, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 70.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.565, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 71.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 70.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 70.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 70.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 71.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.526, 70.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.593, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.611, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.422, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 71.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 70.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 71.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.611, 71.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59, 71.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.581, 71.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 71.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 71.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 71.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 71.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 71.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 71.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.557, 70.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.236, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.297, 70.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 71.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.119, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.381, 71.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 71.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 71.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.355, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.356, 71.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.316, 71.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.334, 71.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33, 71.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.309, 71.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 71.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.647, 71.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 71.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.495, 71.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.889, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.797, 70.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 70.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.942, 70.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 70.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.667, 70.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 70.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.438, 70.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 70.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 70.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 70.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.688, 70.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 70.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.448, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.034, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.868, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.664, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.192, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.678, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.682, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.602, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.382, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.134, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.895, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.769, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.839, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.632, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.652, 69.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.785, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.754, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.607, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.777, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.105, 69.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.767, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.852, 69.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.864, 69.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.845, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.844, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.061, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.913, 69.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.038, 69.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.061, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.18, 69.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.777, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.309, 69.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.002, 69.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.997, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.934, 69.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.033, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.992, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.034, 69.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.022, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.959, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.722, 69.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.778, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.74, 69.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.797, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.828, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.882, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.658, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.641, 69.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.685, 69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.431, 69.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.673, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.714, 69.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.865, 69.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.169, 69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.74, 69.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.733, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.666, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.611, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.89, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.994, 69.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.302, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.308, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.059, 68.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.885, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.79, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.68, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.741, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.665, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.754, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.16, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.954, 69.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.002, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.911, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.318, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.068, 74.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.074, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.339, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.357, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.549, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.236, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.302, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.32, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.618, 70.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.627, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.784, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.802, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.257, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.511, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.099, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.26, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.178, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.147, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.075, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.152, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.284, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.311, 69.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.288, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.145, 69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.163, 69.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.373, 69.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.836, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.951, 69.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.642, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.319, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.058, 69.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.294, 69.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.317, 69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.144, 68.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.408, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.467, 68.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.531, 69.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42, 68.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.791, 69.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 69.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.778, 69.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.757, 69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.971, 69.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.881, 69.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.741, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.872, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.806, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.551, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.046, 68.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.085, 69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.778, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.433, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.926, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.518, 69.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.534, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.284, 69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.605, 69.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.825, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.852, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.472, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 68.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.401, 68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.065, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.846, 69.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.771, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.833, 69.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.328, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.724, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.803, 69.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.527, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.54, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.475, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.436, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.493, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.326, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.135, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.03, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.004, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.158, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.017, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.009, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.122, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.887, 70.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.016, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.897, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.176, 70.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.374, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.559, 70.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.904, 70.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 70.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 70.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.136, 70.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.814, 70.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 70.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.304, 70.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.175, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 70.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98, 70.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.225, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.239, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.086, 70.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.195, 70.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 70.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 70.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5, 70.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.143, 70.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 70.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.583, 70.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 70.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 70.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 70.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 70.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.941, 70.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.703, 70.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.383, 70.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.587, 71.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 71.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.906, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49, 70.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88, 70.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.844, 70.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.462, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.849, 70.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.726, 70.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.489, 70.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.176, 70.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 70.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.872, 70.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.566, 70.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.772, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.445, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.127, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.172, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.362, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.328, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.113, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.119, 69.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.58, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 69.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.449, 69.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.157, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.151, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.078, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.083, 69.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.067, 69.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.293, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.395, 68.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.406, 67.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.576, 67.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.631, 67.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.024, 66.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.986, 67.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 67.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.117, 67.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.138, 67.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 67.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.225, 67.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.298, 67.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.486, 67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.87, 67.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.83, 67.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.682, 67.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.997, 67.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.959, 67.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.997, 67.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.892, 67.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.968, 67.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.963, 67.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.872, 67.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.819, 66.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.439, 66.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 66.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.301, 66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.367, 66.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.624, 66.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 66.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.069, 66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.083, 66.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.249, 66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.201, 66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.437, 66.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.302, 66.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.369, 66.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.627, 66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.36, 66.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.699, 66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.507, 66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 66.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.327, 65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 66.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.558, 65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.542, 65.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.779, 65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.853, 65.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.911, 65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.007, 65.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.059, 65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.057, 65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.622, 65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.48, 65.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.46, 65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.625, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.654, 65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.766, 65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.609, 65.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.759, 66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.5, 65.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.269, 65.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 64.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.169, 64.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.157, 64.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.287, 65.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.15, 65.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.307, 64.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.057, 64.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.151, 65.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.204, 65.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.976, 64.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.264, 64.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.325, 64.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.815, 64.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.51, 64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.573, 64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.638, 64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.823, 64.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.158, 64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.123, 64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.39, 63.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.315, 63.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.25, 63.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.263, 64.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.891, 63.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.682, 63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.675, 63.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.564, 63.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.407, 63.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.148, 63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.787, 63.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.751, 63.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.703, 63.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.441, 63.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.229, 63.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.128, 63.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.056, 63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.988, 63.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.759, 63.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.897, 63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.774, 63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.846, 62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.924, 63.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.204, 62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.748, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.707, 63.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.87, 62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.644, 63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.537, 62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.515, 62.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.521, 62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.519, 62.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.52, 62.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.567, 62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.849, 62.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.9, 62.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.795, 62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.022, 62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.979, 62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.069, 62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.089, 63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.314, 63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.323, 63.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.267, 63.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.278, 63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.275, 63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.215, 63.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.172, 63.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.246, 63.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.295, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.221, 63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.408, 63.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.529, 63.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.6, 63.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.67, 63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.619, 63.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.665, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.189, 62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.083, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.986, 62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.789, 62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.121, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.239, 62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.786, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.848, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.856, 62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.831, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.211, 62.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.375, 62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.518, 62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.468, 62.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.406, 62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.946, 62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 8.768, 48.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.88, 62.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.016, 62.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.919, 62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.129, 62.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.971, 62.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.861, 62.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.547, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.688, 62.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.843, 62.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.079, 62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.428, 62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.06, 62.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.988, 62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.901, 62.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.981, 62.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.971, 62.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.005, 62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.912, 62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.898, 62.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.2, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.974, 62.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.085, 62.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.129, 61.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.121, 61.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.095, 61.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.254, 61.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.154, 61.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.136, 61.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.204, 61.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.506, 61.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.144, 61.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.171, 61.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.764, 61.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.145, 61.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.183, 61.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.98, 61.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.154, 61.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.226, 61.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.29, 61.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.207, 62.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.269, 61.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.398, 62.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.388, 61.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.469, 61.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.474, 62.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.453, 62.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.507, 62.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.478, 62.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.412, 61.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.432, 61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.61, 62.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.381, 62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.284, 62.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.795, 61.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.417, 62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.707, 62.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.763, 62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.61, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.564, 62.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.637, 62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.835, 62.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.868, 62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.478, 62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.752, 62.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.521, 62.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.287, 62.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.604, 62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.462, 62.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.507, 62.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.669, 62.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.503, 62.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.482, 62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.52, 62.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.467, 62.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.51, 62.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.577, 62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.51, 62.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.936, 62.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.812, 61.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.963, 61.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.158, 61.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.021, 62.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.147, 62.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.295, 61.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.564, 62.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.391, 62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.921, 62.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.413, 62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.647, 62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.699, 62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.052, 62.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.19, 62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.955, 62.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.979, 62.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.194, 62.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.26, 62.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.12, 62.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.448, 62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.833, 62.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.88, 62.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.855, 62.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.895, 62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.098, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.348, 62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.13, 62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.292, 62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.254, 62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.315, 62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.341, 62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.325, 62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.361, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.232, 62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.677, 62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.971, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.635, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.137, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.413, 62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.421, 62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.597, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.703, 62.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.874, 62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.985, 62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.988, 62.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.573, 62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.62, 62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.646, 62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.314, 62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.717, 63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.103, 63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.254, 63.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.593, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.489, 63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.823, 63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.763, 62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.558, 62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.79, 62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.361, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.291, 62.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.432, 62.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.159, 62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.482, 62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.476, 62.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.523, 62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.61, 62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.875, 62.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.066, 62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.682, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.602, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.633, 62.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.761, 63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.534, 63.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.9, 63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.96, 63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.981, 63.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.922, 63.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.998, 63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.027, 63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.242, 63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.159, 63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.164, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.025, 63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.03, 63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.9, 63.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.95, 63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.048, 62.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.27, 63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.533, 62.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.645, 63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.301, 63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.89, 62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.855, 62.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.869, 62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.21, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.486, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.589, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.795, 62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.936, 62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.339, 62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.443, 62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.325, 62.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.306, 62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.289, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.459, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.323, 62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.442, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.367, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.431, 62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.923, 62.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.833, 62.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.641, 62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.658, 62.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.998, 62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.597, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.296, 62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.182, 62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.013, 62.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.282, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.597, 62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.036, 63.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.588, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.294, 62.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.56, 62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.012, 62.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.208, 62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.725, 62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.325, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.251, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.361, 62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.354, 62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.261, 62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.373, 62.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.387, 62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.556, 62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.243, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.582, 62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.486, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 62.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.606, 62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.778, 62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.74, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.667, 62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.521, 62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.537, 62.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.572, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.683, 62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.046, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.833, 62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.464, 62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.501, 62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.501, 62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.453, 62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.469, 62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.448, 62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.55, 62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.477, 62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.824, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.251, 62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.321, 62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.764, 62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.349, 62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.189, 62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.905, 62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.438, 62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.36, 63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.181, 62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.61, 62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.312, 62.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.684, 62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.299, 62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.429, 62.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.895, 62.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.816, 63.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.76, 63.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.513, 63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.353, 63.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.084, 63.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.122, 63.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -74.86, 63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.379, 62.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.548, 62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.912, 62.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.451, 62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.809, 62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.579, 62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.691, 62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.334, 62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.463, 62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.13, 62.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.13, 62.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.255, 62.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.248, 62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -69.11, 62.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.972, 62.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.119, 61.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.069, 61.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -67.072, 61.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.875, 62.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.814, 62.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.757, 61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.632, 61.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.7, 61.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.998, 61.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.076, 61.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.446, 62.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.532, 62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.587, 62.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.564, 62.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.578, 62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.634, 62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.661, 62.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.321, 62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.848, 62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.603, 62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.307, 62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.476, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.573, 62.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.428, 62.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.129, 62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.495, 62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.455, 62.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.53, 62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.469, 62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.302, 62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.338, 62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.782, 62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.707, 62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.85, 62.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.855, 62.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.845, 62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.75, 62.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.87, 62.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.937, 63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.92, 64.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.75, 63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.869, 64.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -63.926, 64.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.264, 65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.519, 65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.682, 65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.422, 65.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.4, 65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.436, 65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.434, 65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.455, 65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.467, 65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.625, 65.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.834, 65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -66.049, 65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.999, 65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.701, 65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.319, 65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.85, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.694, 68.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.692, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.43, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.583, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.793, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.332, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.098, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.247, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.592, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.829, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.097, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.824, 69.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.316, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.975, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.196, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.041, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.135, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.834, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.981, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.09, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.769, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.658, 69.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.856, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.54, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.767, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.653, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.666, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.815, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.026, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.117, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.237, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.74, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.717, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.494, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.344, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.346, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.472, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.481, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.485, 69.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.279, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.516, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.69, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.423, 69.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.458, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.467, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.49, 69.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.491, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.455, 69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.482, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 69.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.496, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 69.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.988, 69.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.205, 69.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.236, 69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.308, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.203, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.995, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.873, 69.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.627, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.289, 69.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.322, 69.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.093, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.085, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.984, 69.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.429, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -60.51, 66.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.387, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.276, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.759, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.634, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.798, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.811, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.491, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.791, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.805, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.802, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.789, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.771, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.759, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.725, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.721, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.725, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.715, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.43, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.956, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.175, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.131, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.826, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.255, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.507, 70.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.69, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.935, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.963, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.971, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.151, 69.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.968, 70.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.956, 70.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.396, 70.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 71.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 71.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.433, 71.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.232, 70.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.498, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 71.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 71.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.583, 71.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.784, 71.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.739, 71.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.755, 71.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.788, 71.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.756, 71.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.888, 71.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.841, 71.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.888, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.826, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.951, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96, 71.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.935, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.094, 71.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.975, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 71.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 71.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.127, 71.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.28, 71.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.072, 71.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.367, 71.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.484, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.977, 71.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.572, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.546, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.575, 70.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.516, 71.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.555, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -53.998, 79.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.576, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.465, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 71.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.465, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.449, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.408, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.755, 72.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.529, 71.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.465, 72.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.971, 72.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 72.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.495, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.414, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.395, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.41, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.356, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.528, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.671, 72.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.316, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.207, 72.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.313, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.29, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.729, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.466, 72.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.288, 72.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.301, 72.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.125, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.304, 72.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.083, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 72.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.281, 72.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.351, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36, 72.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.328, 72.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.317, 72.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 72.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32, 72.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 72.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 72.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.488, 72.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 72.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 72.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.716, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.691, 72.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.716, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.594, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.695, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.738, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.759, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.719, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.756, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.841, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.835, 72.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.761, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.763, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.792, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.778, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.809, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.945, 72.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.883, 72.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.816, 72.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.588, 72.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 72.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.684, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.738, 72.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.756, 72.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.804, 72.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.72, 72.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.743, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.826, 72.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.768, 72.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.747, 72.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.697, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.775, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.842, 72.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.826, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.806, 72.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.74, 72.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.772, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.768, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.745, 72.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.789, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.766, 72.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.787, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.715, 72.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.578, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.719, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.78, 72.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.741, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.77, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.704, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.667, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.647, 72.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.719, 72.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.69, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.034, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.693, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.585, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 72.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.584, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.625, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.774, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.731, 72.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.725, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.807, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.661, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.869, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.591, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 72.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.674, 72.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.673, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.734, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.688, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.83, 72.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.937, 72.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.426, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.737, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.796, 72.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.872, 72.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.782, 72.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.622, 72.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.669, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.786, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.739, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.511, 72.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.645, 72.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.784, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.736, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.76, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.784, 72.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 72.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.886, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.799, 72.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 72.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.618, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.651, 72.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.768, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.623, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.607, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.432, 72.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.606, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.585, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.54, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.671, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.649, 72.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.553, 72.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.536, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.556, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.553, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.454, 72.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.498, 72.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.519, 72.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.396, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.526, 72.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.554, 72.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.461, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.514, 72.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.462, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.45, 72.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.451, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.463, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.482, 72.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.58, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.79, 72.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.591, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.622, 72.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.579, 72.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 72.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.513, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.473, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.465, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.586, 72.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.587, 72.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.565, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.591, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.573, 72.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.446, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.509, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.519, 72.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.473, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.504, 72.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.654, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.515, 72.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.482, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.501, 72.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.376, 72.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.412, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 72.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.38, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47, 72.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.455, 72.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.507, 72.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.297, 72.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.501, 72.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.513, 72.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.518, 72.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 72.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.294, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.525, 72.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.544, 72.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51, 72.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.595, 72.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.632, 72.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.68, 72.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.462, 72.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 72.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.515, 72.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.362, 72.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.434, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.494, 72.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.607, 72.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.602, 72.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.579, 72.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.504, 72.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 72.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.357, 72.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.519, 72.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.529, 72.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.075, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.472, 72.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.49, 72.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 72.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.427, 72.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.498, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.29, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.336, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.507, 72.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.389, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.404, 72.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.356, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.387, 72.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.481, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.457, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.487, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.605, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.634, 72.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.675, 72.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.653, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.814, 72.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.82, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.821, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.838, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.853, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.849, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.717, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.723, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.721, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.688, 72.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.678, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.696, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.781, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.682, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.668, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.648, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.709, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.711, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.721, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.74, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.942, 72.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.758, 72.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.704, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.74, 72.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.944, 72.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.731, 72.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.729, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.727, 72.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.627, 72.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.675, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.639, 72.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.597, 72.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.526, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.56, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.488, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.463, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.483, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.535, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.416, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.462, 72.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.431, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.405, 72.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.457, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.471, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.475, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.473, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.203, 71.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.363, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.377, 71.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.554, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 71.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.256, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.712, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.112, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.122, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.208, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.046, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2, 71.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.723, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.226, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.473, 71.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.113, 71.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.175, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.136, 71.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.197, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.057, 71.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.135, 71.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 71.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.171, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 71.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.141, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.156, 71.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.172, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.198, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.127, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.083, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.087, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.099, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.08, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.071, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 71.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 71.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.996, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.097, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 71.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.167, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.336, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 71.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.027, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 71.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.145, 71.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.211, 71.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.779, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.083, 71.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.362, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 71.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.148, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.177, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 71.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.194, 71.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.312, 71.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.842, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.451, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.427, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.637, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.518, 71.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.335, 71.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.394, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.431, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.285, 71.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.212, 71.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.204, 71.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.28, 71.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.215, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.221, 71.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.198, 71.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.329, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.253, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3, 71.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.241, 71.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.271, 71.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 71.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.248, 71.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 71.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.262, 71.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.302, 71.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.246, 71.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.219, 71.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.299, 71.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.252, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.397, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.346, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.298, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.359, 71.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.451, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.315, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.285, 71.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.311, 71.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.244, 71.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 71.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.358, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.248, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 71.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.286, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.209, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.26, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.341, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.287, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.299, 71.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.175, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 71.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 71.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.153, 71.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.143, 71.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.222, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.161, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 71.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.227, 71.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.217, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.241, 71.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.196, 71.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.233, 71.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25, 71.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.238, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 71.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.214, 71.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 71.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 71.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.205, 71.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.255, 71.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.392, 71.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51, 71.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.567, 71.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.547, 71.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.49, 71.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 71.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.478, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.424, 71.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.421, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.407, 71.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.421, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.482, 71.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 71.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.592, 71.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.412, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.428, 71.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 71.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.248, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.548, 71.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.346, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.246, 71.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.941, 71.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.069, 71.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.292, 71.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.265, 71.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 71.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.257, 71.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33, 71.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 71.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.26, 71.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.26, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.289, 71.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 71.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.164, 71.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398, 71.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.355, 71.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.352, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.369, 71.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 71.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.472, 71.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.552, 71.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.349, 71.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.193, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.35, 71.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.572, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.075, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.402, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.275, 71.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.09, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.892, 71.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.079, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.678, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.943, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.146, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.925, 71.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.934, 71.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.948, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 71.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.198, 72.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.718, 71.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.142, 71.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.704, 71.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 71.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.564, 72.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 70.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.177, 71.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.274, 72.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 72.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.391, 72.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.174, 71.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.378, 70.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.04, 70.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.554, 71.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.64, 70.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.437, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.907, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.172, 70.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.111, 70.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.884, 70.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.625, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.509, 69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.263, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.301, 69.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.213, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.251, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.395, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.334, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.391, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.411, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.395, 69.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.404, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.465, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.445, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 69.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.158, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 69.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.858, 69.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.012, 69.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.898, 69.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.81, 69.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.66, 69.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.654, 69.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.77, 69.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.7, 69.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.655, 68.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.175, 69.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.769, 68.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.518, 68.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.904, 68.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.004, 68.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.098, 68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.824, 68.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.913, 68.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 68.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 68.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.139, 68.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.586, 68.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.805, 68.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.094, 68.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.864, 68.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 68.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 68.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -56.383, 72.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.197, 68.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.628, 67.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.077, 67.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.427, 67.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.33, 67.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 67.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.27, 67.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.72, 67.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.337, 67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.326, 67.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.299, 67.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.265, 67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.224, 67.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.348, 67.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.343, 67.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.223, 67.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.3, 67.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.316, 67.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.103, 67.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.015, 67.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.082, 67.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.125, 67.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.008, 67.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 67.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.964, 67.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.906, 67.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.045, 67.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 67.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.482, 67.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.811, 67.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.628, 67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.752, 67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.684, 67.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.699, 67.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 67.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.488, 67.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.462, 67.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.381, 67.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.492, 67.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.39, 67.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.777, 67.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.362, 67.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.455, 67.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.296, 67.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.331, 67.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.335, 67.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.25, 67.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.227, 67.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.22, 67.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.522, 67.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.863, 67.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.53, 67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.019, 67.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.103, 67.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.077, 67.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.089, 67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.044, 67.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.048, 67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.088, 67.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.069, 67.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.916, 67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.043, 67.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.07, 67.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.989, 67.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.017, 67.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.02, 67.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.999, 67.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.97, 67.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.937, 67.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.915, 67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.924, 67.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.9, 67.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.911, 67.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.293, 67.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.368, 67.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.262, 67.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.282, 67.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.293, 67.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.359, 67.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.497, 67.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.422, 67.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.404, 67.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.505, 67.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.547, 67.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.573, 67.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.642, 67.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.661, 67.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.693, 67.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.737, 67.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.706, 67.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.636, 67.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.643, 67.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.639, 67.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.654, 67.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.587, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.536, 67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.623, 67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.684, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.687, 67.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.727, 67.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.792, 67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.785, 67.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.874, 67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.803, 67.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.734, 67.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.833, 67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.86, 67.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.837, 67.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.964, 67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.989, 67.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.925, 67.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.991, 67.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.997, 67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.016, 67.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.1, 67.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.068, 67.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.046, 67.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.998, 67.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.186, 67.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.138, 67.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.126, 67.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.849, 67.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.173, 67.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.946, 67.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.043, 67.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.024, 67.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.006, 67.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.946, 67.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.029, 67.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.864, 67.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.891, 67.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.946, 67.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.862, 67.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.914, 67.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.878, 67.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.882, 67.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.886, 67.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.907, 67.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.921, 67.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.846, 67.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.872, 67.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.87, 67.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.952, 67.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.925, 67.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.057, 67.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.58, 67.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.903, 67.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.878, 67.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.907, 67.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.025, 67.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.824, 67.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.818, 67.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.864, 67.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.854, 67.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.082, 67.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.948, 67.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.941, 67.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.819, 67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.873, 67.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.853, 67.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.889, 67.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.881, 67.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.873, 67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.863, 67.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.856, 67.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.898, 67.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.907, 67.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.718, 67.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.887, 67.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.84, 67.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.931, 67.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.924, 67.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.584, 67.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.475, 67.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.921, 67.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.549, 67.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.265, 67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.521, 67.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.62, 68.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.52, 68.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.532, 68.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.679, 68.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.146, 68.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.997, 68.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.388, 68.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.611, 68.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.17, 68.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.294, 68.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 68.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.296, 68.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.365, 68.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.215, 68.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.362, 68.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.283, 68.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.336, 68.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.533, 69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.408, 69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 69.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.055, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.092, 69.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.849, 69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.507, 69.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.016, 69.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.157, 69.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.447, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.24, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.535, 69.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.378, 69.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.228, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.324, 69.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.34, 69.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 69.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.396, 69.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.086, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.408, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.66, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.76, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.129, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.16, 69.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.185, 69.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.654, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.34, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.413, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.479, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.536, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.952, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.479, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.462, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.583, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.505, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.163, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.549, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.526, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.425, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.946, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.665, 69.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.638, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.63, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.754, 69.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.881, 69.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.806, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.849, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.564, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.638, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.53, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.549, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.259, 69.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.71, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.706, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.028, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.91, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.609, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.51, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.46, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.587, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.63, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.592, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.701, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.742, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.795, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.893, 69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.364, 69.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.639, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.782, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.901, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.663, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.483, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.772, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.119, 69.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.883, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.228, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.819, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.933, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.169, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.017, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.926, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.917, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.087, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.593, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.607, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.651, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.777, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.883, 69.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.916, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.412, 70.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.863, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.741, 70.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.059, 70.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.274, 70.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.963, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.57, 70.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.175, 70.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.274, 70.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.815, 70.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.646, 70.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.151, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.052, 70.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.187, 70.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.902, 71.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.717, 71.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.306, 71.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.465, 71.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.714, 71.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.612, 71.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.521, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.006, 71.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.767, 71.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.857, 71.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.621, 71.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.913, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.941, 71.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 71.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.309, 71.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.933, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.985, 71.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.859, 71.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 71.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.146, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.046, 71.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 71.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.232, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3, 71.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 71.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.378, 71.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.443, 71.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.301, 71.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.441, 71.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.508, 71.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37, 71.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.678, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.412, 71.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 71.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.714, 71.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 71.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 71.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.749, 71.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 71.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.694, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 71.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 71.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 71.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.151, 71.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.723, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.986, 71.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76, 71.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.015, 71.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.814, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.855, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.864, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 71.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 72.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.861, 71.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.858, 71.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 71.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.937, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.738, 71.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 71.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 71.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8, 71.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.883, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.923, 71.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 71.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 71.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.029, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.127, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.114, 71.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.158, 71.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.135, 71.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.346, 71.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.354, 71.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.364, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.266, 71.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 71.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.424, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.395, 71.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.458, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.524, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.495, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.66, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.627, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.651, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.623, 72.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.497, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.668, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.72, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.789, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.741, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.545, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.773, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.753, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.713, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.734, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.276, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.671, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.649, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.609, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.649, 72.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.514, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.607, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.585, 72.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.433, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 72.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.697, 72.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.574, 72.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.564, 72.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.951, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 72.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.472, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.729, 72.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.69, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.688, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.712, 72.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.705, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.629, 72.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.721, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.688, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.579, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.703, 72.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.75, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.713, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.671, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.805, 72.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.691, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.662, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.729, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.713, 72.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.631, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.662, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.676, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.575, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.707, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.728, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.713, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.719, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.801, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.285, 72.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.727, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.702, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.755, 72.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.712, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.724, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.638, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.722, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.624, 72.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.745, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.702, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.65, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.727, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.701, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.708, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.661, 72.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.78, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 72.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.521, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.525, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.565, 71.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.456, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.516, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.509, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.502, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.422, 71.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.671, 71.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.531, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.756, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.643, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.626, 71.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.662, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.68, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.63, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.65, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.689, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.707, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.647, 71.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.578, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.627, 71.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.642, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.999, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.631, 71.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.631, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.552, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.554, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 72.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.514, 72.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.605, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.57, 72.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.592, 72.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.664, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.709, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.691, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.611, 72.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.705, 71.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.764, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.695, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.706, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.797, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.706, 71.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.658, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.753, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.719, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.689, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.712, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.69, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.699, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.751, 71.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.744, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.704, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.63, 71.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.663, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.688, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.605, 71.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.701, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.852, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.65, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.677, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.611, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.745, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.735, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.489, 71.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.753, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.724, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.722, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.703, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.729, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.546, 71.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.276, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.89, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.889, 71.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.706, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.648, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.661, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.676, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.715, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.864, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.746, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.651, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.596, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.602, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.473, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.628, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.593, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.592, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.618, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.677, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.638, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.658, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.657, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.627, 71.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.61, 71.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.838, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.603, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.476, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.665, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.762, 71.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.904, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.294, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.932, 71.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.696, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.578, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.687, 71.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.77, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.782, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.767, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.659, 71.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.717, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.993, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.075, 71.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.403, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.828, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.733, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.685, 71.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.688, 71.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.761, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.393, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.402, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.876, 71.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.766, 71.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.754, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.831, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.721, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.799, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.818, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.821, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.708, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.806, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.968, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.836, 71.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.828, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.805, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.838, 71.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.812, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.448, 72.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.715, 71.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.796, 71.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.853, 71.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.756, 71.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.696, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.751, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.659, 71.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.77, 71.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.724, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.746, 71.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.8, 71.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.896, 71.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.739, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.733, 71.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.747, 71.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.698, 71.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.651, 71.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.68, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.688, 71.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.643, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.796, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.743, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.623, 71.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.639, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.697, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.692, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.707, 71.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.776, 71.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.765, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.734, 71.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.734, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.711, 71.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.707, 71.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.725, 71.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.737, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.861, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.566, 71.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.659, 71.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.609, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.676, 71.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.693, 71.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.653, 71.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.654, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.702, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.701, 71.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.666, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.648, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.698, 71.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.673, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.734, 71.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.669, 71.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 71.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.895, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.697, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.718, 71.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.679, 71.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.63, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.682, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.875, 71.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.733, 71.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.691, 71.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.742, 71.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.661, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.725, 71.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.956, 71.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.649, 71.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.751, 71.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.71, 71.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.798, 71.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.758, 71.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.768, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 71.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.752, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 71.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.789, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.698, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.756, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.737, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.706, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.939, 71.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.766, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.006, 71.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.756, 71.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.757, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.718, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.689, 71.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.695, 71.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.699, 71.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.592, 71.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.719, 71.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67, 71.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.603, 71.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.654, 71.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.585, 71.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.672, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.617, 71.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.693, 71.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.883, 71.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.901, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.547, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.658, 71.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.686, 71.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.678, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.68, 71.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.655, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.699, 71.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.641, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.701, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 71.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.723, 71.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 71.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.71, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.675, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.719, 71.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.711, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.046, 71.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.762, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.871, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.588, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73, 71.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.615, 71.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.678, 71.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.735, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.725, 71.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.554, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.722, 71.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.785, 71.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.728, 71.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.71, 71.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.716, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.716, 71.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.818, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.685, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.948, 71.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.627, 71.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.561, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.594, 71.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.586, 71.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.532, 71.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.638, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.581, 71.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.39, 71.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.42, 71.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.391, 71.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.479, 71.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.436, 71.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.582, 71.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.576, 71.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.286, 71.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.499, 71.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.545, 71.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.529, 71.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.935, 71.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 71.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.565, 71.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.53, 71.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.494, 71.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.503, 71.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 71.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.535, 71.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.468, 71.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.435, 71.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.506, 71.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.492, 71.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 71.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5, 71.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 71.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15, 71.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.496, 71.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.715, 71.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.482, 71.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.508, 71.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.583, 71.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.692, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.646, 71.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.689, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.798, 71.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.632, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.644, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93, 71.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.635, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.622, 71.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.618, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.612, 71.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.625, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.206, 71.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.018, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.626, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.62, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.602, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.361, 71.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.853, 70.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.627, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.623, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.605, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.549, 71.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.55, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.625, 72.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.62, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 71.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.616, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.622, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.627, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.61, 71.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.615, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.596, 71.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.61, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 71.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.631, 71.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.615, 71.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.615, 71.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.612, 71.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.604, 71.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.614, 71.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.602, 71.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.784, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.541, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.724, 71.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.544, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.531, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.535, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.53, 72.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.536, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.535, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.516, 72.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.49, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.545, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 72.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.537, 72.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.534, 72.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.534, 72.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.539, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.529, 72.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.529, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.532, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.52, 72.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.538, 72.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.527, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.521, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.703, 71.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.528, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.525, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.527, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.256, 72.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.533, 72.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.511, 72.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 72.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.912, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.51, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.576, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.591, 72.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.545, 72.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.603, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.589, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.764, 72.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.511, 73.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.642, 73.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.648, 73.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.621, 73.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.618, 73.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.613, 73.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.595, 73.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.609, 73.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.646, 73.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.581, 73.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.588, 73.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.584, 73.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.573, 73.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.574, 73.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.547, 73.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.496, 73.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.515, 73.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.506, 73.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.509, 73.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.441, 73.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.498, 73.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.462, 73.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.445, 73.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.454, 73.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.462, 73.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.464, 73.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.475, 73.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.197, 72.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.606, 73.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.548, 73.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.495, 73.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.511, 73.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.516, 73.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.524, 73.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.522, 73.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.518, 73.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.511, 73.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.522, 73.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.493, 73.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.419, 73.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.395, 73.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.393, 73.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.594, 73.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.385, 73.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.202, 73.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.206, 73.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.196, 73.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.187, 73.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.184, 73.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.186, 73.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.182, 73.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.188, 73.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.185, 73.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.196, 73.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.19, 73.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.211, 73.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.209, 73.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.253, 73.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.245, 73.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.232, 73.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22, 73.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.541, 75.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.195, 73.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2, 73.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.165, 73.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.647, 73.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.213, 73.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.152, 73.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.174, 73.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.693, 74.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92, 73.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.913, 73.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9, 73.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.891, 73.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.905, 73.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.927, 73.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.907, 73.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.887, 73.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.97, 73.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.009, 73.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.801, 73.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.918, 72.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.776, 64.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 72.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 72.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 72.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 72.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 72.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 72.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.449, 72.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.419, 72.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.441, 72.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.431, 72.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.453, 72.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.423, 72.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 72.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.437, 72.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.431, 72.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 72.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.426, 72.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 73.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 72.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 72.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.408, 72.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 72.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.405, 72.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 72.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.411, 72.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.407, 72.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 72.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.395, 72.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.39, 72.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.395, 72.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.386, 72.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.392, 72.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.341, 72.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08, 72.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 72.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.394, 72.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.399, 72.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 72.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.398, 72.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.399, 72.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.383, 72.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 72.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.393, 72.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 72.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 72.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.101, 72.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.379, 72.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.375, 72.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.728, 73.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.395, 72.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.367, 72.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.395, 72.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.369, 72.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.394, 72.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 72.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.386, 72.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 72.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.402, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.419, 72.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 72.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.218, 74.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.423, 72.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.412, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 72.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.399, 71.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.426, 72.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 72.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.531, 72.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.533, 72.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 72.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.562, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 72.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 72.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.603, 72.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 72.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 72.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.638, 72.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 72.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.662, 72.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 72.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 72.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 72.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.692, 72.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 72.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 72.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 72.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 72.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.619, 71.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.595, 71.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.602, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.606, 71.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 71.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61, 71.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.612, 71.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.606, 71.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.604, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.558, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 70.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.611, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61, 71.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.603, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.621, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.625, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.925, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.618, 71.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.642, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.613, 71.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.095, 70.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.63, 71.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.651, 71.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.623, 71.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.616, 71.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.637, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.636, 71.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.63, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.635, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.628, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.625, 71.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.633, 71.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.284, 70.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.156, 70.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.193, 70.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.192, 70.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.149, 70.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.088, 70.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.111, 70.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.118, 70.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 70.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 70.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.111, 70.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 70.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 70.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 70.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 70.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.922, 70.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.893, 70.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.88, 70.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.873, 70.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.872, 70.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.363, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.808, 70.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 70.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 70.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.789, 70.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.763, 70.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.583, 70.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 70.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.709, 70.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.676, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 70.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 70.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 70.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66, 70.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.649, 70.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 70.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 70.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 70.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 70.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.443, 70.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 70.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 70.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.474, 70.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 70.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.495, 70.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.489, 70.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.184, 70.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 70.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.194, 70.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 70.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 70.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.766, 70.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.216, 70.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 70.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 70.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.211, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 70.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.229, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 70.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.196, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.762, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.254, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.253, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 70.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.282, 70.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 70.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.301, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.346, 70.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.371, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.364, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 70.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.497, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.378, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.375, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.438, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.437, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.435, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.448, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.455, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.486, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.533, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.551, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.739, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.708, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.741, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.753, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.716, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.692, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.581, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.336, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.316, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.348, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.324, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.326, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.309, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.026, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.067, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.241, 69.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.812, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.056, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.053, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.061, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.786, 66.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.047, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.692, 70.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.017, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.015, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.001, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.979, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.981, 69.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.499, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 69.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.014, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.949, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.951, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.97, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.963, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.962, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.971, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.977, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.964, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.922, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.899, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.962, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.927, 69.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.977, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.975, 69.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.018, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.035, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.391, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 69.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.086, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 69.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.067, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.073, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.056, 69.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.158, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.073, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.036, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 69.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.044, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.055, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.824, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.056, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.044, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.043, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.047, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.118, 69.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.035, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.984, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.467, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.003, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.017, 69.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.005, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.023, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.019, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.995, 69.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.017, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.056, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.018, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.022, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.001, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.026, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.381, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.033, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.053, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.112, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.259, 72.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.078, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.067, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.096, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.866, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.085, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.829, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.795, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.078, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.114, 68.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.063, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.063, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.071, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.074, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.195, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.194, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.085, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.117, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.089, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.078, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.074, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.082, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.719, 69.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.086, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.067, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.072, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.071, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.085, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.085, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.086, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.085, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.76, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.176, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.465, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.878, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.031, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.036, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.023, 69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.037, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.045, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.016, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.031, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.036, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.071, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.023, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.018, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.987, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.126, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.964, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.989, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.984, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.226, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.003, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.008, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.605, 69.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.992, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.003, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.647, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.005, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.031, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.008, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.019, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.017, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.008, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.006, 69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.927, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.016, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.008, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.011, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.005, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.006, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.015, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.006, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 69.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.104, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.773, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.737, 69.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.769, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.762, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.758, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.759, 69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.749, 69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.575, 69.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.012, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.719, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.707, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.696, 69.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.682, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.031, 69.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.977, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.616, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.63, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.581, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 69.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.458, 69.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.473, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.338, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.322, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.313, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.311, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.313, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.324, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32, 69.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.331, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.28, 69.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 69.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.264, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.258, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.226, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.205, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.602, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.251, 69.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.286, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.29, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.304, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.287, 69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.278, 69.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.176, 69.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.162, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.163, 69.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.169, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.182, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.41, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.074, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.393, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.966, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.486, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.457, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.892, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.908, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.772, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.309, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.165, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.432, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.989, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.214, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.16, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.178, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.54, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.447, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.426, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.619, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.61, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.436, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.348, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.864, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.781, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.974, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.618, 70.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64, 70.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.996, 70.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.738, 71.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 71.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.486, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.389, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.524, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 71.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.567, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 71.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 71.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36, 71.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.918, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 71.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.536, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.515, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 71.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.391, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.632, 71.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.865, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 71.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.682, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.638, 72.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.607, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.215, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.074, 71.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.914, 72.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.407, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.24, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.336, 72.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 72.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 72.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 72.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 72.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 72.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.149, 72.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.102, 72.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9, 72.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.882, 72.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.908, 72.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 72.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.762, 72.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.809, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.799, 72.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.457, 72.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.812, 72.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.772, 72.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.964, 72.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.067, 72.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.101, 72.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 72.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.403, 72.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 72.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.954, 72.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 72.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.281, 72.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.369, 72.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 72.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.452, 72.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.305, 72.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.531, 72.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 72.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.611, 72.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 72.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 72.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 72.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.767, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 72.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.885, 72.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.976, 72.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 72.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.024, 72.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 72.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.743, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.679, 72.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 72.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.566, 72.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.437, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.162, 72.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.103, 72.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.177, 72.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.322, 72.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.295, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.496, 72.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.378, 72.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 72.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.397, 72.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.368, 72.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.404, 72.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.442, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.062, 72.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.245, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.386, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.184, 72.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.229, 72.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 72.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.875, 72.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.277, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 72.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 72.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.912, 72.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 72.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.986, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.001, 72.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 72.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.092, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.704, 72.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 72.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.426, 72.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.526, 72.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.462, 72.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.309, 72.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.359, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.045, 72.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 72.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.273, 72.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.243, 72.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.453, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.882, 72.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.325, 72.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 72.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.271, 72.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 72.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.206, 72.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.326, 72.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 72.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 72.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 72.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.259, 72.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 72.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.137, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.117, 72.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.864, 72.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.856, 72.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.841, 72.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 72.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 72.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.167, 72.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 72.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 72.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.643, 72.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.697, 72.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.034, 72.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.512, 72.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.829, 72.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.001, 72.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.717, 72.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 72.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.234, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.765, 72.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 72.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.859, 72.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.569, 65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.148, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.924, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.419, 69.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.326, 69.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.47, 70.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.855, 69.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.255, 71.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.102, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.178, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.161, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.857, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.715, 69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.381, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.615, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.495, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.297, 69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.254, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.021, 69.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.279, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.145, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.218, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.348, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.291, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.118, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.984, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.224, 69.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.102, 69.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.162, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.13, 69.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.127, 69.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.906, 63.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.973, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.972, 69.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.944, 69.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.89, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 69.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.796, 69.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.031, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.832, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.909, 69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.707, 69.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.832, 69.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.981, 69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.047, 69.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.034, 69.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.239, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.055, 69.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.155, 69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.267, 69.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.11, 69.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.857, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.38, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.747, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.303, 69.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.072, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.572, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.006, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.004, 69.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.935, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.743, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.175, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.066, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.26, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.164, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.334, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.374, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.714, 72.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.219, 71.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.732, 68.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.003, 67.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.695, 64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.722, 68.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.696, 69.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.896, 69.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.327, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.229, 68.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.454, 68.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.699, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.548, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.553, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.624, 69.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.9, 68.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.537, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.524, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.452, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.531, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.46, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.541, 69.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.549, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.58, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.632, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.631, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.677, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.038, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.013, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.004, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.565, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.021, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.793, 69.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.167, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.072, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -126.406, 61.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.74, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.047, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.051, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.451, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.832, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.327, 70.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.653, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.39, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.199, 69.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.566, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.229, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.09, 70.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.385, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.303, 66.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.282, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.753, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.148, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.92, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.127, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.723, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.963, 69.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.74, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.25, 70.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.955, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.089, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.541, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.512, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.501, 69.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.393, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.628, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.672, 70.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.656, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.416, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.587, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.625, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.033, 70.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.636, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.743, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.745, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.683, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.742, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.9, 69.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.284, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.265, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.131, 69.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.113, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.926, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.336, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.338, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.282, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.321, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.486, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.394, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.374, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.949, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.179, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.459, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.72, 69.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.43, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.444, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.463, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.518, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.518, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.502, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.49, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.498, 69.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.075, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.025, 66.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.889, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.559, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.561, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.551, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.64, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.119, 69.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.541, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.524, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.147, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.503, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.665, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.491, 69.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.49, 69.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.137, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.499, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.435, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.493, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.501, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.51, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.69, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.955, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.381, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.439, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.704, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.578, 69.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.535, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.521, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.524, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.532, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.541, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.542, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.54, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.782, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.576, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.529, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.587, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.897, 69.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.307, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.539, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.529, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.582, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.558, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.716, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.468, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.482, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.621, 72.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.246, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.234, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.249, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.264, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.099, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.8, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.293, 69.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.39, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.371, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.401, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.363, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.404, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.296, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.666, 68.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.354, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.335, 69.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.386, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.593, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.422, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.374, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.385, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.367, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.417, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.541, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.421, 69.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.416, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.424, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.388, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.369, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.621, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.549, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.577, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.396, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.442, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.367, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.168, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.379, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.393, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.33, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.266, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.188, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.343, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.325, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.421, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.164, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.337, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.291, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.168, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.394, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.394, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.381, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.386, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.389, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.383, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.278, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.399, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.52, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.517, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.403, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.394, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.393, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.398, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.406, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.409, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.392, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.51, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.508, 69.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.405, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.321, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.643, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.222, 69.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.649, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.65, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.499, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.859, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.704, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.582, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.6, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.711, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.633, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.196, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.708, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.731, 69.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.689, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.879, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.856, 69.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.699, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.789, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.787, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.709, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.791, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.895, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.692, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.683, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.635, 69.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.813, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.605, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.497, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.427, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.453, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.337, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.428, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.721, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.491, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.117, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.239, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.139, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.175, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.342, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.218, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.842, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.28, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.086, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.916, 69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.291, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.767, 69.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.347, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.314, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.294, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.315, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.281, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.306, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.319, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.291, 69.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.229, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.244, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.276, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.224, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.254, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.063, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.559, 68.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.089, 72.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.625, 69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.889, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.603, 74.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.153, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.095, 69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.629, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.062, 71.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.08, 67.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.681, 73.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.112, 67.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.341, 70.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.183, 68.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.062, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.143, 68.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.03, 67.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.13, 68.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.485, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.026, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.08, 72.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.04, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.653, 67.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.21, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.771, 70.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.589, 70.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.575, 67.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.914, 74.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.35, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.011, 62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.82, 69.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.765, 68.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.763, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.954, 69.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.891, 74.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.025, 74.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.39, 72.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.452, 69.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -73.784, 60.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.536, 71.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.533, 72.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.589, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.63, 69.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.061, 68.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.558, 70.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.713, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.724, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.124, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.688, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.093, 73.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.852, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.798, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.794, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.784, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.828, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.032, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.835, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.846, 69.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.836, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.029, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.84, 69.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.436, 70.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.698, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.836, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.295, 69.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.202, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -47.909, 62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.996, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.192, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.529, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.396, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.891, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.521, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.402, 67.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.378, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.377, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.381, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.694, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.397, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.378, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.995, 52.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.379, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.375, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.551, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.376, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.378, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.393, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.394, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.372, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.377, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.441, 69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.313, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.71, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.62, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.44, 69.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.112, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.709, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.149, 69.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.286, 65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.506, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.859, 69.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.603, 70.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.999, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.059, 69.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.033, 69.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.111, 69.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.097, 69.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.121, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.17, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.161, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.238, 69.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.164, 69.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.266, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.145, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.685, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.458, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.35, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.162, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.163, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.168, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.169, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.565, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.181, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.177, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.169, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.172, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.171, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.167, 69.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.322, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.177, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.163, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.169, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.168, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.167, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.166, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.092, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.135, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.164, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.159, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.172, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.104, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.152, 69.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.163, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.16, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.155, 69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.148, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.106, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.184, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.159, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.124, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.809, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.137, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.077, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.222, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.195, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.173, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.184, 69.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.525, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.645, 70.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.162, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.207, 69.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.218, 69.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.152, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.02, 68.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.32, 69.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.309, 69.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.999, 70.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.304, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.403, 70.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.429, 69.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.008, 69.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.716, 69.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.985, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.98, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.078, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.012, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.005, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.015, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.984, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.001, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.961, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.955, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.85, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.013, 69.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.003, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.828, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.499, 69.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.0, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.082, 69.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.073, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.094, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.076, 69.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.075, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.153, 69.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.087, 69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.123, 69.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.173, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.166, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.107, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.384, 69.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.108, 69.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.138, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.236, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.204, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.108, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.157, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.15, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.275, 69.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.145, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.026, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.994, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.092, 69.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.091, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.12, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.088, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.219, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.137, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.153, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.133, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.155, 69.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.271, 69.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.223, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.814, 69.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.866, 69.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.891, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.885, 69.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.815, 69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.809, 69.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.889, 69.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.771, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.815, 69.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.62, 69.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.571, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.747, 69.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.978, 69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.111, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.946, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.869, 69.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.8, 69.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.626, 69.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.918, 69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.774, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.77, 69.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.841, 69.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.843, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.839, 69.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.759, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.811, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.76, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.769, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.743, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.782, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.779, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.087, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.767, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.787, 69.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.785, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.785, 69.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.786, 69.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.792, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.089, 70.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.599, 69.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.241, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.101, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.167, 68.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.656, 69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.585, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.24, 69.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.579, 69.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.618, 69.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.55, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.53, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.596, 69.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.531, 69.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.142, 75.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.517, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.556, 69.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.418, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.651, 69.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.752, 69.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.864, 69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.619, 69.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.006, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.961, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.022, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.974, 69.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.943, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.042, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.022, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.036, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.035, 69.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.057, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.05, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.07, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.062, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.06, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.959, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.059, 69.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.931, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.063, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.105, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.102, 69.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.174, 67.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.128, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.103, 69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.105, 69.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.807, 69.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.187, 70.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.098, 69.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.106, 69.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.099, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.098, 69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.098, 69.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.116, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.098, 69.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.101, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.165, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.234, 69.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.324, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23, 69.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.306, 69.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.306, 69.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.26, 69.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.299, 69.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.163, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.342, 69.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.356, 69.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.364, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.387, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.385, 69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.596, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.595, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.275, 69.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.456, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.456, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.261, 69.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.225, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.93, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.234, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.521, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.044, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.767, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.283, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.99, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.966, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.932, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.952, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.95, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.94, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.96, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.898, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.991, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.904, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.929, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.046, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.019, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.956, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.935, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.934, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.908, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.078, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.639, 68.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.015, 69.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.87, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.828, 69.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.593, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.451, 69.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.306, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.277, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.828, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.951, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.872, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.755, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.793, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.717, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.698, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.852, 69.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.866, 69.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.192, 60.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.136, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.907, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.635, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.965, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.043, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.032, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.134, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.129, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.11, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.109, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.149, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.098, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.132, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.028, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.977, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.038, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.556, 70.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.129, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.104, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.094, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.158, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.157, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.345, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.618, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.445, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.515, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.628, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.588, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.726, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.632, 69.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.013, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.032, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.062, 69.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.93, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.092, 69.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.275, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.258, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.446, 69.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.261, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.404, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.746, 70.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.486, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.541, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.622, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.627, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.649, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.648, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.914, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.771, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.813, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.422, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.748, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.899, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.85, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.999, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.998, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.982, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.039, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.023, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.926, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.058, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.208, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.19, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.977, 75.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.097, 69.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.905, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.887, 69.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.93, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.907, 69.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.773, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.01, 69.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.85, 69.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.862, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.452, 53.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.816, 69.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.963, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.849, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.824, 69.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.865, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.9, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.686, 50.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.877, 69.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.926, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.912, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.93, 69.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.925, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.914, 69.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.001, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.999, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.95, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.601, 68.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.834, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.845, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.812, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.771, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.852, 69.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.851, 69.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.727, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.827, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.788, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.727, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.48, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.473, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.472, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.368, 73.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.109, 69.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.177, 70.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.691, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.035, 70.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.823, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.019, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.915, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.983, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.944, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.13, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.006, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.936, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.934, 69.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.902, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.819, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.811, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.892, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.623, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.837, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.268, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.858, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.536, 72.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.99, 70.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.685, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.73, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.642, 69.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.436, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.918, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.918, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.159, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.01, 70.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.007, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.986, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.787, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.786, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.568, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.745, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.532, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.57, 69.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.588, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.535, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.678, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.668, 69.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.584, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.69, 69.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.689, 69.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.731, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.606, 68.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.642, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.773, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.656, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.783, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.779, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.071, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.766, 69.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.938, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.767, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.878, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.704, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.061, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.853, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.851, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.85, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.791, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.839, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.829, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.824, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.689, 69.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.688, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.76, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.75, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.699, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.81, 69.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.748, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.72, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.725, 69.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.884, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.737, 69.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.764, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.768, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.744, 69.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.761, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.756, 69.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.289, 69.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.757, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.857, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.799, 69.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.79, 69.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.82, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.823, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.861, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.821, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.875, 69.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.082, 69.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.926, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.916, 69.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.904, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.883, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.925, 69.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.851, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.874, 69.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.866, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.343, 64.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.031, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.935, 69.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.01, 69.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.06, 69.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.054, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.046, 69.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.137, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.074, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.066, 69.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.963, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.04, 69.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.659, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.155, 69.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.141, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.747, 69.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.168, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.261, 69.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.133, 69.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.131, 69.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.732, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.139, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.153, 69.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.132, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.217, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.099, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.117, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.111, 69.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.069, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.168, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.593, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.313, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.278, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.953, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.728, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.788, 69.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.655, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.579, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.721, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.692, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.746, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.73, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.905, 69.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.866, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.731, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.847, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.424, 60.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.793, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.732, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.72, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.615, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.612, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.615, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.577, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.552, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.529, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.561, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -61.04, 69.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.574, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.647, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.54, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.67, 69.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.587, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.567, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.594, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.689, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.582, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.472, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.616, 70.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.56, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.529, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.623, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.469, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.602, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.731, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.567, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.306, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.183, 69.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.544, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.893, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.83, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.187, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.628, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.524, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.486, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.396, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.347, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.345, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.553, 69.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.78, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.595, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.549, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.553, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.46, 69.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.422, 69.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.412, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.967, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.966, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.254, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.381, 69.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.302, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.327, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.316, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.272, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.227, 69.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.297, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.664, 69.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.033, 69.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.746, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.371, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.889, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.522, 69.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.427, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.439, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.387, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.304, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.38, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.115, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.375, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.608, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.329, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.407, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.275, 69.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.523, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.356, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.316, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.347, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.439, 69.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.503, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.531, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.388, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.259, 69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.329, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.197, 69.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.192, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.18, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.16, 69.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.168, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.19, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.176, 69.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.136, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.133, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.09, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.07, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.307, 69.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.067, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.089, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.934, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.764, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.892, 69.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.849, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.71, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.68, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.588, 69.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.391, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.904, 69.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.052, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.391, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.2, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.197, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.349, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.418, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.208, 63.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.412, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.537, 69.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.56, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.524, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.729, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.83, 69.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.798, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.106, 70.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.868, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.826, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.94, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.28, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.976, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.998, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.062, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.886, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.327, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.46, 69.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.435, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.491, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.442, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.463, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.449, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.48, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.452, 70.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.345, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.342, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.391, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.43, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.391, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.067, 70.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.493, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.488, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.472, 70.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.576, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.666, 69.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.265, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.545, 70.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.683, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.755, 73.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.766, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.589, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.794, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.96, 70.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.386, 70.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.947, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.941, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.943, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.952, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.918, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.914, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.722, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.897, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.898, 70.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.904, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.909, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.879, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.923, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98, 70.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.973, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.973, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.988, 70.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.042, 70.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.997, 70.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.035, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.054, 70.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.054, 70.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.057, 70.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.326, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.089, 70.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.093, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.096, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.089, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.083, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.079, 70.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.253, 70.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.354, 69.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.832, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.024, 69.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.316, 69.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.638, 69.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.024, 69.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.218, 69.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.538, 69.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.514, 69.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.796, 69.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.84, 69.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.407, 69.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.11, 69.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.071, 69.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 69.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.445, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.143, 69.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.78, 69.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.114, 69.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.992, 69.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.072, 69.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.178, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.137, 69.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.006, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.054, 69.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.848, 69.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.792, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.791, 69.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.797, 69.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.735, 69.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.735, 69.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.718, 69.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.596, 69.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 69.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.381, 69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.539, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.387, 69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.559, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.448, 69.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.767, 68.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.465, 69.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.659, 68.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.303, 69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.592, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.059, 69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.202, 68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.578, 69.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.559, 59.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.431, 69.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.781, 69.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.138, 69.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.767, 69.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.824, 69.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.11, 69.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.96, 69.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.907, 69.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.573, 69.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.974, 69.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.675, 69.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.137, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.709, 69.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.888, 69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.882, 67.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.786, 68.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.726, 68.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.8, 68.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.52, 69.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.141, 68.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 69.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.813, 68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.913, 69.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.863, 69.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.947, 69.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.945, 69.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.848, 69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.259, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.122, 69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.48, 69.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.215, 42.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.55, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.631, 69.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.591, 69.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.452, 69.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.746, 69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.963, 69.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.924, 69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.836, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.008, 69.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.843, 69.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.442, 69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.292, 69.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.475, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.484, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.19, 69.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.725, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.481, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.555, 69.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.653, 69.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.086, 69.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -64.271, 60.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.835, 68.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.941, 69.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.825, 69.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.23, 69.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.45, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.423, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.58, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.579, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.839, 69.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.637, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.041, 69.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.281, 73.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.287, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.434, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.376, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.443, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.502, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.652, 69.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.547, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.701, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.691, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.907, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.863, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.133, 69.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.924, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.866, 69.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.939, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.859, 69.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.988, 69.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.92, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.932, 69.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.031, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0, 69.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.874, 69.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.095, 69.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.016, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.323, 69.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.529, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.521, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.566, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.548, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.599, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.578, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.095, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.576, 69.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.644, 69.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.557, 69.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.392, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.38, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.811, 70.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.056, 69.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.785, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.837, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.822, 70.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.231, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.573, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.397, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.992, 70.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.618, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.081, 68.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.766, 70.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.115, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.673, 70.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.998, 69.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.691, 70.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.615, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.393, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.541, 70.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.342, 70.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.299, 70.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.067, 70.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.812, 70.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.511, 70.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.658, 70.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.365, 70.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.506, 70.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.313, 70.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.483, 70.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.945, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.522, 70.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.431, 70.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.549, 70.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.813, 70.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.907, 70.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.65, 70.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.393, 71.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.585, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.658, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.102, 71.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.913, 71.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.842, 71.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.741, 71.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.142, 71.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.847, 71.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 71.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.373, 71.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.944, 71.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 71.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.921, 71.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.401, 71.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.349, 71.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.321, 70.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 68.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.157, 71.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.108, 71.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.067, 71.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.055, 71.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.031, 71.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.574, 72.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.13, 71.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.106, 71.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.074, 71.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.073, 71.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.071, 71.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 71.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 71.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 71.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.076, 71.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 71.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 71.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.078, 71.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.161, 71.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 71.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.126, 71.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 71.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 71.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.174, 71.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.134, 71.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 71.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.281, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.206, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.253, 71.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.235, 70.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 71.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.316, 73.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.209, 71.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.197, 71.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.157, 71.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.769, 71.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.128, 71.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.193, 71.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.186, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.145, 71.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.319, 71.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.235, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.058, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.484, 71.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.187, 71.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.104, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.077, 71.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.599, 68.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.054, 71.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 71.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 71.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.071, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.097, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 71.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.345, 71.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 71.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.106, 71.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.298, 71.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.805, 71.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 71.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.228, 71.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.313, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 71.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.335, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 71.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 71.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 71.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.32, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.277, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.189, 71.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.223, 72.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.169, 67.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.983, 71.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.177, 71.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.497, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.067, 71.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.046, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 71.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.096, 71.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 71.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 71.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.073, 71.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.104, 71.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 71.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.061, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 71.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 71.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 71.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.055, 71.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 71.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 71.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 71.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.065, 71.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.976, 71.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.042, 71.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 71.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 71.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05, 71.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 71.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 71.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.322, 71.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 71.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 71.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 71.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.447, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.956, 71.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.041, 71.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.688, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.026, 71.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.073, 71.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.703, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.361, 72.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.006, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.443, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 71.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 71.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.346, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 71.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.349, 71.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -68.099, 79.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.345, 71.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.545, 71.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.405, 71.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.083, 71.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.783, 71.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 71.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 71.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 71.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.385, 71.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.479, 71.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.756, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.326, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 71.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 71.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.154, 71.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.238, 71.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 71.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 71.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.241, 71.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.587, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.646, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.369, 71.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.371, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.851, 71.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.908, 71.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 71.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.564, 71.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.479, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.455, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.439, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 71.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.443, 71.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.13, 71.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.515, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.391, 71.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.401, 71.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.234, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.567, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 71.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 71.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.546, 71.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 71.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.714, 71.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 71.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 71.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 71.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.577, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 71.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.375, 71.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.376, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.383, 71.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.278, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 71.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.227, 71.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 71.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.356, 71.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.162, 71.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.87, 68.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.407, 71.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.397, 71.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 71.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.442, 71.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 71.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.482, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.271, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.279, 71.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 71.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.527, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 71.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.556, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 71.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.772, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.27, 72.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 71.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.676, 71.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.647, 71.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.678, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.676, 71.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.665, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.672, 71.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.411, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 71.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.68, 71.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 71.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.711, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.674, 71.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 71.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.531, 71.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 71.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.897, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.867, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.845, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.68, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.877, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.812, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.699, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 71.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 71.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.704, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.803, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.837, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.736, 71.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.715, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.471, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.735, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 71.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.817, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 71.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.698, 71.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.791, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 71.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 71.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.753, 71.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.752, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 71.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.779, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.757, 71.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.771, 71.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.738, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.739, 71.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.143, 71.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.813, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.851, 71.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.783, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.871, 71.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.927, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.831, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.889, 69.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.631, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.63, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.012, 71.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.729, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.953, 71.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -47.425, 83.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.955, 71.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 72.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -51.937, 81.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.901, 71.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.274, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.272, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.958, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.957, 71.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.537, 72.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.563, 71.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.755, 71.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.269, 70.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.581, 71.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 71.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.211, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.28, 71.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.487, 71.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 71.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.221, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.239, 71.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.177, 71.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.155, 71.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.154, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.118, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.106, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 71.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.132, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.133, 71.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.173, 71.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.139, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.18, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.132, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.152, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 71.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.137, 71.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.147, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 71.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.072, 71.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.001, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.724, 71.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 71.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 71.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 71.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.358, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 71.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1, 71.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.757, 71.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.065, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 71.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.024, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 71.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.093, 71.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.051, 71.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.09, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.035, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.089, 71.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.109, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.163, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.142, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.129, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.193, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.249, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -57.608, 70.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.184, 71.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.102, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.107, 71.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 71.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.063, 71.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.119, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.108, 71.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.056, 71.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.043, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.977, 71.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.436, 71.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.263, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.276, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.996, 71.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.852, 71.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.244, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.633, 69.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.705, 71.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.932, 71.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36, 71.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.34, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.5, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.78, 71.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.943, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.643, 71.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.962, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.531, 71.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.507, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.399, 71.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.368, 70.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.362, 70.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.846, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.944, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.512, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.796, 71.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.768, 71.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0, 71.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.825, 71.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.022, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.707, 71.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.589, 71.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 71.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.801, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.744, 71.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.657, 71.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 71.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 71.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.672, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 71.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.064, 71.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.509, 71.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.385, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.372, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.702, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.934, 71.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 72.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.766, 71.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.745, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.697, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 72.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.683, 72.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.249, 71.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.692, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.886, 71.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 72.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.48, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.796, 72.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 72.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65, 72.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.718, 72.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.678, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 72.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.605, 72.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 72.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.671, 72.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.677, 72.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.441, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.486, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.485, 72.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.482, 72.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 72.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.399, 72.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.434, 72.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.369, 72.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.358, 72.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.354, 72.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 72.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.311, 72.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.221, 72.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.329, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.433, 72.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.398, 72.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.429, 72.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.364, 72.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.358, 72.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.754, 71.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.521, 72.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.479, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 72.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 72.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.423, 72.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.674, 72.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.485, 72.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.638, 72.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 72.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 72.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 72.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 72.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.808, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.425, 72.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59, 72.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.315, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 72.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 72.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.721, 72.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.632, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.588, 72.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 71.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.646, 71.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 71.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 71.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.828, 71.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.651, 71.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.818, 72.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.024, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.141, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 71.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.676, 72.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 72.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63, 72.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.769, 72.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.629, 72.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 72.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 72.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.597, 71.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.52, 72.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.391, 72.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.603, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 71.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.066, 71.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.075, 71.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.089, 71.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.242, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.06, 71.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.649, 70.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 71.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.132, 71.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.157, 71.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.179, 71.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.54, 71.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.264, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.538, 71.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.306, 71.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.646, 70.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 70.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6, 70.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.651, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.633, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.644, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.626, 70.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 70.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.649, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.646, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.623, 68.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 70.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 70.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.828, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.595, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.648, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.646, 70.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.649, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.632, 70.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.651, 70.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 69.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 70.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.647, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.658, 70.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7, 70.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.732, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.376, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.647, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.614, 70.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.627, 70.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.844, 70.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.994, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.985, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.004, 69.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.981, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 69.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.98, 69.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 69.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.992, 69.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 69.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.991, 69.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.992, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.027, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.975, 69.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.966, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.964, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.938, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.937, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.984, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.964, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.973, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.005, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.992, 69.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.977, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.969, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.001, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.989, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.009, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.008, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 69.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.036, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.501, 69.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 69.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.057, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.057, 69.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.057, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.076, 69.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.091, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.095, 69.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.042, 69.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.772, 69.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.118, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.116, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.144, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.142, 69.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 69.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.187, 69.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.193, 69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.202, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.216, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.213, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.206, 69.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.043, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.075, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.049, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.036, 69.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 69.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.048, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 69.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.043, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.047, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.051, 69.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.194, 70.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.058, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.556, 69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.032, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.028, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 69.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.009, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0, 69.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.999, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.174, 69.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.897, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.901, 69.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 69.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.894, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.909, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.879, 69.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.005, 69.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.768, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.884, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.881, 69.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.855, 69.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.859, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 69.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84, 69.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.847, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.842, 69.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.829, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.022, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.982, 69.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.018, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.021, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.015, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02, 69.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.019, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 69.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.016, 69.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.679, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.701, 69.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.169, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.724, 69.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.701, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.563, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.727, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.709, 69.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.773, 69.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.753, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.093, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.481, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.811, 69.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.001, 69.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.786, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.785, 69.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.73, 69.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.804, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.807, 69.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.79, 69.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.796, 69.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.795, 69.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.802, 69.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.789, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.82, 69.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.775, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.831, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.789, 69.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.829, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.791, 69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.807, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.805, 69.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.808, 69.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.831, 69.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.836, 69.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.832, 69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.836, 69.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.666, 69.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.683, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.053, 69.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.634, 69.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.088, 70.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.277, 69.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.298, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.265, 69.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.334, 69.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.171, 69.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.134, 69.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.095, 69.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -77.231, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.089, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.073, 69.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.07, 69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.069, 69.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.089, 69.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.075, 69.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.1, 69.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.104, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.151, 69.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.12, 69.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.146, 69.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.141, 69.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.174, 69.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.195, 69.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.2, 69.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.207, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.228, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.231, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.302, 69.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.249, 69.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.253, 69.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.253, 69.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.25, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.172, 69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.16, 69.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.526, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.156, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.123, 69.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.099, 69.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.121, 69.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.103, 69.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.69, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.088, 69.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.453, 69.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.202, 69.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.263, 69.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.362, 69.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.312, 69.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.308, 69.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.233, 69.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.203, 69.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.296, 69.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.263, 69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.249, 69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.257, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.2, 69.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.162, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.154, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.149, 69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.14, 69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.137, 69.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.141, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.14, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.147, 69.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.126, 69.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.154, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.155, 69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.909, 68.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.159, 69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.166, 69.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.171, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.159, 69.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.172, 69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.165, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.177, 69.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.195, 69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.197, 69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.73, 69.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.729, 69.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.174, 69.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.206, 69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.201, 69.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.219, 69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.224, 69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.299, 69.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.251, 69.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.212, 69.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.244, 69.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.234, 69.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.223, 69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.236, 69.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.231, 69.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.643, 69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.589, 69.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.213, 69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.199, 69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.198, 69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.184, 69.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.17, 69.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.107, 68.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.135, 69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.108, 69.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.062, 69.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.024, 69.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.04, 69.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.023, 69.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.035, 69.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.06, 69.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.114, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.113, 69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.12, 69.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.128, 69.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.168, 69.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.193, 69.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.136, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.034, 69.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.561, 68.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.036, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.066, 69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.814, 69.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.767, 69.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.781, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.853, 69.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.776, 69.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.743, 69.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.797, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.787, 69.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.843, 69.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.933, 69.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.938, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.635, 69.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.597, 69.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.012, 69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.092, 69.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.131, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.217, 69.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.049, 68.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.361, 69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.362, 69.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.747, 69.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.539, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.539, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -62.473, 72.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.894, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.998, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.214, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.193, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.201, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.34, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.362, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.14, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -65.935, 72.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.829, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.832, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.715, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.879, 69.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.72, 69.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.868, 69.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.948, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.838, 69.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.019, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.136, 69.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.107, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.049, 69.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.971, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.079, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.108, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.152, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.143, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.179, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.261, 69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.202, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.229, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.382, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.386, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.411, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.41, 69.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.398, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.4, 69.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.459, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.503, 69.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.495, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.602, 69.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.597, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.937, 69.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.68, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.782, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.772, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.514, 72.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.803, 69.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.463, 74.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.969, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.867, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.966, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.006, 69.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.967, 69.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.023, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.221, 69.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.011, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.579, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.216, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.932, 69.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.385, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.461, 69.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.24, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.561, 69.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.509, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.594, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.584, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.945, 69.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.588, 69.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.502, 69.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.622, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.666, 69.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.723, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.766, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.892, 69.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.749, 69.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.828, 69.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.86, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.952, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.952, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.974, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.973, 69.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.765, 69.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.041, 69.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.309, 69.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.091, 69.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.043, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.141, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.141, 69.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.158, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.15, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.849, 69.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.309, 69.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.362, 69.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.255, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.204, 69.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.203, 69.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.341, 69.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.386, 69.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42, 69.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.441, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.561, 69.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.608, 69.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.55, 69.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.634, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.638, 69.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.598, 69.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.677, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.66, 69.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.676, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.769, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.768, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.951, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.822, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.912, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.91, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.981, 70.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.078, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.004, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.038, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.253, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.247, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.294, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69, 70.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.672, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.399, 70.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.345, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.349, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.774, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.783, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.198, 70.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.677, 70.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.631, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.564, 70.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.655, 70.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.395, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.623, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.826, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.293, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.756, 70.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.979, 70.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.517, 70.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.098, 70.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.939, 69.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.554, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.168, 70.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.548, 70.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.24, 70.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.341, 70.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.832, 70.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.027, 70.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36, 70.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.305, 70.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.845, 70.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.448, 70.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.525, 70.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.568, 70.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.613, 70.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.666, 70.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.715, 70.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.731, 70.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.787, 70.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.749, 70.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.882, 70.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.844, 70.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 70.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.051, 70.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.915, 70.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.996, 70.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.968, 70.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.083, 70.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.164, 70.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 70.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.318, 70.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.446, 70.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.542, 71.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.533, 71.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.645, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.644, 71.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.638, 71.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.609, 71.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.543, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 70.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.49, 71.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.729, 71.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.77, 71.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.709, 71.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.764, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.838, 71.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.497, 71.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.819, 71.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 71.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.81, 71.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.818, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.923, 71.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.845, 71.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.86, 71.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.392, 71.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 71.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.772, 66.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.927, 71.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.892, 71.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.723, 71.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 71.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 71.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.906, 71.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.838, 71.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.656, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.912, 71.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.91, 71.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.865, 71.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.967, 71.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.875, 71.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.734, 71.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.907, 71.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.881, 71.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 71.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 71.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 71.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.221, 72.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.949, 71.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.958, 71.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.979, 71.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.946, 71.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.952, 71.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.838, 71.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 71.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.665, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.962, 71.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 71.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.967, 71.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 71.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.042, 71.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.983, 71.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.981, 71.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.931, 71.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 71.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.019, 71.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 71.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 71.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.011, 71.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.825, 71.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 71.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 71.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.062, 71.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.031, 71.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01, 71.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.719, 71.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.037, 71.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 71.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.041, 71.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.003, 71.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.231, 71.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1, 71.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.213, 71.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.211, 71.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 71.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.259, 71.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.258, 71.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31, 71.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.305, 71.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3, 71.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.855, 71.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.085, 59.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.407, 71.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.308, 71.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.372, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.393, 71.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.46, 71.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.309, 71.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.434, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 71.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.452, 71.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.436, 71.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.473, 71.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 71.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.664, 71.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -107.606, 67.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.494, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 71.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.486, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.52, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 71.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.846, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.589, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.565, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 71.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.526, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 71.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.999, 69.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.812, 71.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.606, 71.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.597, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.606, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.597, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 71.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 71.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.608, 71.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.591, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.637, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 71.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 71.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.669, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 71.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.664, 71.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.684, 71.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67, 71.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 71.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.827, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63, 71.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.583, 71.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.723, 71.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -47.22, 75.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.539, 71.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.552, 71.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.621, 71.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53, 71.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 71.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.577, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.68, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.542, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.521, 71.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.228, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 71.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.548, 71.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.104, 71.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.542, 71.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 71.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.571, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.91, 71.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.69, 71.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.626, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.586, 71.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.565, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.565, 71.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 71.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 71.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 71.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 71.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.836, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 71.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.573, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.608, 71.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.174, 67.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 71.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.602, 71.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.543, 71.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.678, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.429, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.435, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 71.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.98, 71.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 71.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.854, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.641, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.486, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.473, 71.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.499, 71.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 71.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.483, 71.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.686, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.597, 71.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 71.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.502, 71.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.555, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.588, 71.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.598, 71.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.457, 71.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 71.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 71.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 71.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.501, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.342, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.578, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 71.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.551, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.453, 71.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.924, 71.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.451, 71.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.46, 71.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.436, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.427, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 71.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.243, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.447, 71.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.497, 71.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.408, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 71.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.483, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.438, 71.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.356, 71.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.332, 71.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 71.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 71.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.414, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.399, 71.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.401, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.378, 71.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.385, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.151, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.426, 71.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 71.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 71.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.396, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.397, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 71.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.476, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 71.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.399, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.336, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 71.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 71.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.397, 71.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 71.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.438, 71.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 71.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.167, 71.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 71.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 71.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.349, 71.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.361, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.381, 71.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 71.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.341, 71.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.375, 71.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27, 71.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.231, 71.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.295, 71.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.235, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.213, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.241, 71.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 71.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.229, 71.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 71.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.235, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 71.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.945, 71.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.175, 71.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 71.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 71.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.187, 71.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 71.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 71.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 71.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.793, 71.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.199, 71.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.184, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 71.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.223, 71.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.591, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.236, 71.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.233, 71.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 71.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.294, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.971, 71.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.131, 72.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 71.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 71.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.39, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.175, 71.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.295, 71.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.289, 71.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.346, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 71.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5, 71.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.641, 68.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 71.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.263, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.827, 72.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.273, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.616, 71.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.674, 71.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 71.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.261, 71.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.243, 71.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.149, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 71.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17, 71.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.171, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.185, 71.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.184, 71.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.13, 71.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.138, 71.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 71.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.154, 71.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.486, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.759, 71.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.117, 71.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 71.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.136, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 71.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.169, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16, 71.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.114, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.652, 71.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 71.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.203, 71.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 71.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 71.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.192, 71.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.283, 71.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.276, 71.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.259, 71.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.308, 71.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.078, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.313, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.458, 73.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 71.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.347, 71.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.509, 71.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.507, 71.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 71.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.23, 71.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.746, 71.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6, 71.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.297, 71.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.259, 71.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.184, 71.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 71.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.649, 71.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.523, 42.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.154, 71.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.145, 71.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.46, 71.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 71.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 71.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.231, 71.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.671, 71.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 71.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.194, 71.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.567, 71.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.383, 71.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.318, 71.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.342, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.785, 71.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.283, 71.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.105, 73.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.518, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.022, 71.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.242, 71.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 71.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.962, 71.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.289, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 71.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.291, 71.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.337, 70.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.124, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 71.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.202, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.268, 71.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.244, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.197, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.236, 71.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.231, 71.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.219, 71.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 71.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 71.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15, 71.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.447, 70.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.138, 71.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 71.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.237, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.098, 71.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.144, 71.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.057, 71.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 71.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 71.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.135, 71.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 71.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 71.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.792, 71.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 71.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.209, 71.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.922, 71.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.172, 71.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.228, 71.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.233, 71.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.205, 71.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 71.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.209, 71.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.367, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.972, 71.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 71.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 71.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.313, 71.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.367, 71.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.367, 71.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 71.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.362, 71.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.357, 71.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 71.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 71.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.381, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.364, 71.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.635, 71.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.508, 71.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.456, 71.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 71.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 71.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.429, 71.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 71.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 71.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 71.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.413, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 71.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.349, 71.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.436, 71.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.76, 66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.273, 71.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.429, 71.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24, 71.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.568, 71.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 71.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.351, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.086, 70.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.505, 71.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 71.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 71.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.497, 71.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 71.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.557, 71.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.559, 71.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.489, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.417, 71.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.498, 71.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.513, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.362, 71.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5, 71.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 71.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.521, 71.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.259, 71.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53, 71.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.56, 71.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.384, 71.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.524, 71.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.592, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.594, 71.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 71.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61, 71.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.896, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.621, 71.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.79, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.666, 71.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.656, 71.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 71.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.638, 71.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.537, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.256, 71.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.642, 71.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.651, 71.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.643, 71.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 71.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.626, 71.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.596, 71.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.806, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65, 71.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.595, 71.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 71.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.734, 71.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.625, 71.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.691, 71.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.634, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.647, 71.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.874, 71.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.635, 71.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.781, 71.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.616, 71.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.687, 71.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.589, 71.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 71.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.623, 71.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.572, 71.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.636, 71.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.558, 71.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.604, 71.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 71.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.612, 71.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.156, 71.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.593, 71.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 71.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 71.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.701, 71.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.609, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 71.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.719, 71.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.617, 71.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.582, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.624, 71.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 71.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.584, 71.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.544, 71.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.525, 71.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.529, 71.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.196, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.503, 71.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.561, 71.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.574, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 71.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.458, 71.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.518, 71.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.459, 71.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.079, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 71.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41, 71.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.703, 70.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.332, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 71.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 71.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.256, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 71.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.279, 71.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.273, 71.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.269, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.276, 71.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.353, 71.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 71.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.345, 71.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 71.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.294, 71.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.241, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 71.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 71.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.105, 71.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.163, 71.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 71.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 71.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.071, 71.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.696, 72.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.432, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.994, 71.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.778, 72.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.091, 71.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 71.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 71.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.98, 71.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.894, 71.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.878, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 71.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.885, 71.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.994, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.433, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 71.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.857, 71.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.878, 71.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.778, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.909, 71.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 71.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.875, 71.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.052, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.841, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.853, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 72.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.866, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.86, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.776, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.914, 72.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 72.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.994, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.887, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.903, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.903, 72.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.395, 72.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 72.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.736, 72.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.647, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.892, 72.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.883, 72.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 72.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.914, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.913, 72.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 72.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.005, 72.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 72.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.117, 72.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 72.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 72.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05, 72.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.055, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.056, 72.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.977, 72.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.956, 72.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.001, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.995, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.015, 72.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 72.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.971, 72.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.73, 71.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.895, 72.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.879, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 73.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.084, 72.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.877, 71.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.987, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 72.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 72.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.964, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.019, 72.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.917, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.048, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.955, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.952, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.963, 72.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.79, 72.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.723, 72.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.985, 72.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.038, 72.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.012, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.035, 72.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.928, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.099, 71.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.815, 72.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.982, 72.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.875, 72.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.206, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.309, 71.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.256, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.24, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.243, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.217, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.189, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.231, 71.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 71.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.206, 71.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.708, 70.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 71.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.865, 71.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.204, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 71.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 71.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.229, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 71.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 71.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.223, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 71.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.534, 72.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.853, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.211, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.211, 71.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.175, 72.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.385, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.268, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.113, 71.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 72.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.252, 71.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.235, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.206, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.284, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.215, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 71.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.175, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.243, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.235, 71.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.234, 71.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19, 71.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.417, 71.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.166, 71.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.178, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.177, 71.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.264, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.24, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 71.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.163, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.126, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.132, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.652, 71.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 71.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.213, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.172, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.391, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 71.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15, 71.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.042, 72.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.598, 71.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.162, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.177, 71.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.256, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.521, 71.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.124, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.224, 71.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.248, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.927, 72.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.254, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.255, 71.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.273, 71.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 71.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 71.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 71.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.334, 71.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.364, 71.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35, 71.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29, 71.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 72.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.794, 72.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.383, 71.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.388, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.346, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.379, 71.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 71.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.001, 71.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 71.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.469, 71.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.563, 71.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.497, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.538, 71.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.549, 71.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.508, 71.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.492, 71.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.916, 74.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 71.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.494, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.445, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.453, 71.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.456, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.458, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.441, 71.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.419, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.395, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 71.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.404, 71.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.593, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.273, 71.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 71.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.372, 71.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.397, 71.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.387, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 71.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.386, 71.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.405, 71.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.365, 71.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.918, 64.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.408, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 71.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.438, 71.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.396, 71.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.412, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.407, 71.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.434, 71.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.381, 71.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6, 71.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.577, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 71.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.425, 71.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 71.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.177, 71.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 71.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.236, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.223, 71.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.227, 71.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 71.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 71.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.151, 71.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.181, 71.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.118, 71.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11, 71.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 71.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.13, 71.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -105.935, 73.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 71.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 71.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 71.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.019, 71.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.166, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.015, 71.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.419, 71.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.982, 71.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.839, 71.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.834, 71.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 71.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.573, 71.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.797, 71.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.779, 71.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.183, 71.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.749, 71.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.787, 71.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.232, 71.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.956, 71.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.13, 70.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 71.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.114, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 71.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.908, 71.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.497, 71.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.91, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.929, 73.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.614, 71.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 71.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.981, 71.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 71.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 71.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.902, 71.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 71.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 71.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 72.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.037, 71.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.063, 71.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.053, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12, 71.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 71.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 71.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.138, 71.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.137, 71.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.169, 71.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876, 71.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.059, 71.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.124, 71.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.23, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.287, 71.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.327, 71.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 71.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21, 71.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.454, 71.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.214, 71.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 71.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 71.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.228, 71.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.268, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.249, 71.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.243, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.131, 71.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.157, 71.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.406, 71.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.149, 71.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.158, 71.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.895, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.937, 71.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.865, 71.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.293, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.13, 71.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.149, 71.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.119, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.087, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.112, 71.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.083, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.583, 71.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 71.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 71.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.68, 71.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11, 71.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.967, 71.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.085, 71.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.115, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.093, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.931, 71.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.226, 71.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.128, 71.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.126, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.163, 71.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.159, 71.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 71.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.152, 71.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.133, 71.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 71.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.111, 71.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.167, 71.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.107, 71.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.857, 71.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.045, 71.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.086, 71.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 71.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 71.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 71.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.777, 71.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.14, 71.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.116, 71.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.104, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.122, 71.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 71.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.148, 71.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 71.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 71.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.051, 71.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 71.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.976, 71.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 71.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.882, 71.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 71.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.944, 71.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 71.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92, 71.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.991, 71.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.903, 71.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 71.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.841, 71.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.896, 71.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 71.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.933, 71.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.921, 71.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 71.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.948, 71.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.931, 71.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.915, 71.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.674, 71.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.724, 71.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.792, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.771, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.543, 71.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.674, 71.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.783, 64.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.672, 71.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.665, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.691, 70.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.725, 70.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.629, 70.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.699, 70.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.78, 70.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.48, 70.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.474, 70.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.504, 70.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.547, 70.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.572, 70.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.563, 70.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.675, 70.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.54, 70.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.297, 70.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.497, 70.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.849, 71.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.748, 70.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.755, 69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.491, 70.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.523, 70.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.684, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.62, 70.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.518, 70.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.532, 70.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.489, 70.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.606, 70.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.606, 70.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.517, 70.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.608, 70.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.503, 70.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.526, 70.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.525, 70.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.234, 70.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.52, 70.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.552, 70.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.559, 70.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.542, 70.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.455, 70.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.284, 70.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.414, 70.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45, 70.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.426, 70.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.406, 70.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.441, 70.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5, 70.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.455, 70.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.405, 70.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.464, 70.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.457, 70.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.445, 70.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.481, 70.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.479, 70.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.498, 70.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.494, 70.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.528, 70.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.898, 70.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.553, 70.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.597, 70.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.518, 70.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.548, 70.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.833, 70.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.558, 70.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.592, 70.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.584, 70.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.562, 70.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 70.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.493, 70.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.465, 70.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.483, 70.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.572, 70.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.477, 70.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.294, 70.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.685, 70.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 70.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.57, 70.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.706, 70.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44, 70.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.486, 70.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.407, 70.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.42, 70.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.806, 72.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.454, 70.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.142, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.443, 70.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.462, 70.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8, 71.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.383, 70.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.471, 70.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.271, 69.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.472, 70.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.636, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.406, 70.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.387, 70.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -108.413, 64.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.011, 70.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.452, 70.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.282, 70.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.379, 70.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.633, 70.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.464, 70.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.887, 70.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.887, 70.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.441, 70.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.447, 70.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.345, 70.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.411, 70.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.704, 70.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.173, 70.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19, 70.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.206, 70.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.472, 70.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.405, 70.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.236, 70.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.355, 70.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.216, 70.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.215, 70.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.298, 70.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.519, 70.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.302, 70.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 70.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.214, 70.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.226, 70.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.324, 70.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.224, 70.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.251, 70.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.116, 70.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.206, 70.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.004, 70.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.192, 70.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.086, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.231, 70.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.225, 70.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.158, 70.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.107, 70.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.255, 70.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.172, 70.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17, 70.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17, 70.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.227, 70.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.191, 70.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 70.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.23, 70.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.208, 70.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.165, 70.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.056, 70.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.985, 70.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.189, 70.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -70.665, 67.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.789, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.185, 70.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.199, 70.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.175, 70.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.219, 70.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.229, 70.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.296, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.115, 70.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.25, 70.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.319, 70.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.262, 70.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.696, 70.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.172, 69.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.137, 70.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.283, 70.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.276, 70.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.309, 70.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.067, 70.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.415, 70.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.414, 70.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.339, 70.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.971, 70.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 70.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.397, 70.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.333, 70.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.392, 70.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.41, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.473, 70.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.447, 70.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.471, 70.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.702, 70.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.491, 70.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.488, 70.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.506, 70.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.531, 70.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.526, 70.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.614, 70.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.522, 70.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.483, 70.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.562, 70.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.482, 70.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.544, 71.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.646, 70.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.464, 70.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03, 70.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.619, 70.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.577, 70.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.159, 70.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.777, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.634, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.652, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.616, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.621, 70.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.79, 70.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.568, 70.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.648, 70.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.61, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.504, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.737, 70.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 70.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.522, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.559, 70.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.553, 70.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.532, 70.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.103, 71.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 4.601, 55.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -98.393, 71.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.515, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.408, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.414, 71.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.451, 70.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.466, 70.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.425, 70.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.422, 71.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.659, 70.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.443, 70.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.095, 70.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.65, 70.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.498, 70.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.523, 70.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.057, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.473, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.408, 70.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 70.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.41, 70.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.289, 70.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.233, 71.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 70.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.336, 70.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.217, 70.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.291, 70.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.333, 70.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -72.444, 68.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.144, 70.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.384, 70.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.395, 70.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.345, 70.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.388, 70.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.328, 70.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.382, 70.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.413, 70.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.485, 70.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.145, 70.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.524, 70.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.434, 70.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.471, 70.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.494, 70.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.429, 70.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.431, 70.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.467, 71.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.734, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.472, 70.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.633, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.545, 70.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.53, 70.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 70.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.412, 70.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.419, 70.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.242, 70.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.417, 70.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.49, 70.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.442, 70.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.424, 70.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.316, 70.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.425, 70.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.366, 70.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 70.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.578, 70.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.211, 70.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.852, 70.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.474, 70.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.384, 70.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.571, 70.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.467, 70.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.471, 70.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.544, 70.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.543, 70.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.727, 70.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.446, 70.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.501, 70.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.613, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.597, 70.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.649, 70.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.738, 70.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.515, 71.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.776, 70.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.807, 70.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.831, 70.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.844, 70.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.682, 70.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.987, 70.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.996, 70.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -51.61, 65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.198, 70.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.208, 70.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 70.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.294, 70.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.304, 70.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.778, 70.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 70.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.338, 70.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.711, 70.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.673, 70.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 70.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.368, 70.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.421, 70.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.433, 70.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.475, 70.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.471, 70.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 70.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 70.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.469, 70.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.285, 70.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5, 70.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 70.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61, 70.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.601, 70.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.632, 70.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.732, 70.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 70.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.708, 70.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.693, 70.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.687, 70.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.857, 70.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.848, 70.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.734, 70.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.759, 70.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71, 70.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.554, 70.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 70.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.695, 70.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 70.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.667, 70.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.615, 70.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.576, 70.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 70.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.594, 70.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 70.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 70.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.622, 70.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.553, 70.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.512, 70.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 70.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.406, 70.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.307, 70.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.264, 70.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.317, 70.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 70.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3, 70.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.296, 70.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.292, 70.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.285, 70.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 70.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 70.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 70.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 70.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.358, 70.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.296, 70.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.336, 70.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 70.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.951, 70.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.343, 70.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.409, 70.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.433, 70.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.394, 70.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 70.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 70.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.422, 70.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 70.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.422, 70.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.265, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.388, 70.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.321, 70.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.212, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.282, 70.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.312, 70.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.348, 70.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.389, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.787, 71.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.497, 70.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 70.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.446, 70.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.465, 70.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 70.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.218, 71.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 70.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.536, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.488, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 70.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.849, 70.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.523, 70.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.857, 71.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.526, 70.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.507, 70.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 70.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.487, 70.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 70.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.565, 71.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 71.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.481, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.337, 71.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.432, 71.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.431, 71.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43, 71.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.424, 71.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 71.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.28, 71.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27, 71.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18, 71.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 71.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.392, 71.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.251, 71.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38, 71.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.328, 71.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.281, 71.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.284, 71.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.262, 71.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.242, 71.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.207, 71.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.258, 71.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.302, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.343, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.277, 71.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.275, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 71.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.314, 71.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.314, 71.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.996, 67.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.354, 71.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.263, 71.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 71.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.308, 71.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.272, 71.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.347, 71.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.303, 71.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34, 71.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33, 71.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.257, 67.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.391, 71.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.353, 71.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.352, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.449, 71.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.47, 71.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.315, 71.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.196, 71.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.268, 71.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.274, 71.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 70.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.278, 71.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.288, 71.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.306, 71.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.363, 71.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.355, 71.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.441, 71.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.411, 71.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.484, 71.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.46, 71.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.47, 71.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.461, 71.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.631, 71.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.76, 44.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.457, 71.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.184, 71.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.382, 71.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.373, 71.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 71.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.374, 71.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.412, 71.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.399, 71.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.456, 71.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.497, 71.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.506, 71.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 71.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53, 71.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.575, 71.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.517, 71.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.493, 71.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 71.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.578, 71.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -75.638, 75.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.464, 71.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.485, 71.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 71.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44, 71.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.444, 71.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51, 71.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.494, 71.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.56, 71.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.56, 71.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.585, 71.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.566, 71.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55, 71.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.736, 71.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.655, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.654, 71.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.653, 71.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.645, 71.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.659, 71.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.078, 71.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.705, 71.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72, 71.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.799, 71.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.725, 71.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.925, 71.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.795, 71.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.789, 71.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.784, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.779, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.745, 71.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.743, 71.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.736, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.768, 71.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.728, 71.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.716, 71.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43, 76.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.729, 71.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 71.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -76.906, 68.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78, 71.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.786, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.88, 71.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.921, 71.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.911, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.763, 71.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.904, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.946, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.945, 71.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.974, 71.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.985, 71.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.953, 71.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 71.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.975, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.054, 71.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.988, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.997, 71.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.301, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.976, 71.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.888, 71.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 71.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.346, 71.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.901, 71.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.014, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99, 71.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.006, 71.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.882, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.983, 71.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 71.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 71.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.007, 71.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.046, 71.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.031, 71.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.015, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 71.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.957, 71.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.137, 71.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.972, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.092, 71.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.215, 71.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.064, 71.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.045, 71.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.086, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.078, 72.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.056, 71.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.104, 71.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.082, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.978, 71.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16, 71.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.228, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.089, 71.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.073, 72.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 72.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.038, 72.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.027, 72.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.761, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.066, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.052, 72.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.077, 72.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.855, 72.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.042, 72.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97, 72.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 72.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 72.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.024, 72.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 72.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 72.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.037, 72.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.986, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.101, 72.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.065, 72.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.117, 72.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.098, 72.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.062, 72.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.061, 72.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.085, 72.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.063, 72.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.973, 72.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.033, 72.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.066, 72.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.998, 72.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.925, 72.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.066, 72.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.041, 72.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.08, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 72.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.159, 72.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.111, 72.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.017, 72.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.176, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.575, 72.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.498, 72.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.305, 72.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39, 72.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 72.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.056, 72.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 72.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.343, 72.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.338, 72.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.325, 72.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.324, 72.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.345, 72.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.333, 72.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 72.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.977, 80.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.279, 72.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.42, 72.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.424, 72.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 72.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.632, 72.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43, 72.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.38, 72.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.449, 72.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.441, 72.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.482, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.469, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.471, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.441, 72.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.476, 72.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.44, 72.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.435, 72.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.013, 72.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.411, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 72.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.509, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.386, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.388, 72.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 72.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.432, 72.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.366, 72.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.415, 72.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.391, 72.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.427, 72.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.426, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.419, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.408, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.397, 72.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.431, 72.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.438, 72.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.38, 72.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.471, 72.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.385, 72.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.599, 72.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.475, 72.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.471, 72.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.498, 72.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.332, 72.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.578, 72.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.479, 72.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.903, 72.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 72.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.518, 72.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.517, 72.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.518, 72.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.573, 72.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.603, 72.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.626, 72.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.683, 72.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.627, 72.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.763, 72.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.665, 72.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.296, 72.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.775, 72.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.779, 72.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.776, 72.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.857, 72.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.789, 72.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.788, 72.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.082, 72.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.827, 72.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.759, 72.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.766, 72.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.71, 72.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.266, 72.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.758, 72.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.688, 72.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.687, 72.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.678, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.571, 72.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.681, 72.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.613, 72.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.618, 72.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.113, 72.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.612, 72.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.605, 72.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.512, 72.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.446, 72.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.437, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.374, 72.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.334, 71.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.223, 72.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.218, 72.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.677, 72.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.057, 72.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.068, 72.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.995, 72.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.044, 72.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 72.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 72.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.123, 72.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12, 72.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.026, 72.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.979, 72.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.002, 72.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -114.399, 67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.059, 72.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.043, 72.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.115, 72.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.057, 72.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.053, 72.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.055, 72.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.081, 72.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.095, 72.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.976, 72.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.955, 72.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.954, 72.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.915, 72.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.017, 72.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.867, 72.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77, 72.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.819, 72.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.724, 72.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.668, 72.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.589, 73.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.661, 72.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64, 72.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.684, 72.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.681, 72.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.611, 72.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 72.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.559, 72.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.547, 72.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.433, 72.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.473, 72.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.372, 72.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.436, 72.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.418, 72.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.416, 72.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.415, 72.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.428, 72.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.366, 72.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.322, 72.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.377, 72.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.345, 72.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.229, 72.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 72.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.704, 72.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.024, 72.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.938, 72.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.943, 72.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.898, 72.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.78, 72.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.921, 72.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.892, 72.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.875, 72.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 72.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.956, 72.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 72.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.001, 72.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 72.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.993, 71.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 72.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.004, 72.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.061, 72.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.13, 72.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.118, 72.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.044, 75.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.986, 71.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.994, 71.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 71.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99, 71.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.012, 71.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.963, 71.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.088, 71.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 71.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 71.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.019, 71.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.032, 71.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.759, 70.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.028, 72.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.221, 74.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99, 71.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.895, 71.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 71.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 71.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0, 71.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.999, 71.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.013, 71.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.841, 71.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.82, 71.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.021, 71.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.807, 71.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.911, 71.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.954, 71.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.879, 71.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.318, 71.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 71.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.276, 70.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09, 71.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.157, 71.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.126, 71.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.121, 71.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.156, 71.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2, 71.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 71.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02, 71.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.229, 71.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 71.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 71.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.206, 71.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -104.012, 53.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06, 71.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.201, 71.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.188, 71.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.187, 71.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.191, 71.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.175, 71.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.218, 71.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.075, 71.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.25, 71.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.168, 71.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.174, 71.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.147, 71.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.156, 71.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.171, 71.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.125, 71.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.112, 71.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.129, 71.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.015, 70.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 70.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 70.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.075, 71.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.866, 70.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 70.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.892, 70.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 70.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88, 70.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.915, 70.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.867, 70.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.878, 70.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.491, 70.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.407, 70.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.839, 70.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.874, 70.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.846, 70.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.859, 70.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.872, 70.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.902, 70.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 70.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.887, 70.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.914, 70.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 70.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.968, 70.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.277, 72.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.949, 70.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.995, 70.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 70.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.951, 71.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.006, 70.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.979, 70.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.039, 70.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.965, 70.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.036, 70.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.025, 70.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05, 70.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.081, 70.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.959, 70.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.015, 70.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99, 70.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.971, 70.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.86, 70.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.755, 57.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.876, 70.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.766, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.676, 70.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.943, 70.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.774, 70.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.868, 70.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.897, 70.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.893, 70.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.904, 70.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.953, 70.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88, 70.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 70.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88, 70.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.893, 70.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.885, 70.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.608, 70.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.942, 70.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87, 70.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.892, 70.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.89, 70.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.924, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.882, 70.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.257, 70.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.818, 70.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.862, 70.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 70.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.917, 70.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 70.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.814, 70.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.821, 70.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.936, 70.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.766, 70.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.751, 70.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.782, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.888, 70.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.824, 70.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.871, 70.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.857, 70.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.848, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.881, 70.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.882, 70.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.902, 70.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.804, 70.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.914, 70.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.844, 70.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.146, 70.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.933, 70.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.072, 70.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.945, 70.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9, 70.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.904, 70.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.823, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.837, 70.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.803, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.893, 70.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.878, 70.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 70.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.809, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.855, 70.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.83, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.811, 70.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.541, 70.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.891, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.153, 70.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.053, 69.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.857, 70.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.952, 70.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.861, 70.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.884, 70.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.807, 70.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.504, 70.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.893, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.913, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.914, 70.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.519, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.516, 70.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.944, 70.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.938, 70.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.933, 70.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.988, 70.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.879, 70.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.983, 70.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 70.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.932, 70.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.859, 70.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.949, 70.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 70.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.791, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.874, 72.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.604, 70.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.817, 70.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07, 70.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.113, 65.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.686, 70.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87, 70.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03, 71.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.901, 70.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87, 70.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.879, 70.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.943, 70.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.976, 70.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.974, 70.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.068, 70.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.961, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.96, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.554, 70.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.058, 70.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.066, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -100.869, 63.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.892, 70.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.873, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.871, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.861, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.894, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.792, 70.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.049, 70.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.856, 70.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.833, 70.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.826, 70.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.765, 70.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.835, 70.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.595, 69.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.024, 69.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.519, 70.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.202, 70.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.894, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.861, 70.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.859, 70.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.762, 70.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.875, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.919, 70.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.881, 70.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.892, 70.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.892, 70.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.915, 70.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.778, 70.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.895, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 70.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.913, 70.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.887, 70.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.881, 70.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.906, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.864, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.744, 70.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.843, 70.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8, 70.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.687, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.916, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.787, 70.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.852, 70.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.826, 70.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.407, 70.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 70.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.853, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.934, 70.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.813, 70.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.796, 70.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.015, 70.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.755, 70.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.743, 70.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.711, 70.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.717, 70.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.712, 70.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.748, 70.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.761, 70.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.633, 70.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.512, 70.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.511, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.674, 70.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.588, 70.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.237, 70.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.566, 70.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.507, 70.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.449, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.353, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.477, 70.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.419, 70.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.404, 70.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.253, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.321, 70.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.298, 70.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.325, 70.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.426, 70.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.252, 70.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.219, 70.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.353, 70.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.202, 70.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.183, 70.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.187, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19, 70.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.181, 70.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19, 70.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.203, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.105, 70.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.544, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.072, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.04, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.054, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.047, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.025, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.003, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.016, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.014, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.011, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.013, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.034, 70.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.482, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.081, 70.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.023, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.139, 70.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.028, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.658, 69.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.019, 70.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.018, 70.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.111, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.065, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.036, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.064, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.057, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.056, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.997, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.007, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.997, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.117, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.465, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.998, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.043, 70.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.977, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.973, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.857, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.617, 70.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 70.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.965, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.968, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.952, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.303, 70.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.989, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.012, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.989, 70.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.046, 70.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.063, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.071, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.532, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 70.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.978, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.278, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.962, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.949, 70.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.911, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.003, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.002, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 70.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.998, 70.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.836, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.978, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.953, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.956, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.96, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.038, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.997, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.993, 70.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.946, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.991, 70.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 70.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.444, 70.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.968, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.958, 70.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 70.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 70.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.688, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 70.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.955, 70.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.952, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.898, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.953, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.942, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.923, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.995, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.922, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 70.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.899, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.863, 70.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.871, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.102, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.073, 70.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.054, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.106, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.347, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.013, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.179, 70.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.285, 70.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.161, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.13, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.158, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.149, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.155, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.158, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.983, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.016, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.002, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.165, 70.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.184, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.208, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.146, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.142, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.237, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.27, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.083, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.251, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.421, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.285, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4, 69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.269, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.165, 75.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.307, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.337, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.282, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.405, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.377, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.121, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.347, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.376, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.447, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.395, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.431, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48, 70.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.577, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.417, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.421, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.379, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.38, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.569, 70.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.312, 70.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.353, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.35, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.404, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.402, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.391, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.377, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.425, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.425, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.409, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.497, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.29, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.413, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.406, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.401, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.424, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.495, 70.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.308, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.275, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.274, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.304, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.302, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.318, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.283, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.234, 70.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.288, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.182, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.123, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.073, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.198, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.022, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.018, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.111, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.943, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.015, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.946, 70.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.932, 70.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.855, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.818, 70.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.945, 70.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.059, 69.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.957, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.984, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.931, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.086, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.995, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.921, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.995, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.916, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.031, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.066, 69.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.076, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.197, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.137, 69.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.179, 69.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.163, 69.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.186, 69.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.192, 69.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.25, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.27, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.303, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.173, 69.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.312, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.311, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.702, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.333, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.35, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.821, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 70.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.344, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -71.119, 73.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.433, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.365, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.534, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.788, 69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.505, 70.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.429, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.434, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.534, 70.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.551, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.439, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.453, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.46, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.476, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.521, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.486, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.558, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.472, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.429, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.399, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.398, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.425, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.558, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.351, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.326, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.048, 70.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.314, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.284, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.272, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.068, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.256, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.708, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.245, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.284, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.231, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.224, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.229, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.223, 70.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.314, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.193, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.233, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.207, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.247, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.242, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.231, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.245, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.061, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16, 70.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.191, 70.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.715, 70.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.169, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.129, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.073, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.164, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.093, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.024, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.983, 70.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85, 70.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.879, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.829, 70.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.827, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.702, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.889, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.943, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.922, 70.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.861, 70.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.972, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.961, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.012, 70.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.987, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.063, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.026, 70.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.094, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.123, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.119, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.116, 70.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.076, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.106, 70.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.119, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.125, 70.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.127, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.117, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.134, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.135, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.134, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.147, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.115, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.206, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.148, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.151, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.198, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.199, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.007, 68.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.246, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.238, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.283, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.261, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.239, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.247, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.23, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.164, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.823, 69.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.22, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.154, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.197, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.229, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.199, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.157, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.369, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.133, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.118, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1, 70.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.177, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.12, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.293, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.131, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.246, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.165, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.179, 70.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.99, 71.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.24, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.23, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.268, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.267, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.378, 70.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.31, 70.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.323, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.305, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.292, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.287, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.243, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.288, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.592, 71.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.357, 69.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.292, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.308, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.186, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.365, 70.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.348, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.366, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.37, 70.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.431, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.394, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.986, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.545, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.432, 70.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.476, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.465, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.476, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.456, 70.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.445, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.417, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.423, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.428, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.485, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.437, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.39, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.395, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.317, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.345, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.337, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.522, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.294, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.362, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.233, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.252, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.24, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.317, 70.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.291, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.296, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.281, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.463, 70.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.243, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.29, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.266, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.264, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 70.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.265, 70.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.263, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.264, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.294, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.29, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.015, 70.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.246, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.674, 69.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.312, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.344, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.353, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.306, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.311, 70.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.96, 70.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.295, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.306, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.543, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.359, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.386, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.288, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.251, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.302, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.321, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.361, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.275, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.313, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.305, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.27, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.537, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.343, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.91, 70.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.267, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.266, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.354, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.227, 70.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.225, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.365, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.328, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.679, 70.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.396, 70.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.328, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.326, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.303, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.346, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.335, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.164, 70.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.373, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.211, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.328, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.342, 70.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.342, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.316, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.481, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.355, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.356, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.372, 70.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.344, 70.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.336, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.374, 70.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.365, 70.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.219, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.353, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32, 70.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.364, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.289, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.368, 70.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.379, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.379, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.308, 70.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.319, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.163, 69.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.319, 69.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.951, 70.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.267, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.265, 70.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.167, 69.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.148, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.254, 70.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.23, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 70.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.231, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.232, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.274, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.242, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.289, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.65, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.253, 70.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.429, 70.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.306, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.26, 70.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.354, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.333, 70.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.255, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.254, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.264, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.288, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.443, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.043, 69.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.206, 70.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.313, 70.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.333, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.321, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.333, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.333, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.312, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 70.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.335, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.354, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.275, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.194, 70.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.254, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.246, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.278, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.272, 70.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.121, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.244, 69.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.276, 69.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.275, 69.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.171, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.161, 70.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.171, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.211, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.352, 70.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.338, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.687, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.276, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.298, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.273, 70.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.284, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.774, 70.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.25, 70.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.241, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.162, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.187, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.224, 70.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.798, 70.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.155, 70.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.174, 69.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.187, 70.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.157, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.166, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.238, 76.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.033, 70.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.031, 70.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 70.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 70.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.794, 69.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.756, 69.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.036, 70.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.042, 70.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 70.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.01, 70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -99.821, 70.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.084, 69.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.054, 68.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.966, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.61, 70.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.968, 69.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.912, 70.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.904, 70.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.901, 70.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.876, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.954, 70.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.692, 70.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.692, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.847, 70.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.831, 70.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81, 70.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.794, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.771, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.788, 70.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.827, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.149, 69.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.872, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 70.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 70.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.871, 70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.732, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.856, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.872, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.859, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.166, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94, 70.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.878, 70.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16, 70.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.971, 70.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.384, 70.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.985, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.981, 70.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.075, 70.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.991, 70.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.976, 70.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.981, 70.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.051, 70.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.008, 70.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.986, 70.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.975, 70.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.961, 70.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.964, 70.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.963, 70.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.971, 70.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 70.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46, 70.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.934, 70.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.944, 70.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.931, 70.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.913, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.935, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.938, 70.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.912, 70.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.943, 70.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.009, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.887, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.012, 70.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.946, 70.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.713, 70.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.203, 70.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.181, 70.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.158, 70.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.25, 70.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.258, 70.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.213, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.215, 70.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.186, 70.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.112, 70.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.12, 70.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.122, 70.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.074, 70.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.367, 70.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.003, 70.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 70.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.085, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.541, 70.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.071, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.074, 70.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.054, 70.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.092, 70.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.082, 70.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.085, 70.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11, 70.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.135, 70.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 70.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.138, 70.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.166, 70.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.161, 70.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.219, 70.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.358, 70.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.262, 70.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.267, 70.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.284, 70.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.216, 70.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.54, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.947, 70.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.261, 70.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.464, 71.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.276, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.302, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.499, 69.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.229, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.139, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.904, 69.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.069, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.068, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.199, 70.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.484, 70.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.213, 70.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.202, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.179, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.185, 70.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.189, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.392, 70.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.178, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.214, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.184, 70.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.556, 69.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.626, 70.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.218, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.304, 70.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.598, 70.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.038, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.263, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.582, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.461, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.463, 70.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.467, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.195, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.443, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.604, 70.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 70.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.463, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.415, 70.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.389, 70.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.389, 70.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.405, 70.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.362, 70.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.308, 70.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.434, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.268, 70.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.267, 70.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.242, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.375, 70.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.341, 70.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.327, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.327, 70.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.449, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.365, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.409, 70.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.454, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43, 70.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.414, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.383, 70.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.321, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.394, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.168, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.371, 70.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.605, 70.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.42, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.357, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.515, 70.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.526, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.504, 70.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.385, 70.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.358, 70.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.396, 70.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.39, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.414, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.422, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.418, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.408, 70.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.419, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.411, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.424, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.388, 69.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.418, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.427, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.414, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.841, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.802, 70.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.486, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.493, 70.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.424, 70.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 70.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.621, 70.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.472, 70.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.342, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.436, 70.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.922, 70.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.468, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.251, 70.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.34, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.335, 70.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.271, 70.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 70.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32, 70.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.462, 70.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.313, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.312, 70.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.315, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.111, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11, 70.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.466, 70.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.454, 70.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.39, 70.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.391, 70.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.426, 70.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.233, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.377, 70.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.382, 70.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.405, 70.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.401, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.392, 70.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.349, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.459, 70.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.409, 68.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.053, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.486, 70.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.535, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.54, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.481, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.484, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.402, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.428, 70.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.386, 70.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.202, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.452, 70.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.369, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.277, 70.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.385, 70.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.408, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.404, 70.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.416, 70.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.396, 70.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.389, 70.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.335, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.378, 70.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.395, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.399, 70.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.073, 70.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.502, 70.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.556, 70.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.354, 70.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.341, 70.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.335, 70.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.347, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.286, 70.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.267, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.371, 70.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.23, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.284, 70.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.274, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.205, 70.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.207, 70.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.056, 70.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.081, 70.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.86, 70.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.104, 70.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.162, 70.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.161, 70.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.177, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.155, 70.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.971, 70.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.282, 70.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.929, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.899, 70.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.034, 70.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05, 70.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.968, 70.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.895, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.893, 70.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.892, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.821, 70.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.921, 69.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.035, 70.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.722, 70.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.718, 70.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.691, 70.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.622, 70.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22, 70.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.361, 70.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.298, 70.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.69, 66.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.243, 70.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.218, 70.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.011, 70.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.136, 70.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.969, 70.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.043, 70.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.814, 70.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.803, 70.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.674, 70.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -102.097, 61.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.338, 70.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.077, 70.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22, 70.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.137, 70.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -78.838, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.403, 70.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.017, 70.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.867, 70.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.943, 70.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.941, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.935, 70.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.937, 70.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.864, 70.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.812, 70.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.799, 70.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.618, 70.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.775, 70.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.441, 69.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.719, 70.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.715, 70.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.868, 70.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.661, 70.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.753, 70.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.578, 70.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54, 70.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.622, 70.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.464, 70.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.378, 70.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.394, 69.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.324, 70.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.299, 70.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.143, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.142, 69.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.162, 69.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0, 69.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.904, 69.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.702, 69.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.807, 69.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.812, 69.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.607, 69.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.504, 69.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.502, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.476, 69.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.616, 69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.654, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.653, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.629, 69.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.182, 69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.209, 69.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.049, 69.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.868, 69.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.881, 69.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.767, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.763, 69.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.697, 69.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.715, 69.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.653, 69.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.631, 69.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.568, 69.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.583, 69.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.461, 69.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.381, 69.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.22, 69.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.989, 69.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.66, 69.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.668, 69.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.224, 69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.244, 69.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.147, 69.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.039, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.016, 69.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.041, 69.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.002, 69.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.6, 69.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.208, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.867, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.899, 69.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.838, 69.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.811, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.376, 73.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.558, 69.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.656, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.833, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.619, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.827, 69.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.304, 69.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.509, 69.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.225, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.131, 70.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.609, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.636, 69.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.935, 69.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.606, 69.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.618, 69.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.289, 69.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.628, 69.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.605, 69.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.622, 69.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.617, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.645, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.702, 69.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.662, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.687, 69.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.627, 69.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.636, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.701, 69.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.685, 69.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.675, 69.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.619, 69.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.686, 69.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.594, 69.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.548, 69.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.62, 69.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.429, 69.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.414, 69.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.166, 69.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.227, 69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.844, 69.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.485, 69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.318, 69.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 69.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 69.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.111, 69.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.094, 69.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.178, 69.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 69.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.013, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.994, 69.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.933, 69.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.967, 69.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.876, 69.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.677, 69.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.787, 69.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 69.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.745, 69.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.779, 69.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.754, 69.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.731, 69.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.703, 69.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.709, 69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.661, 69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.595, 69.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.776, 69.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.775, 69.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.709, 69.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.69, 69.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.722, 69.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.714, 68.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 68.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 68.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.035, 68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.776, 68.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.769, 68.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.703, 68.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.72, 68.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.73, 68.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.11, 68.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.721, 68.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.764, 68.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.758, 68.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.733, 68.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -49.849, 46.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.713, 68.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.802, 68.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.77, 68.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.836, 68.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.789, 68.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.782, 68.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.801, 68.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.835, 68.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.736, 68.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.923, 68.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.94, 68.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.954, 68.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.009, 68.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.004, 68.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.003, 68.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.058, 68.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 68.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.134, 68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 68.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.06, 68.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.979, 68.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 67.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.971, 67.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.967, 67.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.014, 67.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.003, 67.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.051, 67.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.027, 67.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.242, 69.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 67.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.055, 67.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 67.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.066, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.065, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.063, 67.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.286, 68.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.071, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.072, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.073, 67.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.078, 67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.094, 67.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.07, 67.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.088, 67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.075, 67.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.088, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.089, 67.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.085, 67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.081, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.1, 67.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.086, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.087, 67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.103, 67.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.099, 67.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.098, 67.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.346, 67.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.106, 67.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.107, 67.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.107, 67.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.116, 67.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.135, 67.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.143, 67.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 67.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.204, 67.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.144, 67.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.152, 67.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.143, 67.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.154, 67.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.14, 67.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.112, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.143, 67.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.174, 67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.173, 67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.038, 67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.16, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.168, 67.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.853, 67.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 67.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.195, 67.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.195, 67.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.149, 67.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.214, 67.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.224, 67.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.624, 67.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.22, 67.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.246, 67.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.239, 67.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.253, 67.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.261, 67.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.258, 67.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.555, 67.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.548, 67.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 67.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.458, 67.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.463, 67.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.471, 67.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 67.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.223, 68.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.467, 67.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.453, 67.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.449, 67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.46, 67.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.472, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.468, 67.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.71, 67.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 67.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.46, 67.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 67.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.033, 67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.033, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 67.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.875, 67.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.037, 68.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.398, 67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.465, 67.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.473, 67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 67.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.472, 67.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.474, 67.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.4, 68.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 67.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.464, 67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.466, 67.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 67.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.881, 68.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.483, 67.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.484, 67.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.555, 67.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.485, 67.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.471, 67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 67.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.477, 67.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.897, 68.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.47, 67.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.319, 67.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.577, 67.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.461, 67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.469, 67.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.472, 67.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.471, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.465, 67.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.475, 67.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.482, 67.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.463, 67.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.494, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.493, 67.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 67.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.478, 67.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.487, 67.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.49, 67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.503, 67.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.425, 67.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.507, 67.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.513, 67.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.518, 67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.522, 67.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.26, 67.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.678, 67.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.52, 67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.513, 67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.534, 67.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.538, 67.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.643, 67.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.493, 67.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.493, 67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.488, 67.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.033, 67.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.18, 67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.161, 67.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.02, 67.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.096, 67.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.193, 67.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 67.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.199, 67.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.187, 67.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.234, 67.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.225, 67.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.21, 67.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.186, 67.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.187, 67.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.005, 66.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 67.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.207, 67.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.177, 67.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.208, 66.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.931, 67.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.185, 66.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.192, 66.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.196, 66.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.183, 66.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 66.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.184, 66.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 66.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.165, 66.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.148, 66.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.147, 66.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.153, 66.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.17, 66.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.1, 67.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.132, 66.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.131, 66.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.948, 66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.142, 66.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.143, 66.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.146, 66.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.146, 66.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -79.473, 66.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.095, 67.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 67.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.083, 67.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.352, 67.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.061, 67.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.071, 67.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.379, 67.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.056, 67.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.623, 67.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.916, 67.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.915, 67.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.124, 66.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.101, 66.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.11, 66.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.119, 66.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.126, 66.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.413, 66.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.128, 66.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.122, 66.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.385, 66.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.334, 66.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.335, 66.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.339, 66.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.227, 66.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.352, 66.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.357, 66.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.356, 66.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.379, 66.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.37, 66.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.363, 66.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.027, 67.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.435, 66.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.547, 66.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.528, 66.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.514, 66.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.472, 67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.58, 66.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.847, 66.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.658, 66.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.86, 66.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.854, 66.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.862, 66.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.782, 66.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.781, 66.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.914, 66.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.9, 66.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.949, 66.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.001, 66.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.99, 66.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.057, 66.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.051, 66.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.261, 66.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.173, 66.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.188, 66.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.565, 66.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.559, 66.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.561, 66.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.558, 66.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.595, 66.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.623, 66.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.618, 66.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.418, 66.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.651, 66.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.651, 66.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.006, 65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.966, 65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.699, 66.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.697, 66.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.692, 66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.7, 66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.698, 66.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.689, 66.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.733, 66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.7, 66.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.704, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.689, 66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.688, 66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.457, 66.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.611, 66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.012, 65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.997, 65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.984, 65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.066, 65.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.947, 65.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.079, 65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.926, 65.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.924, 65.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.608, 65.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.923, 65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.916, 65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.927, 65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.086, 65.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.04, 65.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.93, 65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.915, 65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.254, 65.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.876, 65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.875, 65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.887, 65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.903, 65.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.757, 65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.078, 65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.899, 65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.904, 65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.92, 65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.95, 65.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.695, 66.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.928, 65.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.041, 65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.166, 64.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.946, 65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.945, 65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.951, 65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.948, 65.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.935, 65.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.941, 65.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.985, 65.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.982, 65.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.98, 65.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.966, 65.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.949, 65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.947, 65.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.955, 65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.945, 65.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.878, 64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.974, 65.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.931, 65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.924, 65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.875, 64.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.922, 65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.655, 65.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.211, 64.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.655, 65.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.671, 65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.668, 65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.677, 65.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.674, 65.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.205, 65.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.705, 65.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.705, 65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.757, 65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.72, 65.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.584, 65.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.497, 64.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.332, 65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.339, 65.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.332, 65.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.33, 65.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.305, 65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.31, 65.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.31, 65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.303, 65.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.564, 64.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.285, 65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.272, 65.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.258, 65.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.244, 65.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.21, 65.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.901, 64.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.865, 64.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.855, 64.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.853, 64.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.248, 65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.857, 64.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.857, 64.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.862, 64.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.624, 64.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.896, 64.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.428, 64.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.931, 64.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.93, 64.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.943, 64.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.924, 64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.978, 64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.962, 64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.055, 64.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.067, 64.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.633, 64.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.059, 64.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.067, 64.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.89, 65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.071, 64.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.052, 64.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.05, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.829, 64.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.109, 64.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.438, 64.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.183, 64.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.445, 64.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.967, 64.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.952, 64.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.95, 64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.945, 64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.929, 64.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.966, 64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.958, 64.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.931, 64.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.505, 65.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.917, 64.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.964, 64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.967, 64.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.91, 64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.871, 64.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.903, 64.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.899, 64.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.886, 64.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.887, 64.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.901, 64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.9, 64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.907, 64.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.979, 64.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.976, 64.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.972, 64.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.971, 64.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.975, 64.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.975, 64.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.966, 64.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.956, 64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.907, 64.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.941, 64.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.944, 64.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.956, 64.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.974, 64.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.018, 64.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.062, 64.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.033, 64.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.055, 64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.026, 64.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.015, 64.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.015, 64.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.119, 64.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.121, 64.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.113, 64.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.56, 64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.442, 64.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.422, 64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.233, 64.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.425, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.418, 64.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.424, 64.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.42, 64.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.445, 64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.436, 64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.624, 64.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.269, 64.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.231, 64.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.286, 64.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.288, 64.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.296, 64.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.28, 64.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.279, 64.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.124, 64.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.289, 64.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.237, 65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.971, 65.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.27, 65.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.291, 65.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.287, 65.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.277, 65.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.276, 65.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.335, 65.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.25, 65.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.279, 65.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.277, 65.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.285, 65.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.946, 65.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.928, 65.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.919, 65.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.917, 65.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.923, 65.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.922, 65.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.942, 65.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.931, 65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.921, 65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.929, 65.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.933, 65.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.112, 64.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.914, 65.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.943, 65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.942, 65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.931, 65.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.93, 65.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.944, 65.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.9, 65.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.93, 65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.929, 65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.943, 65.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.951, 65.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.961, 65.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -80.795, 65.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.958, 65.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.024, 65.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.023, 65.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.961, 65.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.815, 64.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.968, 65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.324, 64.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.997, 65.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -81.973, 65.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.578, 64.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.56, 64.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.549, 64.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.579, 64.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.591, 64.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.595, 64.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.602, 64.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.604, 64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.58, 64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.627, 64.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.583, 64.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.574, 64.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.587, 64.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.549, 64.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.542, 64.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.561, 64.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.527, 64.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.757, 64.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.602, 64.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.512, 64.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.586, 64.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.739, 64.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.6, 64.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.102, 64.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.53, 64.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.569, 64.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.573, 64.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.575, 64.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.527, 64.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.648, 64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.529, 64.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.479, 64.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.584, 64.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.576, 64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.54, 64.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.579, 64.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.574, 64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.585, 64.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.547, 64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -82.586, 64.766 ] } } +] +} diff --git a/data/bowheadWhale.jpg b/data/bowheadWhale.jpg new file mode 100644 index 0000000000000000000000000000000000000000..10bfd83e3f86a262049439aa4ad1b7214bb1dffd GIT binary patch literal 178997 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

{3pBSY#-WI;4{Hj6~)qPnb!deTo4; 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

Q5s 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 UF826HwaZLl`vc?Go8H~|AND;gNB{r; literal 0 HcmV?d00001 diff --git a/data/humpbackWhale.geojson b/data/humpbackWhale.geojson new file mode 100644 index 0000000..58c0166 --- /dev/null +++ b/data/humpbackWhale.geojson @@ -0,0 +1,29197 @@ +{ +"type": "FeatureCollection", +"name": "humpbackWhale", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.246, -66.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.224, -66.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.247, -66.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.485, -66.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.432, -66.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.489, -66.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.461, -66.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.931, -66.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.618, -66.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.563, -66.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.711, -66.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.705, -66.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.758, -66.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.724, -66.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.892, -66.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.901, -66.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.046, -66.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.965, -66.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.068, -66.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.901, -66.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.858, -66.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.922, -66.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.86, -66.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.942, -66.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.865, -66.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.907, -66.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.904, -66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.932, -66.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.898, -66.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.895, -66.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.932, -66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.937, -66.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.97, -66.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.984, -66.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.299, -66.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.008, -66.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.599, -66.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.532, -66.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.569, -66.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.608, -66.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.54, -66.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.508, -66.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.556, -66.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.609, -66.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.564, -66.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.567, -66.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.567, -66.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.592, -66.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.598, -66.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.592, -66.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.24, -66.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.286, -66.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.326, -66.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.344, -66.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.578, -67.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.636, -67.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.815, -67.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.771, -67.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.797, -67.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.796, -67.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.84, -67.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.838, -67.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.963, -68.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.946, -68.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.958, -68.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.959, -68.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.081, -68.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.035, -68.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.087, -68.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.041, -68.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.085, -68.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.059, -68.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.09, -68.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.079, -68.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.981, -68.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.831, -68.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.741, -68.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.814, -68.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.908, -68.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.92, -68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.343, -68.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.903, -68.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.89, -68.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.976, -68.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.294, -68.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.641, -68.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.038, -68.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.004, -68.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.956, -68.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.958, -68.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.907, -68.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.92, -68.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.816, -68.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.834, -68.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.809, -68.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.802, -68.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.706, -68.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.745, -68.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.692, -68.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.708, -68.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.631, -68.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.498, -68.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.424, -68.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.474, -68.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.473, -68.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.475, -68.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.465, -68.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.432, -68.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.459, -68.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.351, -68.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.384, -68.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.417, -68.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.335, -68.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.415, -68.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.335, -68.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.412, -68.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.365, -68.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.067, -68.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.144, -68.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.064, -68.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.061, -68.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.052, -68.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.056, -68.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.955, -68.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.036, -68.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.04, -68.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.009, -68.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.035, -68.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.037, -68.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.011, -68.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.034, -68.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.032, -68.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.982, -68.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.03, -68.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.966, -68.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.029, -68.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.025, -68.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.033, -68.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.026, -68.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.709, -68.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.667, -68.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.428, -68.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.646, -68.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.693, -68.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.645, -68.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.644, -68.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.643, -68.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.552, -68.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.639, -68.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.314, -68.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.334, -68.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.389, -68.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.532, -68.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.549, -68.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.521, -68.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.198, -68.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.231, -68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.258, -68.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.175, -68.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.209, -68.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.174, -68.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.171, -68.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.172, -68.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.033, -68.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.863, -68.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.741, -68.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.37, -68.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.37, -68.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.192, -68.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.386, -68.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.332, -68.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.332, -68.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.308, -68.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.293, -68.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.3, -68.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.179, -68.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.256, -68.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.926, -69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.927, -69.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.943, -69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.818, -69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.281, -69.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.744, -69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.685, -69.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.742, -69.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.657, -69.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.625, -69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.563, -69.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.52, -69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.491, -69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.48, -69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.302, -69.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.309, -69.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.074, -69.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.132, -69.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.069, -69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.123, -69.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.099, -69.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.115, -69.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.116, -69.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.114, -69.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.26, -69.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.928, -69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.903, -69.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.114, -69.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.901, -69.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.976, -69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.905, -69.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.909, -69.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.912, -69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.937, -69.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.914, -69.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.049, -69.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.933, -69.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.797, -69.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.723, -69.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.753, -69.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.74, -69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.654, -69.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.754, -69.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.557, -69.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.757, -69.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.673, -69.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.768, -69.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.756, -70.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.809, -69.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.626, -69.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.627, -69.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.391, -69.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.371, -69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.369, -69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.37, -69.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.061, -69.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.692, -69.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.695, -69.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.789, -69.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.703, -69.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.816, -69.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.725, -69.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.057, -70.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.055, -70.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.576, -69.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.559, -69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.552, -69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.541, -69.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.537, -69.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.533, -69.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.577, -69.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.553, -69.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.556, -69.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.561, -69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.579, -69.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.562, -69.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.681, -68.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.664, -68.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.1, -67.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.433, -67.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.256, -67.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.09, -67.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.326, -67.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.309, -26.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.336, -26.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.339, -66.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.335, -66.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.34, -66.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.348, -66.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.349, -66.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.437, -66.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.435, -66.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.528, -66.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.528, -66.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.489, -66.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.566, -66.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.565, -66.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.69, -66.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.69, -66.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.806, -66.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.813, -66.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.835, -66.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.829, -66.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.864, -66.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.853, -66.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.854, -66.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.869, -66.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.864, -66.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.998, -66.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.994, -66.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.102, -66.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.109, -66.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.149, -66.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.13, -66.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.147, -66.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.182, -66.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.167, -66.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.282, -66.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.281, -66.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.309, -66.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.336, -66.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.363, -66.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.342, -66.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.331, -66.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.344, -66.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.356, -66.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.345, -66.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.359, -66.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.292, -66.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.376, -66.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.378, -66.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.366, -66.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.379, -66.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.363, -66.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.361, -66.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.285, -66.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.35, -66.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.492, -66.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.366, -66.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.335, -66.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.352, -66.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.353, -66.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.351, -66.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.35, -66.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.352, -66.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.931, -67.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.919, -67.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.156, -67.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.051, -67.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.05, -67.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.643, -67.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.533, -67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.647, -67.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.645, -67.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.639, -67.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.637, -67.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.643, -67.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.649, -67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.673, -67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.661, -67.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.838, -67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.835, -67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.911, -67.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.91, -67.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.925, -67.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.919, -67.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.911, -67.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.948, -67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.934, -67.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.938, -67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.116, -67.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.056, -67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.889, -67.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.874, -67.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.949, -67.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.918, -67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.966, -67.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.053, -67.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.134, -67.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.123, -67.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.693, -67.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.702, -67.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.711, -67.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.761, -67.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.724, -67.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.711, -67.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.725, -67.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.679, -67.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.726, -67.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.674, -67.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.727, -67.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.818, -67.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.74, -67.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.246, -66.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.283, -66.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.211, -66.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.899, -67.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.899, -67.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.624, -66.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.607, -66.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.471, -66.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.775, -66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.769, -66.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.773, -66.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.779, -66.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.533, -26.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.295, -26.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.52, -26.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.367, -26.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.505, -26.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.368, -26.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.495, -26.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.484, -27.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.485, -27.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.457, -27.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.483, -27.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.494, -27.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.497, -27.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.545, -27.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.513, -27.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.72, -29.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.693, -29.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.731, -29.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.689, -29.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.642, -29.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.687, -29.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.426, -30.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.336, -30.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.397, -30.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.283, -30.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.11, -30.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.232, -30.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.279, -31.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.173, -31.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.088, -31.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.158, -31.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.042, -31.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.119, -31.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.715, -32.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.713, -32.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.686, -32.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.69, -32.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.664, -32.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.67, -32.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.757, -32.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.664, -32.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.077, -33.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.033, -33.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.028, -33.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.991, -33.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.934, -33.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.975, -33.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.464, -33.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.433, -33.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.33, -34.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.33, -34.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.316, -34.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.311, -34.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.218, -34.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.217, -34.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.183, -34.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.192, -34.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.723, -35.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.677, -35.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.598, -35.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.593, -35.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.574, -35.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.578, -35.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.516, -35.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.534, -35.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.51, -35.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.522, -35.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.61, -35.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.489, -35.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.123, -36.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.225, -36.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.204, -36.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.197, -36.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.94, -36.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.106, -36.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.183, -36.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.145, -36.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.18, -36.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.178, -36.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.174, -36.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.07, -37.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.076, -37.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.068, -37.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.075, -37.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.078, -37.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.076, -37.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.056, -37.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.076, -37.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.082, -37.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.081, -37.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.69, -37.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.676, -37.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.527, -37.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.613, -37.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.551, -37.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.563, -37.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.812, -38.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.781, -38.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.73, -38.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.713, -38.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.507, -38.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.589, -38.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.576, -38.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.578, -38.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.661, -38.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.748, -38.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.797, -38.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.725, -38.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.783, -38.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.157, -38.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.156, -38.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.987, -39.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.99, -39.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.905, -39.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.932, -39.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.886, -39.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.915, -39.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.481, -39.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.428, -39.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.39, -39.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.391, -39.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.239, -40.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.196, -40.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.097, -40.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.193, -40.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.877, -40.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.968, -40.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.011, -40.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.104, -40.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.041, -40.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.049, -40.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.053, -40.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.407, -40.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.446, -40.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.53, -40.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.532, -40.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.595, -40.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.577, -40.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.59, -40.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.591, -40.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.465, -40.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.467, -40.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.537, -40.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.52, -40.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.552, -40.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.555, -40.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.452, -40.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.443, -40.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.487, -40.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.493, -40.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.512, -41.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.545, -41.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.504, -41.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.501, -41.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.491, -41.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.5, -41.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.528, -41.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.481, -41.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.484, -41.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.479, -41.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.414, -42.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.418, -42.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.409, -42.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.406, -42.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.419, -42.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.397, -42.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.441, -42.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.394, -42.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.359, -42.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.38, -42.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.2, -43.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.165, -43.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.131, -43.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.137, -43.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.152, -43.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.132, -43.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.097, -43.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.115, -43.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.115, -43.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.11, -43.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.038, -44.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.043, -44.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.082, -44.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.058, -44.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.126, -44.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.062, -44.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.503, -45.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.508, -45.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.52, -45.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.519, -45.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.523, -45.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.546, -45.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.156, -46.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.158, -46.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.205, -47.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.206, -47.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.217, -47.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.816, -47.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.81, -47.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.886, -47.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.881, -47.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.903, -47.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.938, -47.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.882, -47.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.548, -48.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.541, -48.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.675, -48.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.616, -48.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.634, -48.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.633, -48.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.673, -48.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.673, -48.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.685, -49.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.722, -49.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.684, -49.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.725, -49.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.895, -49.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.922, -49.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.021, -49.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.017, -49.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.106, -49.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.053, -49.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.156, -49.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.14, -49.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.661, -50.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.665, -50.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.679, -50.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.693, -50.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.746, -50.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.729, -50.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.687, -51.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.741, -51.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.724, -51.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.746, -51.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.752, -51.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.75, -51.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.85, -51.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.753, -51.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.75, -51.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.759, -51.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.772, -51.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.762, -51.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.468, -52.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.493, -52.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.567, -52.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.569, -52.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.671, -52.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.644, -52.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.661, -52.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.647, -52.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.714, -52.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.751, -53.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.72, -53.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.832, -53.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.792, -53.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.824, -53.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.907, -53.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.917, -53.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.954, -53.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.957, -53.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.979, -53.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.967, -53.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.123, -54.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.064, -54.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.065, -54.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.853, -54.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.011, -54.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.07, -54.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.653, -55.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.702, -55.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.698, -55.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.722, -55.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.891, -55.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.767, -55.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.937, -55.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.71, -55.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.787, -55.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.895, -57.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.866, -57.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.885, -57.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.924, -57.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.953, -57.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.949, -57.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.958, -57.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.987, -57.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.95, -57.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.005, -57.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.048, -57.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.019, -57.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.043, -57.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.66, -58.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.59, -58.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.69, -58.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.613, -58.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.651, -58.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.647, -58.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.652, -58.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.665, -58.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.672, -58.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.673, -58.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.692, -58.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.682, -58.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.686, -58.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.685, -58.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.694, -60.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.611, -60.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.606, -60.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.608, -60.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.502, -60.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.607, -60.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.586, -60.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.605, -60.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.614, -60.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.605, -60.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.604, -60.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.5, -60.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.523, -60.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.497, -60.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.499, -60.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.471, -60.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.474, -60.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.467, -60.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.685, -60.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.653, -60.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.688, -60.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.66, -60.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.681, -60.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.684, -60.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.678, -60.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.699, -60.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.736, -60.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.734, -60.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.778, -60.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.753, -60.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.751, -60.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.781, -60.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.81, -60.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.782, -60.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.806, -60.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.89, -60.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.814, -60.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.649, -60.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.778, -60.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.852, -60.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.924, -60.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.937, -60.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.94, -60.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.977, -60.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.951, -60.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.971, -60.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.962, -60.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.956, -60.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.966, -60.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.991, -60.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.995, -60.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.959, -60.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.0, -60.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.003, -60.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.001, -60.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.965, -60.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.931, -60.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.946, -60.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.927, -60.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.928, -60.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.924, -60.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.919, -60.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.92, -60.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.94, -60.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.918, -60.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.866, -61.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.86, -61.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.85, -61.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.858, -61.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.858, -61.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.859, -61.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.858, -61.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.876, -61.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.86, -61.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.43, -26.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.486, -27.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.478, -27.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.482, -27.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.482, -27.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.485, -27.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.48, -27.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.486, -27.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.482, -27.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.49, -27.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.643, -28.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.585, -28.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.572, -28.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.616, -28.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.572, -28.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.419, -29.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.422, -29.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.41, -29.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.41, -29.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.299, -30.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.288, -30.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.288, -30.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.268, -30.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.281, -30.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.271, -30.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.279, -30.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.063, -30.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.089, -30.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.084, -30.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.038, -30.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.052, -30.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.034, -30.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.042, -30.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.04, -30.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.067, -30.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.105, -30.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.07, -30.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.012, -30.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.071, -30.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.113, -30.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.037, -30.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.032, -30.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.028, -30.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.029, -30.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.05, -30.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.028, -30.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.013, -31.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.036, -31.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.06, -31.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.037, -31.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.842, -31.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.844, -31.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.834, -31.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.832, -31.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.822, -31.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.829, -31.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.532, -32.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.458, -32.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.479, -32.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.42, -32.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.42, -32.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.389, -32.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.339, -32.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.35, -32.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.34, -32.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.342, -32.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.356, -32.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.336, -32.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.267, -32.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.326, -32.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.334, -32.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.317, -32.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.457, -32.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.364, -32.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.26, -32.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.297, -32.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.906, -32.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.881, -32.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.811, -33.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.869, -33.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.847, -32.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.742, -32.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.823, -33.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.68, -33.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.706, -33.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.859, -33.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.699, -33.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.65, -33.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.697, -33.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.844, -38.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.822, -38.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.843, -38.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.832, -38.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.841, -38.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.854, -38.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.855, -38.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.913, -38.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.909, -38.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.963, -38.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.046, -38.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.05, -38.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.049, -38.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.052, -38.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.063, -38.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.053, -38.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.004, -38.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.01, -38.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.193, -38.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.064, -38.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.042, -38.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.013, -38.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.017, -38.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.023, -38.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.017, -38.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.021, -38.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.025, -38.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.082, -38.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.088, -38.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.091, -38.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.371, -38.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.276, -38.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.192, -38.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.256, -38.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.194, -38.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.252, -38.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.144, -38.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.164, -38.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.207, -39.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.28, -39.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.321, -39.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.295, -39.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.471, -39.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.52, -39.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.517, -39.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.539, -39.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.521, -39.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.903, -39.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.889, -39.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.885, -39.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.889, -39.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.913, -39.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.027, -39.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.954, -39.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.937, -39.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.949, -39.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.205, -39.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.221, -39.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.222, -39.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.349, -39.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.346, -39.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.442, -39.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.79, -39.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.78, -39.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.794, -39.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.782, -39.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.815, -39.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.813, -39.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.833, -39.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.838, -39.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.868, -39.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.869, -39.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.94, -40.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.937, -40.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.047, -40.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.041, -40.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.612, -40.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.647, -40.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.733, -40.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.725, -40.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.823, -40.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.008, -40.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.063, -40.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.061, -40.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.063, -40.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.063, -40.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.102, -40.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.102, -40.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.109, -40.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.111, -40.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.135, -40.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.113, -40.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.309, -41.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.309, -41.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.318, -40.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.314, -41.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.344, -41.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.35, -41.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.439, -41.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.415, -41.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.506, -41.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.504, -41.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.015, -41.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.014, -41.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.018, -41.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.028, -41.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.029, -41.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.03, -41.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.019, -41.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.94, -41.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.028, -41.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.035, -41.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.178, -41.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.157, -41.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.183, -41.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.18, -41.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.182, -41.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.182, -41.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.184, -41.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.448, -41.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.457, -41.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.468, -41.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.465, -41.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.481, -41.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.51, -41.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.546, -41.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.56, -41.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.592, -41.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.594, -41.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.644, -41.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.642, -41.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.673, -42.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.681, -42.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.852, -42.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.922, -42.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.116, -42.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.045, -42.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.808, -42.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.792, -42.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.838, -42.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.852, -42.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.944, -42.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.945, -42.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.247, -42.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.258, -42.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.583, -42.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.319, -42.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.295, -42.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.282, -42.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.309, -42.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.399, -42.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.333, -42.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.32, -42.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.307, -42.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.517, -43.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.5, -43.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.561, -43.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.531, -43.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.507, -43.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.505, -43.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.51, -43.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.505, -43.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.515, -43.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.53, -43.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.549, -43.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.565, -43.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.563, -43.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.585, -43.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.583, -43.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.547, -43.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.587, -43.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.221, -43.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.213, -43.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.192, -43.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.2, -43.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.173, -43.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.136, -43.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.16, -43.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.997, -43.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.013, -43.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.968, -43.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.003, -43.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.005, -43.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.918, -43.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.183, -43.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.156, -43.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.163, -43.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.158, -43.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.154, -43.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.155, -43.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.19, -43.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.169, -43.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.196, -43.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.175, -43.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.784, -43.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.791, -43.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.852, -43.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.851, -43.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.948, -43.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.942, -43.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.636, -43.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.674, -43.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.758, -43.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.756, -43.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.748, -43.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.799, -43.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.818, -43.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.806, -43.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.399, -43.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.256, -43.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.253, -43.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.327, -43.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.277, -43.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.274, -43.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.17, -43.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.167, -43.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.141, -43.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.154, -43.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.137, -43.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.138, -43.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.122, -43.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.126, -43.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.143, -43.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.125, -43.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.15, -43.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.156, -43.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.161, -43.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.158, -43.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.067, -37.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.066, -37.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.072, -37.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.069, -37.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.069, -37.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.07, -37.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.064, -37.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.062, -37.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.051, -37.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.054, -37.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.054, -37.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.052, -37.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.696, -37.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.705, -37.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.659, -37.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.702, -37.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.698, -37.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.715, -37.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.697, -37.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.728, -37.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.725, -37.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.721, -37.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.726, -37.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.661, -37.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.736, -37.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.658, -37.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.659, -37.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.606, -37.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.665, -37.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.664, -37.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.674, -37.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.675, -37.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.679, -37.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.679, -37.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.681, -37.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.681, -37.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.815, -37.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.802, -37.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.802, -37.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.804, -37.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.777, -37.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.815, -37.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.789, -37.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.789, -37.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.794, -37.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.786, -37.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.886, -37.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.584, -38.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.591, -38.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.573, -37.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.572, -38.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.575, -38.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.564, -38.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.509, -38.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.509, -38.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.499, -38.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.484, -38.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.441, -38.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.443, -38.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.152, -38.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.158, -37.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.147, -37.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.147, -37.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.144, -37.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.145, -37.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.136, -37.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.153, -37.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.179, -37.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.16, -37.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.167, -37.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.155, -37.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.168, -37.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.251, -37.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.247, -37.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.243, -37.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.243, -37.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.224, -37.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.228, -37.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.177, -37.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.17, -37.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.105, -37.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.111, -37.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.099, -37.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.097, -37.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.083, -37.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.08, -37.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.675, -37.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.678, -37.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.681, -37.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -37.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.675, -37.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.67, -37.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.672, -37.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.675, -37.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.669, -37.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.665, -37.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.662, -37.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.645, -37.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.647, -37.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.669, -37.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.628, -37.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.617, -37.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.615, -37.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.593, -37.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.614, -37.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.624, -37.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.609, -37.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.626, -37.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.639, -37.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.637, -37.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.663, -37.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.671, -37.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.684, -37.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.687, -37.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.694, -37.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.692, -37.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.785, -37.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.779, -37.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.775, -37.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.774, -37.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.768, -37.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.77, -37.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.762, -37.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.767, -37.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.766, -37.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.663, -38.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.661, -38.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.661, -38.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.66, -38.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.659, -38.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.659, -38.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.643, -38.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.644, -38.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.639, -38.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.638, -38.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.635, -38.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.636, -38.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.639, -38.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.488, -38.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.49, -38.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.491, -38.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.508, -38.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.502, -38.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.501, -38.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.478, -38.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -38.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.5, -38.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.507, -38.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.511, -38.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.5, -38.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.275, -38.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.299, -38.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.31, -38.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.297, -38.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.309, -38.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.309, -38.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.307, -38.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.312, -38.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.312, -38.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.315, -38.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.315, -38.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.33, -38.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.325, -38.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -38.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.519, -38.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.531, -38.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.59, -38.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.594, -38.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.589, -38.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.598, -38.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.629, -38.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.614, -38.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.703, -38.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.688, -38.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.755, -38.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.71, -38.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.731, -38.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.737, -38.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.249, -38.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.258, -38.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.23, -38.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.256, -38.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.265, -38.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.263, -38.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.353, -38.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.266, -38.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.263, -38.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.284, -38.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.26, -38.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.261, -38.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.222, -38.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.224, -38.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.245, -38.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.244, -38.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.261, -38.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.257, -38.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.251, -38.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.254, -38.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.259, -38.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.258, -38.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.156, -38.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.156, -38.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.158, -38.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.15, -38.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.157, -38.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.165, -38.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.161, -38.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.172, -38.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.172, -38.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.211, -38.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.195, -38.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.2, -38.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.202, -38.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.016, -38.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.019, -38.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.043, -38.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.03, -38.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.037, -38.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.034, -38.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.031, -38.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.98, -38.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.051, -38.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.054, -38.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.071, -38.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.058, -38.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.277, -39.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.274, -39.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.275, -39.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.277, -39.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.276, -39.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.278, -39.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.266, -39.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.293, -39.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.348, -39.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.344, -39.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.352, -39.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.347, -39.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.356, -39.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.256, -39.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.238, -39.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.266, -39.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.273, -39.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.275, -39.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.265, -39.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.644, -39.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.639, -39.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.625, -39.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.628, -39.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.651, -39.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.631, -39.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.629, -39.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.632, -39.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.614, -39.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.651, -39.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.651, -39.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.654, -39.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.676, -39.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.658, -39.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.715, -39.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.604, -39.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.609, -39.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.611, -39.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.589, -39.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.596, -39.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.589, -39.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.598, -39.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.622, -39.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.599, -39.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.631, -39.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.612, -39.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.611, -39.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.609, -39.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.607, -39.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.608, -39.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.59, -39.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.582, -39.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.572, -39.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.576, -39.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.556, -39.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.593, -39.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.592, -39.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.546, -39.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.598, -39.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.71, -39.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -39.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -39.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -39.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -39.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -39.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.672, -39.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.673, -39.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.702, -39.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.667, -39.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.667, -39.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.628, -40.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.627, -40.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.625, -40.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.626, -40.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.576, -39.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.627, -40.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.637, -40.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.635, -40.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.652, -40.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.644, -40.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.645, -40.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.635, -40.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.624, -40.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.631, -40.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.617, -40.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.618, -40.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.605, -40.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.612, -40.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.603, -40.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.605, -40.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.59, -40.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.59, -40.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.509, -40.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.567, -40.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -40.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.564, -40.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.619, -40.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.611, -40.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.618, -40.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.609, -40.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.571, -40.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.589, -40.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.588, -40.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.585, -40.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.672, -40.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.547, -40.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.541, -40.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.499, -40.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.482, -40.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.475, -40.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.476, -40.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.474, -40.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.473, -40.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.4, -41.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.421, -41.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.439, -41.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.437, -41.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.451, -41.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.438, -41.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.511, -41.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.425, -41.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.457, -41.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.489, -41.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.477, -41.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.473, -41.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.529, -41.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.545, -41.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.55, -41.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.559, -41.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.552, -41.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.564, -41.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.569, -41.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -41.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.56, -41.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.576, -41.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.558, -41.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.562, -41.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.579, -41.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.613, -41.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.586, -41.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.544, -41.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.556, -41.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.551, -41.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.619, -41.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.575, -41.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.59, -41.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.584, -41.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.584, -41.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.586, -41.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.61, -41.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.585, -41.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.716, -41.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.619, -41.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.618, -41.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.621, -41.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.617, -41.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.611, -41.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.605, -41.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.608, -41.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.605, -41.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.607, -41.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.626, -41.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.624, -41.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.629, -41.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.63, -41.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.571, -41.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.576, -41.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.589, -41.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.576, -41.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.582, -41.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.577, -41.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.575, -41.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.573, -41.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.57, -41.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.571, -41.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.537, -41.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.53, -41.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.333, -41.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.502, -41.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.508, -41.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.472, -41.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.479, -41.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.491, -41.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.488, -41.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.488, -41.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.489, -41.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.489, -41.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.488, -41.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.471, -41.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.485, -41.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.47, -41.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.473, -41.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.453, -41.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.476, -41.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.286, -41.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.478, -41.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.492, -41.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.493, -41.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.537, -41.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.534, -41.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.559, -41.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.56, -41.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.56, -41.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.562, -41.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.548, -41.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.523, -41.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.515, -41.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.524, -41.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.537, -41.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.533, -41.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.535, -41.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.534, -41.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.567, -41.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.602, -41.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.602, -41.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.604, -41.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.569, -41.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -41.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.55, -41.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.559, -41.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.561, -41.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.556, -41.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.578, -41.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.567, -41.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.582, -41.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.576, -41.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.565, -41.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -41.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.563, -41.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.557, -41.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.563, -41.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.485, -41.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.477, -41.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.456, -41.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.458, -41.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.446, -41.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.451, -41.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.434, -41.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.439, -41.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.49, -41.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.424, -41.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.422, -41.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.419, -41.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.417, -41.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.416, -41.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.413, -41.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.405, -41.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.411, -41.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.4, -41.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.409, -41.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.436, -41.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.405, -41.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.427, -41.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.403, -41.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.397, -41.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.369, -41.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.533, -41.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.531, -41.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.538, -41.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.54, -41.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.54, -41.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.545, -41.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.546, -41.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.554, -41.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.553, -41.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.56, -41.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.546, -41.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.556, -41.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.605, -41.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.597, -41.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.608, -41.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.607, -41.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.626, -41.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.583, -41.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.61, -41.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.613, -41.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.615, -41.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.654, -41.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.619, -41.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.675, -40.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.677, -40.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.669, -40.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.702, -40.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.704, -40.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.723, -40.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.719, -40.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.736, -40.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.72, -40.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.702, -40.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.705, -40.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.597, -41.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.6, -41.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.61, -41.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.599, -41.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.597, -41.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.6, -41.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.601, -41.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.599, -41.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.56, -41.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.584, -41.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.394, -41.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.563, -41.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.562, -41.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.498, -41.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.492, -41.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.503, -41.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.51, -41.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.506, -41.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.499, -41.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.507, -41.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.519, -41.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.53, -41.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.527, -41.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.525, -41.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.528, -41.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.572, -41.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -41.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.535, -41.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.54, -41.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.536, -41.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.512, -41.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.519, -41.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.525, -41.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.521, -41.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.536, -41.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.523, -41.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.534, -41.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.535, -41.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.548, -41.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.544, -41.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.564, -41.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.547, -41.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.531, -41.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.548, -41.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.506, -41.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.511, -41.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.505, -41.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.504, -41.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.501, -41.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.482, -41.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.487, -41.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.455, -41.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.462, -41.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.451, -41.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.451, -41.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.45, -41.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.448, -41.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.445, -41.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.467, -41.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.451, -41.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.514, -41.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.519, -41.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.524, -41.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.522, -41.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.526, -41.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.527, -41.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.52, -41.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.533, -41.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.535, -41.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -41.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.552, -41.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.558, -41.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.553, -41.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.553, -41.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.554, -41.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.364, -42.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.384, -42.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.372, -42.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.383, -42.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.406, -42.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.397, -42.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.407, -42.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.402, -42.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.41, -42.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.406, -42.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.394, -42.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.412, -42.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.494, -42.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.43, -42.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.45, -42.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.433, -42.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.433, -42.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.436, -42.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.01, -43.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.905, -43.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.92, -43.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.918, -43.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.921, -43.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.919, -43.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.919, -43.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.921, -43.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.917, -43.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.928, -43.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.883, -43.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.938, -43.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.945, -43.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.939, -43.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.919, -43.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.94, -43.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.935, -43.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.941, -43.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.786, -44.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.783, -44.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.784, -44.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.784, -44.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.802, -44.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.795, -44.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.862, -44.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.864, -44.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.941, -44.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.965, -44.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.969, -44.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.967, -44.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.023, -44.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.002, -44.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.788, -44.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.749, -44.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.775, -44.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.771, -44.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.781, -44.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.792, -44.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.772, -44.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.785, -44.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.845, -44.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.874, -44.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.898, -44.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.891, -44.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.961, -44.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.962, -44.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.091, -45.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.097, -45.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.103, -45.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.107, -45.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.15, -45.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.12, -45.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.196, -45.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.201, -45.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.18, -45.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.208, -45.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.222, -45.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.221, -45.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.292, -45.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.293, -45.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.33, -45.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.32, -45.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.378, -45.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.381, -45.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.401, -45.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.393, -45.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.809, -46.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.764, -46.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.825, -46.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.806, -46.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.797, -46.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.803, -46.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.799, -46.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.791, -46.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.802, -46.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.78, -46.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.78, -46.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.765, -46.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.767, -46.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.759, -46.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.761, -46.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.374, -46.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.382, -46.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.437, -46.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.431, -46.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.428, -46.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.435, -46.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.478, -46.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.475, -46.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.581, -47.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.577, -47.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.585, -47.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.604, -47.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.62, -47.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.623, -47.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.375, -47.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.368, -47.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.4, -47.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.395, -47.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.398, -47.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.416, -47.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.421, -47.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.424, -47.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.454, -47.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.499, -47.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.492, -47.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.499, -47.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.516, -47.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.53, -47.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.709, -48.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.712, -48.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.715, -48.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.713, -48.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.796, -48.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.794, -48.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.822, -48.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.838, -48.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.831, -48.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.84, -48.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.918, -48.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.907, -48.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.918, -48.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.922, -48.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.947, -48.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.959, -48.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.014, -48.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.977, -48.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.993, -48.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.988, -48.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.359, -49.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.381, -49.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.385, -49.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.385, -49.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.482, -49.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.478, -49.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.468, -49.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.506, -49.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.58, -49.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.578, -49.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.567, -49.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.581, -49.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.628, -49.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.633, -49.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.652, -49.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.653, -49.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.664, -49.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.654, -49.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.835, -50.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.845, -50.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.837, -50.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.855, -50.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.868, -50.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.862, -50.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.928, -50.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.939, -50.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.954, -50.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.946, -50.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.981, -50.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.037, -50.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.004, -50.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.055, -50.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.027, -50.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.074, -50.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.299, -50.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.238, -50.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.783, -51.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.799, -51.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.802, -51.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.801, -51.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.803, -51.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.804, -51.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.856, -51.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.862, -51.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.882, -51.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.879, -51.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.926, -51.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.928, -51.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.929, -51.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.93, -51.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.968, -51.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.946, -51.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.953, -51.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.99, -51.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.027, -51.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.78, -52.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.776, -52.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.772, -52.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.786, -52.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.826, -52.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.849, -52.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.853, -52.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.859, -52.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.874, -52.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.868, -52.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.876, -53.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.876, -53.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.871, -53.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.878, -53.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.873, -53.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.879, -53.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.869, -53.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.878, -53.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.855, -53.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.81, -53.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.846, -53.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.98, -54.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.978, -54.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.979, -54.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.009, -54.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.06, -54.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.053, -54.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.103, -54.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.112, -54.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.148, -54.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.159, -54.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.226, -54.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.203, -54.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.248, -54.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.244, -54.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.276, -54.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.281, -54.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.458, -55.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.464, -55.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.515, -55.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.511, -55.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.531, -55.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.529, -55.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.54, -55.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.541, -55.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.57, -55.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.57, -55.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.582, -55.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.589, -55.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.592, -55.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.604, -55.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.625, -55.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.627, -55.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.664, -55.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.649, -55.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.672, -55.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.659, -55.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.642, -55.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.662, -55.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.728, -55.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.71, -55.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.935, -55.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.939, -55.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.984, -55.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.98, -55.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.002, -56.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.009, -55.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.089, -56.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.082, -56.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.115, -56.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.1, -56.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.111, -56.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.126, -56.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.22, -56.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.16, -56.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.184, -56.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.186, -56.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.253, -56.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.237, -56.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.249, -56.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.25, -56.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.333, -56.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.336, -56.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.398, -56.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.397, -56.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.434, -56.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.452, -56.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.157, -56.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.151, -56.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.174, -56.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.174, -56.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.201, -56.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.213, -56.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.342, -56.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.307, -56.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.332, -56.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.314, -56.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.329, -57.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.337, -56.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.39, -57.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.372, -57.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.404, -57.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.411, -57.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.444, -57.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.448, -57.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.473, -57.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.459, -57.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.503, -57.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.516, -57.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.546, -57.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.55, -57.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.617, -57.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.592, -57.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.627, -57.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.606, -57.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.665, -57.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.625, -58.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.629, -58.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.7, -58.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.667, -58.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.654, -58.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.706, -58.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.697, -58.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.693, -58.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.725, -58.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.743, -58.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.756, -58.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.769, -58.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.772, -58.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.797, -58.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.79, -58.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.807, -58.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.81, -58.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.84, -58.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.843, -58.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.884, -58.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.858, -58.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.87, -58.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.871, -58.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.03, -58.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.93, -58.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.216, -58.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.218, -58.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.286, -58.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.304, -58.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.344, -58.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.314, -58.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.323, -58.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.334, -58.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.382, -58.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.383, -58.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.39, -58.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.388, -58.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.379, -58.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.405, -58.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.414, -58.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.416, -58.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.467, -58.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.431, -58.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.471, -58.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.473, -58.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.462, -58.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.476, -58.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.581, -58.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.578, -58.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.579, -58.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.581, -58.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.373, -59.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.354, -59.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.361, -59.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.366, -59.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.386, -59.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.386, -59.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.415, -59.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.413, -59.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.419, -59.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.417, -59.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.434, -59.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.435, -59.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.452, -59.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.457, -59.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.458, -59.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.46, -59.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.444, -59.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.481, -59.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.519, -59.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.512, -59.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.514, -59.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.518, -59.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.516, -59.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.522, -59.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.706, -60.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.653, -60.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.685, -60.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.673, -60.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.66, -60.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.675, -60.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.707, -60.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.709, -60.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.782, -60.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.76, -60.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.755, -60.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.765, -60.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.773, -60.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.763, -60.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.802, -60.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.814, -60.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.808, -60.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.812, -61.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.838, -61.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.841, -61.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.852, -61.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.846, -61.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.881, -61.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.965, -61.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.918, -61.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.91, -61.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.927, -61.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.909, -61.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.93, -61.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.897, -61.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.941, -61.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.134, -62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.135, -62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.145, -62.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.147, -62.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.171, -62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.175, -62.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.225, -62.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.193, -62.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.234, -62.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.223, -62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.228, -62.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.249, -62.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.283, -62.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.26, -62.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.338, -62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.309, -62.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.308, -62.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.345, -62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.343, -62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.375, -62.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.367, -62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.376, -62.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.384, -62.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.427, -62.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.417, -62.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.447, -62.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.456, -62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.495, -62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.493, -62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.483, -62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.517, -62.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.555, -62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.545, -62.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.567, -62.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.579, -62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.383, -62.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.297, -62.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.297, -62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.398, -62.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.328, -62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.316, -62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.273, -62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.321, -62.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.291, -62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.281, -62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.267, -62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.298, -62.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.302, -62.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.297, -62.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.295, -62.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.211, -62.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.018, -62.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.223, -62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.235, -62.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.226, -62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.228, -62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.143, -63.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.151, -63.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.623, -63.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.132, -63.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.154, -63.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.159, -63.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.158, -63.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.228, -63.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.187, -63.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.172, -63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.174, -63.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.189, -63.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.306, -63.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.202, -63.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.78, -63.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.263, -63.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.317, -63.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.237, -63.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.298, -63.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.34, -63.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.336, -63.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.334, -63.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.34, -63.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.389, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.384, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.393, -63.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.4, -63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.92, -64.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.913, -64.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.958, -64.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.947, -64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.959, -64.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.948, -64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.965, -64.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.965, -64.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.979, -64.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.972, -64.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.955, -64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.979, -64.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.993, -64.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.018, -64.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.008, -64.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.05, -64.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.057, -64.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.056, -64.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.08, -64.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.045, -64.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.082, -64.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.146, -64.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.145, -64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.156, -64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.157, -64.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.213, -64.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.206, -64.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.249, -64.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.237, -64.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.39, -64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.354, -64.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.373, -64.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.355, -64.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.374, -64.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.369, -64.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.355, -64.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.371, -64.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.354, -64.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.371, -64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.361, -64.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.37, -64.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.373, -64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.369, -64.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.36, -64.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.363, -64.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.35, -64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.343, -64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.362, -64.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.411, -64.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.362, -64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.143, -64.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.315, -64.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.473, -64.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.374, -64.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.375, -64.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.376, -64.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.379, -64.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.398, -64.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.39, -64.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.46, -64.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.466, -64.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.508, -64.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.481, -64.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.476, -64.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.492, -64.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.487, -64.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.493, -64.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.493, -64.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.479, -64.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.495, -64.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.516, -64.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.513, -64.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.486, -65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.501, -64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.528, -65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.516, -65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.476, -65.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.531, -65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.517, -65.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.473, -65.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.428, -65.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.444, -65.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.433, -65.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.443, -65.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.444, -65.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.478, -65.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.457, -65.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.416, -64.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.542, -65.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.484, -65.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.528, -65.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.497, -65.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.519, -65.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.534, -65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.549, -65.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.536, -65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.455, -65.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.541, -65.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.53, -65.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.543, -65.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.547, -65.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.544, -65.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.582, -65.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.555, -65.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.565, -65.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.568, -65.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.562, -65.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.576, -65.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.567, -65.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.579, -65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.578, -65.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.621, -65.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.67, -65.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.688, -65.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.804, -65.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.801, -65.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.833, -65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.828, -65.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.452, -65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.502, -65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.463, -65.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.499, -65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.463, -65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.476, -65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.49, -65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.474, -65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.465, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.461, -65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.411, -65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.438, -65.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.411, -65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.432, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.329, -65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.359, -65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.304, -65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.345, -65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.312, -65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.32, -65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.325, -65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.313, -65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.267, -65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.26, -65.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.218, -65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.239, -65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.237, -65.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.218, -65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.241, -65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.049, -65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.044, -65.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.043, -65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.037, -65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.039, -65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.052, -65.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.016, -65.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.03, -65.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.025, -65.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.027, -65.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.026, -65.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.015, -65.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.022, -65.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.032, -65.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.021, -65.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.01, -65.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.028, -65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.996, -65.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.998, -65.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.99, -65.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.993, -65.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.994, -65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.987, -65.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.955, -65.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.959, -65.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.708, -65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.658, -65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.647, -65.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.626, -65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.627, -65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.606, -65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.599, -65.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.601, -65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.563, -65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.566, -65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.524, -65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.509, -65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.432, -65.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.439, -65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.394, -65.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.414, -65.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.357, -65.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.399, -65.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.368, -65.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.376, -65.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.384, -65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.349, -65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.345, -65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.327, -65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.307, -65.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.316, -65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.352, -65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.303, -65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.289, -66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.281, -66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.29, -66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.258, -66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.24, -66.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.246, -66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.086, -66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.092, -66.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.128, -66.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.11, -66.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.126, -66.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.12, -66.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.126, -66.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.152, -66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.12, -66.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.153, -66.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.158, -66.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.105, -66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.129, -66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.091, -66.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.1, -66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.087, -66.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.021, -66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.043, -66.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.003, -66.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.02, -66.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.935, -66.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.976, -66.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.992, -66.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.004, -66.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.949, -66.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.963, -66.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.965, -66.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.949, -66.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.907, -66.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.94, -66.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.953, -66.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.926, -66.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.558, -66.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.69, -66.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.692, -66.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.684, -66.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.691, -66.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.683, -66.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.689, -66.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.691, -66.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.69, -66.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.688, -66.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.669, -66.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.707, -66.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.702, -66.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.699, -66.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.705, -66.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.937, -66.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.721, -66.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.709, -66.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.706, -66.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.71, -66.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.721, -66.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.698, -66.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.716, -66.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.686, -66.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.717, -66.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.728, -66.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.722, -66.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.596, -66.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.616, -66.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.613, -66.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.616, -66.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.61, -66.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.624, -66.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.628, -66.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.625, -66.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.62, -66.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.631, -66.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.63, -66.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.643, -66.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.634, -66.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.634, -66.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.634, -66.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.663, -66.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.631, -66.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.634, -66.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.658, -66.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.637, -66.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.63, -66.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.632, -66.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.649, -66.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.596, -66.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.633, -66.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.632, -66.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.587, -66.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.694, -66.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.688, -66.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.695, -66.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.688, -66.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.738, -66.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.704, -66.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.696, -66.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.787, -66.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.765, -66.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.72, -66.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.707, -66.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.684, -66.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.694, -66.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.631, -66.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.678, -66.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.696, -66.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.667, -66.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.674, -66.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.653, -66.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.739, -66.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.656, -66.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.638, -66.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.568, -66.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.578, -66.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.53, -66.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.571, -66.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.573, -66.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -175.166, -67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.877, -66.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.87, -66.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.888, -66.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.895, -66.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.891, -66.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.909, -66.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.899, -66.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.983, -66.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.964, -66.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.971, -66.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.96, -66.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.976, -66.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.957, -66.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.978, -66.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.01, -66.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.007, -66.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.989, -66.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.015, -66.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.02, -66.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.063, -66.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.026, -66.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.065, -66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.041, -66.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.049, -66.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.032, -66.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.056, -66.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.054, -66.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.077, -66.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -178.056, -66.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.619, -66.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.595, -66.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.586, -66.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.593, -66.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.586, -66.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.586, -66.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.418, -66.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.556, -66.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.57, -66.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.554, -66.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.568, -66.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.574, -66.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.567, -66.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.567, -66.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.565, -66.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.603, -66.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.57, -66.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.634, -66.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.629, -66.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.566, -66.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.503, -66.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.517, -66.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.497, -66.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.515, -66.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.481, -66.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.5, -66.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.504, -66.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.498, -66.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.227, -66.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.258, -66.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.326, -66.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.348, -66.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.358, -66.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.361, -66.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.363, -66.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.392, -66.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.37, -66.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.399, -66.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.374, -66.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.317, -66.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.333, -66.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.303, -66.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.288, -66.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.307, -66.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.312, -66.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.223, -66.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.223, -66.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.175, -66.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.188, -66.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.167, -66.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -177.172, -66.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.82, -66.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.872, -66.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.862, -66.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.855, -66.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.86, -66.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.842, -66.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.882, -66.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.859, -66.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.88, -66.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.869, -66.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.868, -66.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.859, -66.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.886, -66.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.87, -66.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.813, -66.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.892, -66.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.872, -66.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.867, -66.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.869, -66.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.873, -66.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.854, -66.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.868, -66.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.853, -66.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.857, -66.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.863, -66.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.831, -66.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.846, -66.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.824, -66.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.768, -66.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.814, -66.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.813, -66.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.762, -66.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.775, -66.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.712, -66.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.727, -66.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.71, -66.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.708, -66.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.681, -66.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.694, -66.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.674, -66.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.693, -66.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.7, -66.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.688, -66.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.65, -66.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.657, -66.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.641, -66.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.667, -66.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.633, -66.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.657, -66.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.608, -66.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.579, -66.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.574, -66.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.562, -66.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.563, -66.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.564, -66.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.52, -66.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.523, -66.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.519, -66.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.517, -66.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.518, -66.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.493, -66.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.518, -66.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.52, -66.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.516, -66.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.523, -66.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.512, -66.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.512, -66.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.508, -66.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.567, -66.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.496, -66.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.5, -66.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.482, -66.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.489, -66.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.455, -66.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.483, -66.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.479, -66.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.481, -66.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.424, -66.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.498, -66.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.482, -66.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.491, -66.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.481, -66.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.458, -66.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.48, -66.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.444, -66.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.479, -66.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.214, -66.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.226, -66.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.235, -66.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.261, -66.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.245, -66.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.259, -66.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.248, -66.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.251, -66.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.252, -66.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.245, -66.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.254, -66.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.267, -66.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.263, -66.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.269, -66.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.281, -66.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.292, -66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.291, -66.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.303, -66.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.309, -66.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.351, -66.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.318, -66.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.411, -66.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.398, -66.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.376, -66.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.387, -66.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.403, -66.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.406, -66.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.413, -66.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -176.415, -66.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.912, -37.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.905, -38.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.904, -37.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.839, -38.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.893, -37.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.878, -38.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.814, -38.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.817, -38.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.09, -38.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.978, -38.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.892, -38.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.995, -38.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.92, -38.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.007, -38.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.656, -39.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.131, -39.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.027, -39.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.21, -39.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.016, -39.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.245, -39.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.752, -39.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.793, -39.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.85, -39.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.955, -39.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.902, -39.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.943, -39.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.918, -39.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.195, -39.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.139, -39.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.269, -40.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.173, -39.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.181, -39.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.131, -39.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.874, -40.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.776, -40.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.942, -40.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.811, -40.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.828, -40.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.876, -40.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.877, -40.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.782, -40.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.751, -40.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.752, -40.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.782, -40.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.854, -40.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.852, -40.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.967, -41.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.966, -41.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.006, -41.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.995, -41.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.084, -41.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.156, -41.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.151, -41.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.209, -41.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.283, -41.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.274, -41.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.353, -41.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.334, -41.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.658, -41.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.438, -41.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.539, -41.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.54, -41.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.545, -42.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.541, -42.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.591, -42.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.557, -42.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.568, -42.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.606, -42.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.55, -42.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.624, -42.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.648, -42.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.686, -42.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.772, -42.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.796, -42.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.103, -42.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.048, -42.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.08, -42.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.987, -42.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.027, -42.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.098, -42.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.195, -42.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.194, -42.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.194, -42.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.376, -42.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.383, -42.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.395, -42.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.394, -42.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.479, -42.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.479, -42.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.521, -42.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.575, -42.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.567, -42.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.591, -42.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.577, -42.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.601, -42.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.489, -43.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.503, -43.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.587, -43.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.697, -43.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.663, -43.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.646, -43.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.668, -43.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.675, -43.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.685, -43.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.336, -43.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.337, -43.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.342, -43.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.357, -43.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.348, -43.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.395, -43.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.398, -43.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.453, -43.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.45, -43.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.46, -43.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.452, -43.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.465, -43.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.469, -43.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.472, -43.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.5, -43.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.31, -43.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.319, -43.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.406, -43.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.404, -43.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.456, -43.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.475, -43.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.503, -43.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.504, -43.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.287, -43.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.261, -43.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.248, -43.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.268, -43.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.25, -43.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.137, -43.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.271, -43.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.468, -43.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.292, -43.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.309, -43.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.329, -43.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.29, -43.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.347, -43.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.408, -43.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.375, -43.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.311, -43.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.316, -43.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.353, -43.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.361, -43.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.411, -43.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.414, -43.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.543, -43.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.529, -43.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.565, -43.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.562, -43.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.585, -43.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.588, -43.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.661, -44.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.805, -43.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.783, -43.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.807, -43.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.787, -43.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.8, -43.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.79, -43.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.787, -43.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.79, -43.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.789, -43.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.76, -43.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.788, -43.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.754, -43.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.752, -43.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.774, -43.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.748, -43.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.75, -43.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.749, -43.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.764, -43.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.763, -43.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.769, -43.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.773, -43.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.768, -43.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.77, -43.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.769, -43.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.793, -43.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.79, -43.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.772, -43.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.851, -43.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.836, -43.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.837, -43.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.839, -43.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.838, -43.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.81, -43.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.865, -43.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.886, -43.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.871, -43.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.895, -43.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.874, -43.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.915, -43.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.914, -43.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.919, -43.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.918, -43.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.09, -43.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.081, -43.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.133, -43.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.21, -43.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.217, -43.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.216, -43.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.233, -43.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.403, -43.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.421, -43.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.383, -43.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.414, -43.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.424, -43.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.458, -43.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.456, -43.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.486, -43.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.48, -43.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.489, -43.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.49, -43.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.347, -43.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.362, -43.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.358, -43.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.358, -43.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.366, -43.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.369, -43.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.372, -43.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.256, -43.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.249, -43.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.185, -43.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.267, -43.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.277, -43.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.26, -43.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.283, -43.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.281, -43.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.286, -43.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.312, -43.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.313, -43.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.391, -43.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.286, -43.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.292, -43.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.276, -43.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.368, -43.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.351, -43.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.32, -43.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.361, -43.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.358, -43.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.389, -43.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.384, -43.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.363, -43.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.4, -43.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.422, -43.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.403, -43.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.432, -43.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.429, -43.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.43, -43.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.434, -43.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.445, -43.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.726, -43.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.621, -43.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.475, -43.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.581, -43.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.714, -43.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.765, -43.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.724, -43.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.784, -43.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.782, -43.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.805, -43.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.812, -43.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.809, -43.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.062, -42.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.065, -42.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.1, -42.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.1, -42.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.14, -42.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.138, -42.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.164, -42.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.586, -42.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.528, -42.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.537, -42.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.553, -42.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.549, -42.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.535, -42.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.55, -42.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.553, -42.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.945, -42.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.927, -42.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.918, -42.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.945, -42.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.954, -42.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.961, -42.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.962, -42.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.036, -42.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.991, -42.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.972, -42.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.987, -42.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.983, -42.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.991, -42.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.996, -42.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.003, -42.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.0, -42.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.999, -42.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.009, -42.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.063, -42.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.06, -42.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.045, -42.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.059, -42.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.991, -42.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.039, -42.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.999, -42.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.014, -42.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.021, -42.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.01, -42.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.991, -42.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.993, -42.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.125, -42.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.099, -42.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.098, -42.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.101, -42.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.101, -42.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.11, -42.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.124, -42.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.15, -42.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.138, -42.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.504, -42.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.83, -42.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.805, -42.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.845, -42.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.3, -42.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.542, -42.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.441, -42.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.672, -42.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.449, -42.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.687, -42.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.713, -42.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.715, -42.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.695, -42.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.721, -42.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.681, -42.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.674, -42.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.674, -42.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.675, -42.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.672, -42.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.098, -43.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.109, -43.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.041, -43.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.072, -43.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.045, -43.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.043, -43.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.019, -43.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.021, -43.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.977, -43.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.988, -43.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.337, -43.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.357, -43.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.338, -43.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.341, -43.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.345, -43.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.344, -43.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.344, -43.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.348, -43.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.358, -43.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.354, -43.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.435, -43.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.358, -43.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.814, -43.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.79, -43.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.71, -43.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.708, -43.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.654, -43.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.655, -43.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.638, -43.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.255, -44.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.245, -44.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.227, -44.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.208, -44.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.171, -44.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.166, -44.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.156, -44.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.09, -44.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.121, -44.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.481, -45.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.52, -45.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.426, -45.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.421, -45.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.283, -45.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.314, -45.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.293, -45.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.302, -45.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.283, -45.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.221, -45.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.204, -45.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.212, -45.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.566, -47.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.636, -46.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.616, -47.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.652, -47.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.739, -47.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.741, -47.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.861, -47.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.848, -47.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.854, -47.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.858, -47.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.687, -47.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.496, -47.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.758, -47.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.523, -47.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.678, -47.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.526, -47.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.412, -47.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.52, -47.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.521, -47.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.519, -47.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.256, -48.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.299, -48.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.359, -48.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.358, -48.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.397, -49.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.424, -49.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.393, -49.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.435, -49.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.029, -50.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.075, -50.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.713, -49.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.238, -50.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.237, -50.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.253, -50.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.262, -50.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.309, -50.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.304, -50.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.805, -51.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.762, -51.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.812, -51.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.772, -51.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.884, -51.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.831, -51.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.856, -51.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.846, -51.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.858, -51.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.867, -51.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.897, -51.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.889, -51.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.272, -51.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.39, -51.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.343, -51.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.397, -51.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.351, -51.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.437, -51.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.519, -51.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.522, -51.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.646, -52.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.645, -52.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.521, -52.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.514, -52.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.62, -52.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.563, -52.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.594, -53.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.597, -53.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.737, -53.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.607, -53.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.231, -54.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.299, -54.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.222, -54.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.332, -54.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.361, -54.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.493, -54.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.496, -54.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.471, -55.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.472, -55.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.523, -55.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.528, -55.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.553, -55.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.537, -55.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.538, -55.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.565, -55.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.556, -55.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.577, -55.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.151, -56.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.153, -56.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.154, -56.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.15, -56.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.134, -56.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.146, -56.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.141, -56.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.152, -56.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.135, -56.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.154, -56.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.169, -56.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.155, -56.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.13, -56.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.171, -56.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.138, -56.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.174, -56.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.178, -56.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.199, -56.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.206, -56.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.202, -56.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.918, -57.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.822, -57.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.807, -57.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.809, -57.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.758, -57.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.765, -57.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.823, -57.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.762, -57.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.741, -57.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.736, -57.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.702, -57.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.671, -57.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.622, -57.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.648, -57.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.603, -57.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.574, -57.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.551, -57.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.551, -57.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.166, -58.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.169, -58.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.156, -58.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.162, -58.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.142, -58.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.162, -58.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.162, -58.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.158, -58.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.115, -58.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.153, -58.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.835, -58.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.073, -58.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.125, -58.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.792, -59.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.804, -59.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.782, -59.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.803, -59.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.78, -59.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.789, -59.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.656, -59.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.774, -59.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.603, -59.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.766, -59.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.778, -59.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.759, -59.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.757, -60.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.755, -60.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.726, -60.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.751, -60.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.73, -60.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.74, -60.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.738, -61.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.728, -61.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.406, -61.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.707, -61.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.695, -61.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.694, -61.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.262, -62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.313, -62.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.27, -62.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.312, -62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.272, -62.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.253, -62.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.091, -62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.163, -62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.125, -62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.129, -62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.921, -62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.021, -62.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.973, -62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.984, -62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.594, -62.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.622, -62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.589, -62.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.616, -62.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.675, -62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.582, -62.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.614, -62.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.574, -62.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.596, -62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.605, -62.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.687, -62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.604, -62.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.603, -62.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.586, -62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.603, -62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.682, -63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.603, -62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.45, -63.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.497, -63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.49, -63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.49, -63.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.489, -63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.488, -63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.488, -63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.464, -63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.474, -62.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.483, -62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.514, -62.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.481, -62.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.483, -62.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.416, -63.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.452, -62.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.492, -62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.505, -62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.442, -62.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.533, -62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.538, -62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.54, -62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.537, -62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.542, -62.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.604, -63.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.619, -63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.612, -63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.619, -63.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.572, -63.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.626, -63.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.607, -63.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.639, -63.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.604, -63.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.653, -63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.602, -63.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.66, -63.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.6, -63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.612, -63.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.593, -63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.555, -63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.571, -63.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.568, -63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.563, -63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.567, -63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.517, -63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.523, -63.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.517, -63.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.513, -63.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.83, -63.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.815, -63.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.814, -63.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.813, -63.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.804, -63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.788, -63.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.697, -63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.747, -63.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.727, -63.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.711, -63.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.721, -63.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.697, -63.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.718, -63.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.693, -63.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.705, -63.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.717, -63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.7, -63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.69, -63.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.698, -63.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.692, -63.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.694, -63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.711, -63.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.688, -63.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.666, -63.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.684, -63.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.69, -63.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.684, -63.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.64, -63.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.669, -63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.68, -63.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.663, -63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.656, -63.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.658, -63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.659, -63.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.654, -63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.639, -63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.645, -63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.655, -63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.617, -63.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.642, -63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.702, -63.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.649, -63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.643, -63.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.642, -63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.643, -63.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.604, -63.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.634, -63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.654, -63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.646, -63.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.595, -63.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.648, -63.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.506, -63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.522, -63.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.513, -63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.521, -63.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.529, -63.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.519, -63.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.514, -63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.517, -63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.51, -63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.515, -63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.492, -63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.714, -63.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.529, -63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.515, -63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.522, -63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.519, -63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.562, -63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.1, -63.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.523, -63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.522, -63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.521, -63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.522, -63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.699, -63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.709, -63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.692, -63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.712, -63.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.739, -63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.727, -63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.766, -63.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.748, -63.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.783, -63.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.768, -63.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.717, -63.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.774, -63.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.723, -63.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.781, -63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.777, -63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.785, -63.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.781, -63.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.787, -63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.791, -63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.77, -63.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.795, -63.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.766, -63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.763, -63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.761, -63.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.751, -63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.743, -63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.744, -63.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.729, -63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.738, -63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.716, -63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.719, -63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.725, -63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.712, -63.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.707, -63.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.7, -63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.699, -63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.687, -63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.693, -63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.674, -63.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.691, -63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.777, -63.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.662, -63.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.673, -63.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.733, -63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.669, -63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.635, -63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.666, -63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.633, -63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.659, -63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.666, -63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.651, -63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.517, -63.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.519, -63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.488, -63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.452, -63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.527, -63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.51, -63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.523, -63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.509, -63.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.513, -63.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.505, -63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.515, -63.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.498, -63.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.49, -63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.482, -62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.487, -63.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.48, -63.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.5, -63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.477, -63.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.464, -63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.469, -63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.449, -63.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.467, -63.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.456, -62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.469, -63.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.484, -62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.482, -62.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.487, -62.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.482, -62.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.064, -63.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.123, -63.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.081, -63.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.104, -63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.083, -63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.063, -63.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.074, -63.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.09, -63.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.115, -63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.093, -63.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.121, -63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.093, -63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.086, -63.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.082, -63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.068, -63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.08, -63.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.073, -63.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.053, -63.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.092, -63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.031, -63.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.049, -63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.12, -63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.083, -63.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.088, -63.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.109, -63.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.111, -63.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.108, -63.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.344, -63.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.092, -63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.112, -63.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.095, -63.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.112, -63.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.089, -63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.089, -63.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.08, -63.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.088, -63.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.072, -63.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.073, -63.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.093, -63.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.108, -63.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.121, -63.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.11, -63.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.126, -63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.118, -63.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.099, -63.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.092, -63.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.122, -63.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.997, -63.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.127, -63.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.219, -63.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.178, -63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.185, -63.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.177, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.182, -63.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.172, -63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.214, -63.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.121, -63.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.143, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.133, -63.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.132, -63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.088, -63.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.123, -63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.089, -63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.11, -63.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.121, -63.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.102, -63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.103, -63.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.091, -63.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.098, -63.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.103, -63.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.079, -63.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.129, -63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.082, -63.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.048, -63.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.025, -63.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.029, -63.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.996, -63.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.016, -63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.546, -63.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.455, -63.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.389, -63.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.448, -63.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.442, -63.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.367, -63.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.433, -63.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.436, -63.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.411, -63.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.436, -63.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.431, -63.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.436, -63.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.44, -63.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.439, -63.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.47, -63.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.442, -63.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.418, -63.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.453, -63.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.448, -63.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.454, -63.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.45, -63.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.475, -63.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.453, -63.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.434, -63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.451, -63.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.456, -63.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.455, -63.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.459, -63.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.46, -63.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.471, -63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.465, -63.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.561, -63.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.637, -63.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.645, -63.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.646, -63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.648, -63.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.656, -63.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.699, -63.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.675, -63.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.711, -63.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.679, -63.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.741, -63.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.687, -63.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.696, -63.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.679, -63.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.705, -63.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.728, -63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.716, -63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.746, -63.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.717, -63.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.722, -63.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.691, -63.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.669, -63.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.879, -63.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.747, -63.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.723, -63.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.725, -63.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.734, -63.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.726, -63.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.852, -63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.913, -63.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.927, -63.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.918, -63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.945, -63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.936, -63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.934, -63.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.938, -63.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.936, -63.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.927, -63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.938, -63.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.909, -63.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.947, -63.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.947, -63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.959, -63.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.956, -63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.973, -63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.965, -63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.962, -63.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.924, -63.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.974, -63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.977, -63.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.988, -63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.987, -63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.952, -63.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.992, -63.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.164, -63.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.163, -63.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.168, -63.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.17, -63.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.144, -63.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.195, -63.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.174, -63.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.181, -63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.176, -63.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.199, -63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.182, -63.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.178, -63.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.174, -63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.157, -63.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.176, -63.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.186, -63.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.184, -63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.147, -63.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.229, -63.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.216, -63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.238, -63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.227, -63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.232, -63.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.236, -63.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.232, -63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.252, -63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.464, -63.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.463, -63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.467, -63.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.489, -63.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.516, -63.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.507, -63.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.52, -63.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.522, -63.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.525, -63.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.543, -63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.526, -63.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.483, -63.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.536, -63.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.495, -63.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.501, -63.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.457, -63.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.459, -63.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.424, -63.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.457, -63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.569, -63.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.568, -63.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.552, -63.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.568, -63.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.576, -63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.568, -63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.63, -63.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.556, -63.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.547, -63.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.524, -63.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.545, -63.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.53, -63.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.54, -63.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.529, -63.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.534, -63.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.551, -63.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.528, -63.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.506, -63.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.523, -63.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.527, -63.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.539, -63.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.526, -63.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.535, -63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.527, -63.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.521, -63.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.527, -63.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.652, -63.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.633, -63.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.678, -63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.618, -63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.655, -63.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.598, -63.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.584, -63.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.589, -63.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.572, -63.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.586, -63.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.59, -63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.573, -63.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.545, -63.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.567, -63.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.564, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.566, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.55, -63.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.565, -63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.586, -63.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.577, -63.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.578, -63.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.579, -63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.558, -63.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.575, -63.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.56, -63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.567, -64.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.56, -64.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.645, -64.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.548, -64.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.565, -64.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.515, -64.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.568, -64.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.517, -64.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.575, -64.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.568, -63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.577, -64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.611, -64.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.589, -64.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.575, -64.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.588, -64.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.562, -64.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.58, -64.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.511, -64.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.568, -64.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.538, -64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.564, -64.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.554, -64.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.561, -64.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.58, -64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.559, -64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.612, -64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.622, -64.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.702, -64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.602, -64.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.636, -64.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.626, -64.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.654, -64.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.648, -64.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.639, -64.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.655, -64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.64, -64.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.641, -64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.642, -64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.634, -64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.638, -64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.649, -64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.63, -64.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.663, -64.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.724, -64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.676, -64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.668, -64.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.684, -64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.836, -64.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.851, -64.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.045, -64.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.868, -64.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.861, -64.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.88, -64.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.542, -64.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.885, -64.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.883, -64.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.891, -64.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.728, -37.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.75, -37.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.746, -37.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.752, -37.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.748, -37.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.734, -37.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.751, -37.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.749, -37.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.75, -37.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.75, -37.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.749, -37.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.747, -37.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.748, -37.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.749, -37.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.748, -37.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.325, -38.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.344, -38.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.35, -38.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.345, -38.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.344, -38.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.353, -38.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.356, -38.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.366, -38.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.362, -38.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.357, -38.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.362, -38.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.274, -38.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.273, -38.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.257, -38.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.266, -38.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.266, -38.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.255, -38.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.234, -38.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.227, -38.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.228, -38.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.19, -38.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.19, -38.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.173, -38.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.178, -38.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.176, -38.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.173, -38.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.928, -37.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.927, -37.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.919, -37.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.919, -37.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.934, -37.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.896, -37.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.879, -37.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.885, -37.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.854, -37.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.849, -37.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.788, -38.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.844, -37.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.424, -38.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.421, -38.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.414, -38.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.394, -38.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.426, -38.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.384, -38.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.367, -38.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.381, -38.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.359, -38.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.357, -38.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.332, -38.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.341, -38.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.307, -38.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.314, -38.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.4, -38.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.318, -38.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.296, -38.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.307, -38.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.33, -38.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.302, -38.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.338, -38.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.296, -38.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.255, -38.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.256, -38.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.213, -38.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.215, -38.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.076, -38.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.079, -38.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.075, -38.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.075, -38.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.069, -38.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.065, -38.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.992, -38.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.994, -38.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.953, -38.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.973, -38.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.973, -38.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.967, -38.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.109, -38.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.105, -38.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.102, -38.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.104, -38.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.083, -38.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.085, -38.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.327, -39.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.031, -38.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.058, -38.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.043, -38.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.048, -38.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.053, -38.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.046, -38.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.547, -39.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.502, -39.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.321, -39.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.367, -39.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.377, -39.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.477, -39.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.476, -39.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.49, -39.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.511, -39.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.524, -39.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.521, -39.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.697, -39.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.697, -39.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.66, -39.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.696, -39.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.694, -39.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.706, -39.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.663, -39.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.674, -39.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.669, -39.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.669, -39.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.672, -39.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.669, -39.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.661, -39.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.672, -39.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.673, -39.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.684, -39.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.648, -39.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.649, -39.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.621, -39.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.638, -39.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.624, -39.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.612, -39.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.702, -39.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.701, -39.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.705, -39.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.683, -39.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.685, -39.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.676, -39.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.675, -39.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.639, -39.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.671, -39.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.671, -39.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.599, -39.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.595, -39.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.597, -39.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.594, -39.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.534, -39.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.539, -39.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.547, -39.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.546, -39.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.514, -39.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.55, -39.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.561, -39.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.749, -40.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.727, -39.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.739, -39.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.762, -39.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.74, -39.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.746, -40.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.742, -40.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.71, -39.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.733, -39.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.721, -39.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.723, -39.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.839, -40.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.816, -40.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.765, -40.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.816, -40.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.815, -40.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.794, -40.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.765, -40.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.781, -40.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.77, -40.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.803, -40.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.759, -40.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.722, -40.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.748, -40.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.763, -40.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.749, -40.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.755, -40.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.743, -40.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.744, -40.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.747, -40.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.727, -40.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.734, -40.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.714, -40.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.727, -40.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.712, -40.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.714, -40.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.696, -40.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.686, -40.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.682, -40.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.684, -40.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.565, -40.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.57, -40.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.613, -41.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.578, -40.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.77, -40.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.672, -41.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.602, -41.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.681, -41.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.618, -41.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.621, -41.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.623, -41.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.584, -41.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.582, -41.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.577, -41.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.571, -41.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.576, -41.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.57, -41.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.555, -41.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.568, -41.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.557, -41.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.559, -41.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.564, -41.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.552, -41.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -41.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.551, -41.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.536, -41.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.55, -41.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.473, -41.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.47, -41.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.462, -41.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.469, -41.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.453, -41.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.454, -41.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.476, -41.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.456, -41.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.441, -41.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.527, -41.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.527, -41.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.528, -41.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.528, -41.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.525, -41.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.526, -41.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.507, -41.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.504, -41.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.465, -41.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.467, -41.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -41.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.466, -41.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.473, -41.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.432, -41.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.457, -41.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.478, -41.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.46, -41.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.479, -41.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -41.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.49, -41.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.484, -41.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.498, -41.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.486, -41.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.473, -41.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.476, -41.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.461, -41.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.455, -41.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.451, -41.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.453, -41.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.446, -41.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.447, -41.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.445, -41.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.446, -41.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.446, -41.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.445, -41.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.46, -41.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.421, -41.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.421, -41.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.426, -41.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.426, -41.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.428, -41.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.429, -41.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.442, -41.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.434, -41.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.451, -41.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.451, -41.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.453, -41.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.46, -41.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.457, -41.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.472, -41.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.521, -41.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.518, -41.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.506, -41.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.517, -41.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -41.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.479, -41.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.501, -41.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.511, -41.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.517, -41.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.516, -41.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.474, -41.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.471, -41.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.469, -41.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.459, -41.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.464, -41.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -41.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.535, -41.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.47, -41.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.469, -41.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.498, -41.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.508, -41.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.505, -41.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.505, -41.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.507, -41.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.51, -41.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.521, -41.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.522, -41.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.548, -41.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.544, -41.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.545, -41.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.548, -41.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.536, -41.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.546, -41.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.535, -41.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.471, -41.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.529, -41.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.42, -41.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.499, -41.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.408, -41.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.462, -41.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.427, -41.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.459, -41.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.426, -41.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.453, -41.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.519, -41.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.493, -41.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.494, -41.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.498, -41.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.495, -41.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.523, -41.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.4, -41.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.492, -41.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.393, -41.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.393, -41.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.391, -41.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.391, -41.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.381, -41.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.383, -41.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.402, -41.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.398, -41.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.414, -41.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.408, -41.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.438, -41.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.437, -41.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.453, -41.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.436, -41.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.435, -41.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.436, -41.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.448, -41.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.448, -41.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.453, -41.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.453, -41.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.655, -42.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.659, -42.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.693, -42.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.692, -42.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.706, -43.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.717, -42.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.726, -43.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.783, -43.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.776, -43.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.783, -43.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.788, -43.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.807, -43.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.806, -43.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.17, -44.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.193, -44.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.25, -44.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.232, -44.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.268, -44.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.263, -44.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.282, -44.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.28, -44.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.337, -44.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.34, -44.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.349, -44.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.356, -44.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.415, -44.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.414, -44.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.194, -45.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.201, -45.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.234, -45.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.237, -45.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.271, -45.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.266, -45.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.347, -45.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.346, -45.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.389, -45.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.39, -45.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.927, -46.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.964, -46.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.009, -46.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.0, -46.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.021, -46.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.023, -46.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.06, -46.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.061, -46.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.086, -46.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.103, -46.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.556, -47.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.593, -47.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.61, -47.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.609, -47.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.599, -47.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.601, -47.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.6, -47.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.6, -47.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.551, -48.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.544, -48.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.558, -48.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.558, -48.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.557, -48.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.565, -48.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.609, -49.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.608, -49.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.63, -49.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.634, -49.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.657, -49.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.644, -49.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.366, -50.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.371, -50.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.406, -50.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.407, -50.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.445, -50.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.439, -50.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.455, -50.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.459, -50.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.545, -50.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.541, -50.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.582, -50.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.591, -50.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.611, -50.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.623, -50.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.665, -50.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.666, -50.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.171, -51.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.137, -51.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.176, -51.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.183, -51.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.148, -51.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.136, -51.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.132, -51.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.12, -51.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.121, -51.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.504, -52.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.431, -52.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.441, -52.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.44, -52.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.441, -52.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.425, -52.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.444, -52.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.457, -52.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.456, -52.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.454, -52.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.463, -52.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.461, -52.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.475, -52.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.484, -52.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.476, -52.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.652, -53.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.652, -53.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.65, -53.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.654, -53.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.657, -53.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.703, -53.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.663, -53.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.671, -53.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.67, -53.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.691, -53.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.67, -53.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.669, -53.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.672, -53.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.708, -53.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.697, -53.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.502, -54.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.541, -54.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.536, -54.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.544, -54.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.554, -54.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.548, -54.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.581, -54.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.599, -54.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.433, -54.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.648, -54.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.628, -54.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.73, -54.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.732, -54.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.778, -54.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.746, -54.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.744, -54.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.784, -54.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.845, -54.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.877, -54.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.854, -54.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.947, -55.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.97, -55.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.987, -55.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.001, -55.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.042, -55.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.066, -55.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.144, -55.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.162, -55.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.172, -55.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.167, -55.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.197, -55.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.207, -55.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.208, -55.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.727, -56.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.887, -56.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.95, -56.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.952, -56.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.986, -56.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.984, -56.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.12, -56.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.098, -56.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.126, -56.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.116, -56.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.188, -56.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.122, -56.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.21, -57.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.209, -57.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.211, -57.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.226, -57.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.907, -58.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.905, -58.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.915, -58.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.923, -58.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.936, -58.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.931, -58.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.9, -58.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.935, -58.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.931, -58.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.939, -58.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.96, -58.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.94, -58.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.937, -58.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.94, -58.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.865, -58.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.94, -58.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.945, -58.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.943, -58.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.912, -58.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.944, -58.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.95, -58.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.945, -58.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.744, -59.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.728, -59.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.727, -59.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.717, -59.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.726, -59.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.718, -59.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.659, -59.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.695, -59.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.684, -59.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.675, -59.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.646, -59.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.662, -59.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.641, -59.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.66, -59.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.622, -59.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.63, -59.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.646, -59.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.621, -59.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.542, -59.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.548, -59.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.502, -59.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.504, -59.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.48, -59.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.473, -59.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.589, -60.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.662, -60.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.671, -60.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.656, -60.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.666, -60.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.68, -60.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.717, -60.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.688, -60.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.688, -60.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.691, -60.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.675, -60.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.691, -60.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.682, -60.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.671, -60.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.671, -60.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.665, -60.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.604, -60.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.653, -60.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.625, -60.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.639, -60.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.708, -60.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.598, -60.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.598, -60.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.56, -60.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.561, -60.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.09, -61.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.127, -61.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.07, -61.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.126, -61.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.088, -61.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.116, -61.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.118, -61.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.114, -61.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.108, -61.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.113, -61.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.121, -61.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.158, -61.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.125, -61.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.123, -61.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.107, -61.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.144, -61.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.14, -61.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.143, -61.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.698, -61.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.724, -61.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.724, -61.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.72, -61.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.735, -61.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.712, -61.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.713, -61.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.711, -61.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.717, -61.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.693, -61.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.681, -61.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.723, -61.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.721, -61.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.705, -61.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.723, -61.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.777, -62.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.849, -62.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.836, -62.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.832, -62.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.837, -62.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.832, -61.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.902, -62.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.854, -61.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.836, -61.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.862, -61.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.85, -61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.894, -61.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.862, -61.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.901, -61.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.895, -61.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.842, -61.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.908, -61.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.903, -61.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.947, -61.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.943, -61.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.335, -62.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.271, -62.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.262, -62.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.273, -62.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.265, -62.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.274, -62.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.256, -62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.262, -62.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.252, -62.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.254, -62.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.261, -62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.26, -62.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.238, -62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.241, -62.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.233, -62.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.24, -62.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.261, -62.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.164, -62.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.222, -62.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.529, -62.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.488, -62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.493, -62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.499, -62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.489, -62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.454, -62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.455, -62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.448, -62.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.453, -62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.439, -62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.451, -62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.429, -62.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.45, -62.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.451, -62.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.449, -62.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.49, -62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.503, -62.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.489, -62.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.504, -62.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.454, -62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.517, -62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.514, -62.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.535, -62.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.531, -62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.582, -62.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.576, -62.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.614, -62.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.663, -62.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.621, -62.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.753, -62.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.202, -62.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.22, -62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.216, -62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.223, -62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.235, -62.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.246, -62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.236, -62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.273, -62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.238, -62.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.196, -62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.205, -62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.184, -62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.203, -62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.189, -62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.172, -62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.171, -62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.163, -62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.092, -62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.109, -62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.035, -62.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.103, -62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.083, -62.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.085, -62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.288, -62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.293, -62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.324, -62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.295, -62.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.305, -62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.281, -62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.323, -62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.28, -62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.265, -62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.162, -62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.222, -62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.222, -62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.237, -62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.218, -62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.251, -62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.255, -62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.203, -62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.182, -62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.197, -62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.216, -62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.206, -62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.24, -62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.187, -62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.382, -62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.323, -62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.323, -62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.255, -62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.333, -62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.331, -62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.342, -62.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.124, -62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.334, -62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.339, -62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.34, -62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.343, -62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.367, -62.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.351, -62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.369, -62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.356, -62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.364, -62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.368, -62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.345, -62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.329, -62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.551, -62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.548, -62.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.556, -62.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.542, -62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.506, -62.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.494, -62.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.372, -62.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.434, -62.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.46, -62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.44, -62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.459, -62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.461, -62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.487, -62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.492, -62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.508, -62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.544, -62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.525, -62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.497, -62.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.607, -62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.621, -62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.7, -62.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.681, -62.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.687, -62.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.693, -62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.658, -62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.698, -62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.781, -62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.875, -62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.137, -62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.866, -62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.88, -62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.886, -62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.881, -62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.866, -62.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.88, -62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.884, -62.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.879, -62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.858, -62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.86, -62.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.846, -62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.851, -62.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.866, -62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.29, -62.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.84, -62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.845, -62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.755, -62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.778, -62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.808, -62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.885, -62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.798, -62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.809, -62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.818, -62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.809, -62.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.803, -62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.814, -62.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.821, -62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.864, -62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.827, -62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.85, -62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.795, -62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.86, -62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.85, -62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.859, -62.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.854, -62.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.814, -62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.868, -62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.873, -62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.59, -62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.565, -62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.553, -62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.562, -62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.515, -62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.561, -62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.373, -62.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.383, -62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.384, -62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.37, -62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.378, -62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.273, -62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.271, -62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.279, -62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.273, -62.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.25, -62.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.311, -62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.231, -62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.296, -62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.626, -62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.672, -62.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.684, -62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.679, -62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.701, -62.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.696, -62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.688, -62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.701, -62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.7, -62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.68, -62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.707, -62.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.726, -62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.72, -62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.773, -62.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.772, -62.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.778, -62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.793, -62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.781, -62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.803, -62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.799, -62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.809, -62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.826, -62.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.155, -62.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.123, -62.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.093, -62.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.115, -62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.089, -62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.067, -62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.04, -62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.048, -62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.016, -62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.009, -62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.941, -62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.968, -62.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.9, -62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.936, -62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.939, -62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.903, -62.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.935, -62.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.876, -62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.914, -62.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.902, -62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.9, -62.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.824, -62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.912, -62.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.889, -62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.497, -62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.496, -62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.462, -62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.467, -62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.44, -62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.429, -62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.423, -62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.413, -62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.36, -62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.386, -62.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.261, -62.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.371, -62.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.364, -62.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.365, -62.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.343, -62.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.349, -62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.383, -62.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.33, -62.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.335, -62.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.317, -62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.281, -62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.291, -62.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.267, -62.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.281, -62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.269, -63.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.264, -63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.116, -63.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.124, -63.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.095, -63.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.1, -63.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.131, -63.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.077, -63.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.284, -63.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.939, -62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.936, -62.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.914, -63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.967, -62.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.85, -62.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.746, -62.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.775, -62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.765, -62.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.757, -62.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.623, -62.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.668, -62.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.588, -62.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.619, -62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.59, -62.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.521, -62.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.456, -62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.46, -62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.45, -62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.425, -62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.363, -62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.367, -62.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.341, -62.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.353, -62.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.343, -62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.338, -62.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.378, -62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.338, -62.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.328, -62.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.325, -62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.328, -62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.318, -62.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.328, -62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.443, -62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.348, -62.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.367, -62.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.417, -62.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.399, -62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.436, -62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.413, -62.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.449, -62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.436, -62.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.142, -62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.175, -62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.561, -62.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.763, -62.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.141, -62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.124, -62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.115, -62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.123, -62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.142, -62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.105, -62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.009, -62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.076, -62.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.059, -62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.065, -62.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.077, -62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.056, -62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.048, -62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.026, -62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.025, -62.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.884, -62.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.092, -62.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.008, -62.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.048, -62.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.998, -62.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.802, -62.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.801, -62.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.748, -62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.793, -62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.724, -62.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.79, -62.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.752, -62.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.788, -62.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.755, -62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.76, -62.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.784, -62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.817, -62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.788, -62.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.783, -62.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.784, -62.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.794, -62.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.784, -62.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.835, -62.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.829, -62.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.899, -62.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.795, -62.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.877, -62.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.762, -62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.681, -62.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.664, -62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.669, -62.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.686, -62.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.611, -62.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.637, -62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.615, -62.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.612, -62.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.605, -62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.555, -62.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.585, -62.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.589, -62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.579, -62.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.546, -62.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.543, -62.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.556, -62.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.535, -62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.552, -62.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.53, -62.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.55, -62.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.507, -62.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.582, -62.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.479, -62.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.49, -62.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.364, -61.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.313, -61.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.316, -61.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.307, -61.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.304, -61.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.307, -61.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.291, -61.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.299, -61.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.299, -61.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.457, -62.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.292, -61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.293, -61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.306, -61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.292, -61.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.28, -62.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.283, -62.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.276, -62.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.279, -62.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.303, -62.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.309, -62.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.272, -62.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.322, -62.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.319, -62.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.3, -62.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.386, -62.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.127, -62.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.099, -62.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.098, -62.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.107, -62.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.099, -62.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.112, -62.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.156, -62.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.141, -62.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.169, -62.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.159, -62.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.186, -62.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.172, -62.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.212, -62.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.2, -62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.255, -62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.213, -62.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.269, -62.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.253, -62.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.246, -62.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.271, -62.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.254, -62.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.274, -62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.267, -62.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.347, -62.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.28, -62.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.285, -62.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.37, -62.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.302, -62.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.3, -62.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.067, -61.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.009, -61.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.989, -61.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.004, -61.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.023, -61.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.994, -61.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.968, -61.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.973, -61.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.926, -61.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.999, -61.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.928, -61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.9, -61.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.915, -61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.904, -61.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.9, -61.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.89, -61.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.884, -61.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.842, -61.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.853, -61.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.836, -61.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.845, -61.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.823, -61.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.821, -61.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.477, -61.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.701, -61.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.73, -61.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.754, -61.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.734, -61.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.708, -61.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.739, -61.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.799, -61.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.745, -61.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.762, -61.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.746, -61.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.922, -61.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.746, -61.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.909, -61.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.776, -61.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.742, -61.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.805, -61.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.728, -61.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.742, -61.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.725, -61.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.684, -61.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.703, -61.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.673, -61.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.697, -61.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.691, -61.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.667, -61.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.667, -61.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.936, -61.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.827, -61.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.854, -61.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.815, -61.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.849, -61.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.862, -61.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.87, -61.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.894, -61.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.891, -61.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.971, -61.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.896, -61.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.995, -61.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.901, -61.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.947, -61.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.903, -61.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.938, -61.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.887, -61.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.897, -61.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.925, -61.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.892, -61.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.948, -61.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.97, -61.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.885, -61.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.853, -61.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.788, -61.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.825, -61.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.385, -61.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.391, -61.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.358, -61.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.39, -61.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.38, -61.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.39, -61.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.425, -62.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.411, -62.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.385, -62.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.548, -62.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.41, -62.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.415, -62.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.408, -62.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.386, -62.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.4, -62.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.398, -62.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.399, -62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.451, -62.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.391, -62.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.474, -62.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.389, -62.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.824, -62.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.904, -62.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.865, -62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.91, -62.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.888, -62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.909, -62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.908, -62.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.907, -62.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.784, -62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.846, -62.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.804, -62.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.711, -62.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.735, -62.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.72, -62.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.726, -62.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.819, -62.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.706, -62.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.981, -62.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.659, -62.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.624, -62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.592, -62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.535, -62.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.65, -62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.431, -62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.444, -62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.396, -62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.394, -62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.21, -62.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.301, -62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.323, -62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.18, -62.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.214, -62.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.208, -62.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.254, -62.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.261, -62.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.146, -62.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.293, -62.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.263, -62.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.226, -62.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.239, -62.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.252, -62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.238, -62.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.275, -62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.239, -62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.363, -62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.24, -62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.216, -62.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.274, -62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.269, -62.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.508, -62.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.381, -62.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.426, -62.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.376, -62.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.381, -62.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.375, -62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.36, -62.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.368, -62.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.38, -62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.364, -62.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.39, -62.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.363, -62.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.321, -62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.359, -62.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.334, -62.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.349, -62.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.324, -62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.323, -62.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.304, -62.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.313, -62.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.295, -62.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.297, -62.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.205, -62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.197, -62.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.203, -62.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.196, -62.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.191, -62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.173, -62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.181, -62.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.15, -62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.181, -62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.168, -62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.19, -62.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.174, -62.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.211, -62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.242, -62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.261, -62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.257, -62.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.256, -62.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.303, -62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.3, -62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.219, -62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.255, -62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.253, -62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.253, -62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.251, -62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.25, -62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.233, -62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.249, -62.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.255, -62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.228, -62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.246, -62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.244, -62.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.222, -62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.241, -62.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.21, -62.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.23, -62.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.239, -62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.206, -62.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.237, -62.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.234, -62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.317, -37.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.307, -37.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.315, -37.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.282, -37.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.305, -37.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.281, -37.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.296, -37.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.287, -37.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.291, -37.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.228, -37.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.233, -37.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.245, -37.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.14, -37.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.196, -37.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.204, -37.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.561, -38.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.561, -38.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.518, -38.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.528, -38.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.53, -38.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.52, -38.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.513, -38.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.515, -38.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.496, -38.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.498, -38.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.487, -38.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.474, -38.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.46, -38.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.462, -38.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.459, -38.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.459, -38.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.071, -38.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.071, -38.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.043, -38.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.043, -38.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.038, -38.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.037, -38.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.03, -38.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.032, -38.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.0, -38.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.001, -38.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.965, -38.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.963, -38.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.94, -38.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.944, -38.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.94, -38.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.73, -38.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.759, -38.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.76, -38.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.757, -38.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.727, -38.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.728, -38.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.673, -38.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.69, -38.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.678, -38.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.592, -39.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.59, -39.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.605, -39.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.589, -39.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.583, -39.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.589, -39.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.601, -39.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.601, -39.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.597, -39.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.602, -39.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.603, -39.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.599, -39.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.598, -39.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.587, -39.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.59, -39.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.593, -39.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.778, -39.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.8, -39.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.797, -39.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.803, -39.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.801, -39.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.821, -39.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.82, -39.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.817, -39.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.827, -39.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.844, -39.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.844, -39.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.618, -40.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.577, -40.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.622, -40.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.624, -40.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.598, -40.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.637, -40.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.639, -40.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.688, -40.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.686, -40.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.701, -40.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.668, -40.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.671, -40.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.599, -40.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.596, -40.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.57, -40.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.577, -40.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.526, -40.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.522, -40.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.495, -40.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.504, -40.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.477, -40.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.479, -40.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -41.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.453, -41.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.375, -41.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.371, -41.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.369, -41.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.363, -41.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.366, -41.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.401, -41.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.373, -41.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.387, -41.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.383, -41.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.344, -41.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.35, -41.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.332, -41.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.341, -41.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.342, -41.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.334, -42.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.329, -42.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.325, -42.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.329, -42.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.337, -42.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.338, -42.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.329, -42.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.338, -42.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.301, -42.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.349, -42.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.374, -42.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.371, -42.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.376, -42.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.381, -42.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.341, -42.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.385, -42.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.393, -42.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.387, -42.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.378, -42.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.387, -42.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.418, -42.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.352, -42.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.306, -42.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.357, -42.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.358, -42.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.348, -42.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.36, -42.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.304, -42.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.395, -42.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.521, -42.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.538, -43.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.426, -43.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.483, -43.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.487, -43.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.488, -43.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.493, -43.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.495, -43.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.448, -43.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.549, -43.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.678, -43.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.643, -43.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.655, -43.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.665, -43.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.664, -43.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.486, -44.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.479, -44.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.484, -44.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.484, -44.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.516, -44.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.533, -44.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.605, -44.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.596, -44.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.602, -44.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.609, -44.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.293, -45.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.293, -45.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.307, -45.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.3, -45.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.294, -45.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.301, -45.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.34, -45.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.342, -45.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.379, -45.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.367, -45.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.385, -45.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.37, -45.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.374, -45.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.371, -45.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.331, -45.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.35, -45.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.588, -46.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.595, -46.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.596, -46.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.599, -46.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.627, -46.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.605, -46.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.591, -46.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.627, -46.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.639, -46.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.638, -46.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.696, -46.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.683, -46.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.669, -46.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.68, -46.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.892, -46.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.756, -46.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.75, -46.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.758, -46.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.773, -46.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.764, -46.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.778, -46.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.787, -46.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.781, -46.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.796, -46.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.809, -46.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.808, -46.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.862, -46.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.857, -46.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.871, -46.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.851, -46.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.346, -47.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.002, -47.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.988, -47.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.997, -47.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.981, -47.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.984, -47.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.972, -47.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.977, -47.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.937, -47.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.944, -47.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.946, -47.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.938, -47.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.895, -47.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.925, -47.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.147, -48.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.143, -48.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.135, -48.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.145, -48.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.139, -48.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.151, -48.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.197, -48.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.195, -48.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.266, -48.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.201, -48.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.424, -49.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.407, -49.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.4, -49.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.411, -49.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.427, -49.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.417, -49.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.426, -49.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.428, -49.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.414, -49.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.43, -49.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.425, -49.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.437, -49.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.456, -49.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.452, -49.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.452, -49.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.455, -49.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.418, -49.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.456, -49.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.436, -49.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.447, -49.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.448, -49.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.981, -49.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.981, -49.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.024, -49.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.026, -49.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.008, -50.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.048, -49.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.111, -49.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.108, -49.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.123, -49.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.117, -49.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.1, -49.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.12, -49.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.164, -50.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.169, -50.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.161, -50.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.173, -50.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.893, -50.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.883, -50.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.922, -50.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.926, -50.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.948, -50.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.941, -50.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.973, -50.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.99, -50.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.0, -50.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.994, -50.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.973, -50.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.002, -50.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.015, -50.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.024, -50.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.037, -50.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.031, -50.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.718, -51.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.717, -51.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.725, -51.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.732, -51.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.736, -51.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.738, -51.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.773, -51.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.797, -51.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.822, -51.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.818, -51.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.814, -51.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.828, -51.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.87, -51.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.871, -51.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.891, -51.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.891, -51.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.252, -51.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.249, -51.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.254, -51.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.259, -51.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.273, -51.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.287, -51.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.297, -51.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.291, -51.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.405, -51.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.314, -51.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.305, -51.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.267, -51.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.327, -51.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.326, -51.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.457, -51.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.334, -51.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.336, -51.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.341, -51.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.345, -51.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.828, -52.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.821, -52.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.828, -52.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.831, -52.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.845, -52.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.833, -52.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.837, -52.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.833, -52.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.789, -52.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.829, -52.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.867, -52.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.698, -52.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.825, -52.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.827, -52.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.816, -52.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.826, -52.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.804, -52.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.801, -52.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.802, -52.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.791, -52.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.791, -52.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.097, -52.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.098, -52.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.108, -52.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.104, -52.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.121, -52.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.118, -52.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.134, -53.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.133, -53.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.25, -53.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.162, -53.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.144, -53.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.151, -53.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.155, -53.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.144, -53.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.157, -53.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.212, -53.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.19, -53.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.189, -53.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.204, -53.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.633, -53.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.241, -53.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.659, -53.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.661, -53.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.668, -53.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.677, -53.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.693, -53.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.689, -53.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.68, -53.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.706, -53.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.23, -53.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.665, -53.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.719, -53.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.726, -53.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.724, -53.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.722, -53.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.736, -53.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.741, -53.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.722, -53.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.743, -53.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.732, -53.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.757, -53.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.064, -54.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.062, -54.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.061, -54.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.065, -54.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.075, -54.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.07, -54.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.994, -54.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.063, -54.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.062, -54.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.059, -54.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.061, -54.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.072, -54.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.907, -54.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.073, -54.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.037, -54.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.029, -54.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.036, -54.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.039, -54.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.035, -54.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.0, -54.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.008, -54.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.097, -54.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.006, -54.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.9, -54.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.912, -54.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.911, -54.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.912, -54.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.924, -54.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.916, -54.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.979, -54.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.933, -54.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.917, -54.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.926, -54.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.918, -54.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.891, -54.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.892, -54.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.889, -54.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.891, -54.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.635, -55.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.643, -55.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.64, -55.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.634, -55.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.604, -55.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.602, -55.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.599, -55.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.598, -55.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.579, -55.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.591, -55.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.585, -55.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.588, -55.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.639, -55.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.573, -55.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.541, -55.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.554, -55.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.54, -55.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.553, -55.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.565, -55.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.547, -55.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.546, -55.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.547, -55.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.371, -55.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.529, -55.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.489, -55.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.493, -55.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.481, -55.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.481, -55.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.484, -55.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.462, -55.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.386, -56.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.478, -56.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.489, -56.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.492, -56.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.488, -56.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.471, -56.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.473, -56.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.404, -56.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.455, -56.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.465, -56.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.458, -56.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.464, -56.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.466, -56.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.459, -56.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.358, -56.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.445, -56.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.457, -56.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.474, -56.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.461, -56.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.452, -56.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.424, -56.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.462, -56.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.44, -56.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.441, -56.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.442, -56.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.443, -56.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.743, -56.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.769, -56.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.793, -56.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.786, -56.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.791, -56.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.796, -56.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.8, -56.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.8, -56.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.825, -56.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.81, -56.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.821, -56.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.82, -56.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.818, -56.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.845, -56.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.825, -56.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.825, -56.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.832, -56.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.834, -56.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.828, -56.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.835, -56.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.868, -57.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.857, -57.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.729, -57.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.729, -57.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.728, -57.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.729, -57.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.694, -57.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.733, -57.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.742, -57.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.746, -57.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.76, -57.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.755, -57.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.746, -57.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.874, -57.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.762, -57.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.757, -57.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.759, -57.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.761, -57.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.766, -57.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.707, -57.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.763, -57.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.753, -58.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.752, -58.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.795, -58.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.751, -58.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.738, -58.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.745, -58.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.73, -58.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.743, -58.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.743, -58.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.727, -58.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.742, -58.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.74, -58.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.744, -58.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.717, -58.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.744, -58.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.774, -58.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.747, -58.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.738, -58.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.749, -58.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.588, -58.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.772, -58.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.769, -58.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.776, -58.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.777, -58.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.754, -58.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.786, -58.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.446, -59.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.429, -59.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.435, -59.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.422, -59.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.373, -59.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.384, -59.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.393, -59.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.376, -59.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.406, -59.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.372, -59.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.396, -59.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.365, -59.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.36, -59.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.362, -59.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.346, -59.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.314, -59.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.311, -59.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.302, -59.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.317, -59.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.299, -59.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.282, -59.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.285, -59.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.154, -59.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.242, -59.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.239, -59.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.229, -59.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.859, -60.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.879, -60.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.901, -60.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.883, -60.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.885, -60.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.884, -60.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.901, -60.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.885, -60.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.922, -60.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.886, -60.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.885, -60.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.897, -60.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.885, -60.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.886, -60.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.885, -60.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.883, -60.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.885, -60.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.123, -60.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.884, -60.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.887, -60.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.84, -60.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.887, -60.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.887, -60.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.873, -60.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.892, -60.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.899, -60.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.897, -60.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.879, -60.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.238, -61.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.264, -61.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.275, -61.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.274, -61.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.156, -61.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.248, -61.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.296, -61.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.292, -61.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.427, -61.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.409, -61.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.375, -61.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.335, -61.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.312, -61.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.341, -61.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.338, -61.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.343, -61.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.349, -61.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.312, -61.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.355, -61.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.366, -61.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.741, -61.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.831, -61.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.836, -61.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.798, -61.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.843, -61.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.883, -61.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.883, -61.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.908, -61.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.905, -61.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.897, -61.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.906, -61.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.928, -61.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.917, -61.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.979, -61.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.922, -61.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.943, -61.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.944, -61.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.942, -61.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.952, -61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.962, -61.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.953, -61.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.96, -61.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.958, -61.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.977, -61.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.957, -61.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.985, -61.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.955, -61.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.941, -61.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.954, -61.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.97, -61.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.954, -61.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.147, -61.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.157, -61.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.184, -61.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.161, -61.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.169, -61.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.162, -61.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.181, -61.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.167, -61.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.101, -61.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.211, -61.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.174, -61.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.183, -61.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.204, -61.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.197, -61.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.169, -61.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.219, -61.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.337, -61.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.111, -61.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.132, -61.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.103, -61.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.118, -61.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.098, -61.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.095, -61.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.892, -62.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.919, -61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.902, -62.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.888, -61.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.904, -62.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.887, -62.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.91, -62.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.926, -62.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.933, -62.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.063, -61.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.998, -62.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.968, -62.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.986, -62.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.034, -62.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.985, -61.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.989, -61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.988, -61.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.09, -62.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.991, -61.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.989, -61.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.996, -61.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.981, -61.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.981, -62.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.978, -61.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.956, -61.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.955, -61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.956, -61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.736, -61.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.79, -61.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.784, -61.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.788, -61.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.834, -61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.844, -62.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.798, -61.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.808, -62.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.807, -62.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.811, -62.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.824, -62.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.819, -62.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.878, -62.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.862, -62.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.846, -62.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.837, -62.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.849, -62.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.923, -62.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.86, -62.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.904, -62.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.868, -62.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.904, -62.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.893, -62.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.856, -62.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.892, -62.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.905, -62.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.871, -62.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.914, -62.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.901, -62.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.754, -62.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.911, -62.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.945, -62.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.915, -62.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.897, -61.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.915, -62.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.911, -61.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.914, -62.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.917, -61.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.905, -61.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.914, -62.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.903, -61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.884, -61.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.901, -61.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.842, -61.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.871, -61.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.876, -61.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.869, -62.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.869, -61.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.531, -62.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.809, -62.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.019, -62.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.019, -61.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.033, -61.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.02, -61.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.015, -61.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.03, -61.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.02, -61.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.979, -61.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.965, -61.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.986, -61.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.982, -61.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.004, -61.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.976, -61.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.894, -61.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.895, -61.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.876, -61.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.971, -61.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.88, -61.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.033, -61.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.923, -61.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.921, -61.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.933, -61.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.88, -61.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.939, -61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.888, -61.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.94, -61.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.979, -62.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.922, -61.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.943, -61.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.938, -61.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.983, -61.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.978, -61.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.992, -61.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.983, -61.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.105, -61.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.051, -61.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.929, -61.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.498, -62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.51, -62.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.523, -62.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.515, -62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.545, -62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.527, -62.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.54, -62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.538, -62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.553, -62.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.53, -62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.529, -62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.514, -62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.528, -62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.473, -62.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.518, -62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.527, -62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.537, -62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.524, -62.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.563, -62.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.67, -62.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.523, -62.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.035, -62.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.176, -62.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.188, -62.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.189, -62.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.192, -62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.185, -62.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.174, -62.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.184, -62.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.182, -62.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.179, -62.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.183, -62.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.165, -62.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.177, -62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.124, -62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.128, -62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.127, -62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.132, -62.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.127, -62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.128, -62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.086, -62.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.077, -62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.334, -62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.063, -62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.071, -62.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.496, -62.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.014, -63.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.013, -63.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.04, -63.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.046, -63.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.067, -63.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.05, -63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.086, -63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.079, -63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.188, -63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.147, -63.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.176, -63.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.153, -63.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.204, -63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.174, -63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.222, -63.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.193, -63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.211, -63.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.226, -63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.086, -63.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.24, -63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.572, -63.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.564, -63.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.574, -63.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.567, -63.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.625, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.662, -63.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.782, -63.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.566, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.543, -63.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.553, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.54, -63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.524, -63.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.566, -63.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.555, -63.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.588, -63.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.566, -63.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.609, -63.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.597, -63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.608, -63.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.608, -63.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.602, -63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.55, -63.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.298, -63.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.293, -63.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.283, -63.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.287, -63.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.286, -63.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.284, -63.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.246, -63.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.33, -63.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.311, -63.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.316, -63.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.314, -63.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.344, -63.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.341, -63.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.367, -63.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.357, -63.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.373, -63.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.376, -63.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.399, -63.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.382, -63.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.431, -63.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.417, -63.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.474, -63.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.459, -63.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.459, -63.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.985, -63.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.987, -63.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.995, -63.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.985, -63.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.979, -63.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.91, -63.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.908, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.868, -63.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.883, -63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.847, -63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.852, -63.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.841, -63.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.844, -63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.835, -63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.842, -63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.804, -64.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.802, -63.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.794, -63.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.781, -63.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.773, -63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.764, -63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.773, -63.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.756, -63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.748, -63.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.754, -63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.688, -63.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.695, -63.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.835, -64.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.672, -63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.655, -63.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.678, -63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.646, -63.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.646, -63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.936, -64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.764, -64.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.062, -64.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.054, -64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.001, -64.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.052, -64.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.044, -64.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.038, -64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.042, -64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.036, -64.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.041, -64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.05, -64.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.046, -64.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.023, -64.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.038, -64.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.042, -64.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.049, -64.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.041, -64.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.033, -64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.04, -64.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.994, -64.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.995, -64.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.969, -64.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.974, -64.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.92, -64.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.982, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.969, -64.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.996, -64.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.664, -64.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.7, -64.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.636, -64.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.657, -64.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.668, -64.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.66, -64.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.653, -64.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.584, -64.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.588, -64.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.568, -64.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.575, -64.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.568, -64.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.565, -64.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.576, -64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.562, -64.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.559, -64.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.477, -64.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.483, -64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.479, -64.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.468, -64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.454, -64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.459, -64.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.443, -64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.456, -64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.452, -64.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.373, -64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.374, -64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.07, -63.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.066, -63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.063, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.064, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.065, -63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.061, -63.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.057, -63.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.055, -63.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.036, -63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.052, -63.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.965, -63.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.963, -63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.952, -63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.959, -63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.95, -63.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.946, -63.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.93, -63.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.936, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.942, -63.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.928, -63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.831, -63.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.838, -63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.83, -63.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.836, -63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.837, -63.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.825, -63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.817, -63.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.812, -63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.811, -63.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.82, -63.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.79, -63.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.796, -63.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.789, -63.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.743, -63.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.787, -63.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.92, -63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.921, -63.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.906, -63.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.007, -63.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.9, -63.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.885, -63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.894, -63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.896, -62.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.893, -62.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.89, -62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.891, -62.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.877, -62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.887, -62.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.871, -62.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.869, -62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.884, -62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.863, -62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.885, -62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.859, -62.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.864, -62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.857, -62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.834, -62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.845, -62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.824, -62.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.82, -62.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.808, -62.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.809, -62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.95, -62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.964, -62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.977, -62.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.972, -62.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.971, -62.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.955, -62.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.985, -62.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.983, -62.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.001, -62.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.988, -62.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.987, -62.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.002, -62.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.99, -62.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.994, -62.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.991, -62.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.008, -62.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.982, -62.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.994, -62.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.993, -62.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.994, -62.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.0, -62.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.013, -62.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.016, -62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.046, -62.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.041, -62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.006, -62.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.992, -62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.942, -62.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.964, -62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.96, -62.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.855, -62.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.919, -62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.913, -62.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.871, -62.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.873, -62.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.783, -62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.787, -62.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.762, -62.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.761, -62.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.731, -62.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.743, -62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.694, -62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.709, -62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.706, -62.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.59, -62.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.647, -62.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.27, -62.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.284, -62.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.277, -62.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.291, -62.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.317, -62.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.303, -62.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.369, -62.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.335, -62.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.346, -62.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.35, -62.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.368, -62.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.365, -62.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.389, -61.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.402, -61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.408, -61.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.407, -61.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.456, -61.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.455, -61.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.445, -61.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.486, -61.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.642, -61.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.591, -61.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.57, -61.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.573, -61.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.561, -61.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.567, -61.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.571, -61.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.607, -61.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.569, -61.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.625, -61.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.561, -61.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.622, -61.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.555, -61.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.546, -61.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.531, -61.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.526, -61.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.477, -61.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.511, -61.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.518, -61.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.5, -61.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.362, -61.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.712, -62.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.695, -62.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.664, -62.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.692, -62.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.561, -62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.692, -62.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.62, -62.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.598, -62.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.649, -62.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.598, -62.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.644, -62.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.668, -62.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.666, -62.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.672, -62.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.671, -62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.233, -61.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.668, -62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.696, -62.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.759, -62.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.705, -62.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.711, -62.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.71, -62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.714, -62.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.724, -62.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.717, -62.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.702, -62.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.718, -62.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.678, -62.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.718, -62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.723, -62.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.716, -62.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.71, -62.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.713, -62.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.717, -62.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.667, -62.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.678, -62.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.693, -62.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.65, -62.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.664, -62.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.654, -62.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.644, -62.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.645, -62.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.589, -62.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.606, -62.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.603, -62.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.659, -62.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.635, -62.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.645, -62.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.632, -62.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.581, -62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.599, -62.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.615, -62.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.604, -62.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.599, -62.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.607, -62.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.608, -62.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.59, -62.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.611, -62.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.639, -62.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.635, -62.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.636, -62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.637, -62.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.749, -62.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.683, -62.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.682, -62.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.656, -62.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.546, -62.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.55, -62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.544, -62.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.525, -62.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.543, -62.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.54, -62.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.421, -62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.532, -62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.542, -62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.558, -62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.555, -62.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.551, -62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.605, -62.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.58, -62.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.606, -62.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.602, -62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.601, -62.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.609, -62.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.619, -62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.617, -62.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.633, -62.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.645, -62.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.639, -62.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.755, -62.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.755, -62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.765, -62.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.76, -62.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.756, -62.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.763, -62.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.762, -62.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.776, -62.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.794, -62.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.784, -62.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.768, -62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.783, -62.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.768, -62.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.767, -62.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.75, -62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.752, -62.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.737, -62.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.738, -62.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.725, -62.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.714, -62.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.698, -62.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.694, -62.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.656, -62.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.669, -62.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.649, -62.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.655, -62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.646, -62.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.641, -62.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.568, -62.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.576, -62.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.546, -62.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.527, -62.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.547, -62.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.541, -62.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.552, -62.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.552, -62.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.56, -62.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.614, -62.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.598, -62.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.566, -62.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.64, -62.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.639, -62.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.654, -62.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.659, -62.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.688, -62.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.684, -62.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.705, -62.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.699, -62.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.707, -62.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.718, -62.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.738, -62.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.725, -62.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.749, -62.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.73, -62.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.737, -62.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.732, -62.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.741, -62.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.77, -62.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.766, -62.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.687, -62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.658, -62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.632, -62.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.631, -62.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.641, -62.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.619, -62.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.606, -62.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.52, -62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.535, -62.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.523, -62.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.525, -62.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.53, -62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.45, -62.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.452, -62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.396, -62.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.414, -62.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.375, -62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.368, -62.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.382, -62.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.365, -62.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.332, -62.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.335, -62.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.315, -62.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.264, -62.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.289, -62.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.223, -62.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.223, -62.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.18, -62.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.215, -62.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.159, -62.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.15, -62.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.161, -62.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.143, -62.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.042, -62.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.118, -62.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.667, -62.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.728, -62.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.745, -62.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.73, -62.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.75, -62.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.84, -62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.752, -62.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.755, -62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.758, -62.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.739, -62.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.793, -62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.821, -62.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.812, -62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.836, -62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.819, -62.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.785, -62.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.811, -62.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.814, -62.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.853, -62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.786, -62.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.805, -62.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.779, -62.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.8, -62.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.404, -62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.409, -62.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.413, -62.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.422, -62.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.433, -62.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.426, -62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.476, -62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.446, -62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.516, -62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.448, -62.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.493, -62.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.465, -62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.507, -62.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.468, -62.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.477, -62.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.47, -62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.459, -62.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.47, -62.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.511, -62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.469, -62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.474, -62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.485, -62.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.476, -62.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.468, -62.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.477, -62.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.468, -62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.477, -62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.315, -62.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.353, -62.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.353, -62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.336, -62.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.358, -62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.332, -62.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.304, -62.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.316, -62.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.271, -62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.303, -62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.257, -62.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.265, -62.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.212, -62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.223, -62.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.247, -62.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.233, -62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.235, -62.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.198, -62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.214, -62.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.215, -62.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.211, -62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.199, -62.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.373, -62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.247, -62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.26, -62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.201, -62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.276, -62.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.27, -62.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.27, -62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.276, -62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.274, -62.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.288, -62.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.29, -62.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.289, -62.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.296, -62.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.29, -62.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.233, -62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.287, -62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.287, -62.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.267, -62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.279, -62.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.553, -62.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.607, -62.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.562, -62.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.615, -62.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.615, -62.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.596, -62.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.654, -62.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.69, -62.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.741, -62.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.717, -62.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.809, -62.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.768, -62.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.81, -62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.805, -62.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.823, -62.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.825, -62.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.89, -62.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.904, -62.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.93, -62.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.921, -62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.017, -62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.194, -62.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.185, -62.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.133, -62.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.122, -62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.131, -62.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.14, -62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.131, -62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.145, -62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.127, -62.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.121, -62.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.12, -62.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.119, -62.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.122, -62.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.099, -62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.085, -62.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.094, -62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.077, -62.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.092, -62.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.097, -62.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.092, -62.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.122, -62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.105, -62.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.108, -62.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.139, -62.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.114, -62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.137, -62.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.122, -62.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.126, -62.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.125, -62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.001, -62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.994, -62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.973, -62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.992, -62.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.905, -62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.992, -62.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.972, -62.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.995, -62.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.004, -62.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.026, -62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.008, -62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.03, -62.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.051, -62.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.037, -62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.027, -63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.065, -62.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.096, -62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.082, -62.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.076, -62.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.156, -62.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.183, -62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.163, -62.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.021, -62.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.194, -62.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.213, -62.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.723, -63.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.771, -63.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.844, -63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.839, -63.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.905, -63.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.889, -63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.95, -63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.953, -63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.92, -63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.975, -63.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.995, -63.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.986, -63.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.066, -63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.06, -63.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.067, -63.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.107, -63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.116, -63.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.119, -63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.277, -63.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.247, -63.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.265, -63.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.265, -63.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.966, -63.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.972, -63.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.981, -63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.986, -63.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.997, -63.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.007, -63.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.962, -63.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.098, -63.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.068, -63.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.09, -63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.098, -63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.129, -63.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.108, -63.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.136, -63.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.127, -63.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.148, -63.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.154, -63.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.102, -63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.172, -63.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.17, -63.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.166, -63.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.178, -63.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.182, -63.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.169, -63.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.174, -63.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.189, -63.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.185, -63.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.191, -63.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.255, -63.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.257, -63.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.271, -63.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.264, -63.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.256, -63.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.259, -63.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.255, -63.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.261, -63.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.255, -63.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.255, -63.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.253, -63.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.242, -63.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.255, -63.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.245, -63.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.258, -63.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.269, -63.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.259, -63.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.261, -63.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.266, -63.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.281, -63.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.276, -63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.283, -63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.934, -63.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.232, -63.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.273, -63.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.3, -63.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.298, -63.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.301, -63.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.325, -63.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.314, -63.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.411, -63.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.398, -63.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.386, -63.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.435, -63.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.467, -63.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.528, -63.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.527, -63.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.562, -63.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.532, -63.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.543, -63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.589, -63.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.582, -63.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.612, -63.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.624, -63.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.209, -63.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.162, -63.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.207, -63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.184, -63.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.195, -63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.215, -63.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.185, -63.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.181, -63.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.192, -63.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.179, -63.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.204, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.202, -63.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.237, -63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.235, -63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.221, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.244, -63.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.238, -63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.246, -63.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.266, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.329, -63.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.323, -63.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.392, -63.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.389, -63.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.401, -63.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.396, -63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.431, -63.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.437, -63.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.548, -63.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.542, -63.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.547, -63.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.546, -63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.543, -63.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.551, -63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.024, -64.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.11, -64.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.172, -64.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.159, -64.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.152, -64.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.153, -64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.17, -64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.199, -64.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.191, -64.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.337, -64.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.268, -64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.314, -64.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.307, -64.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.25, -64.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.334, -64.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.341, -64.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.429, -64.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.389, -64.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.418, -64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.429, -64.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.431, -64.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.442, -64.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.448, -64.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.591, -64.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.551, -64.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.596, -64.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.571, -64.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.583, -64.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.585, -64.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.224, -65.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.222, -65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.101, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.225, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.239, -65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.236, -65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.158, -65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.227, -65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.258, -65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.271, -65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.262, -65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.275, -65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.265, -65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.263, -65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.27, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.273, -65.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.271, -65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.317, -65.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.284, -65.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.284, -65.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.285, -65.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.295, -65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.285, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.269, -65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.279, -65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.317, -65.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.226, -65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.206, -65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.22, -65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.174, -65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.191, -65.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.197, -65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.165, -65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.48, -65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.489, -65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.472, -65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.482, -65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.642, -65.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.442, -65.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.455, -65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.462, -65.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.496, -65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.457, -65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.473, -65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.454, -65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.411, -65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.409, -65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.417, -65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.402, -65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.4, -65.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.386, -65.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.383, -65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.366, -65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.374, -65.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.326, -65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.319, -65.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.318, -65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.316, -65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.296, -65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.299, -65.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.282, -65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.288, -65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.843, -65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.874, -65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.836, -65.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.83, -65.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.831, -65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.819, -65.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.801, -65.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.803, -65.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.79, -65.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.782, -65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.725, -65.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.716, -65.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.683, -65.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.696, -65.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.68, -65.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.692, -65.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.692, -65.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.665, -65.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.628, -65.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.626, -65.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.608, -65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.62, -65.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.517, -65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.511, -65.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.506, -65.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.428, -65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.477, -65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.435, -65.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.45, -65.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.354, -65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.336, -65.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.758, -65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.757, -65.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.751, -65.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.751, -65.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.74, -65.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.747, -65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.739, -65.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.744, -65.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.756, -65.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.742, -65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.745, -65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.739, -65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.71, -65.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.727, -65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.736, -65.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.725, -65.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.726, -65.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.719, -65.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.713, -65.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.707, -65.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.704, -65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.691, -65.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.697, -65.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.674, -65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.674, -65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.644, -65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.646, -65.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.628, -65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.635, -65.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.606, -65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.626, -65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.453, -65.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.442, -65.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.457, -65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.436, -65.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.423, -65.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.43, -65.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.391, -65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.426, -65.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.381, -65.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.403, -65.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.407, -65.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.408, -65.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.401, -65.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.399, -65.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.409, -65.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.396, -65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.384, -65.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.388, -65.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.377, -65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.382, -65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.387, -65.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.371, -65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.345, -65.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.365, -65.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.356, -65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.338, -65.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.281, -65.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.317, -65.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.346, -65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.205, -64.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.29, -65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.702, -64.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.693, -64.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.692, -64.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.688, -64.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.668, -64.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.686, -64.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.629, -64.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.661, -64.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.697, -64.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.724, -64.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.729, -64.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.763, -64.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.743, -64.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.784, -64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.773, -64.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.825, -64.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.728, -64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.829, -64.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.912, -64.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.88, -64.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.351, -64.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.972, -64.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.953, -64.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.826, -64.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.812, -64.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.793, -64.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.794, -64.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.784, -64.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.79, -64.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.795, -64.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.784, -64.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.788, -64.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.781, -64.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.831, -64.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.778, -64.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.795, -64.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.778, -64.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.795, -64.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.777, -64.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.735, -64.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.748, -64.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.769, -64.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.786, -64.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.77, -64.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.821, -64.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.772, -64.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.818, -64.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.772, -64.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.75, -64.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.756, -64.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.434, -64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.427, -64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.413, -64.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.424, -64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.426, -64.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.425, -64.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.419, -64.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.338, -64.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.386, -64.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.403, -64.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.395, -64.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.386, -64.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.386, -64.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.375, -64.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.384, -64.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.349, -64.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.351, -64.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.357, -64.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.34, -64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.33, -64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.331, -64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.303, -64.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.308, -64.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.321, -64.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.867, -64.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.28, -64.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.291, -64.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.299, -64.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.285, -64.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.279, -63.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.939, -64.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.925, -64.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.938, -64.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.927, -64.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.912, -64.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.901, -64.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.911, -64.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.895, -64.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.9, -64.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.888, -64.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.863, -64.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.963, -64.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.948, -64.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.948, -64.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.951, -64.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.979, -64.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.964, -64.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.968, -64.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.938, -64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.988, -64.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.978, -64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.989, -64.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.993, -64.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.996, -64.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.889, -64.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.89, -64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.176, -64.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.145, -64.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.17, -64.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.174, -64.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.165, -64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.169, -64.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.15, -64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.147, -64.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.151, -64.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.128, -64.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.144, -64.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.168, -64.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.148, -64.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.148, -64.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.116, -64.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.131, -64.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.146, -64.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.131, -64.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.162, -64.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.323, -64.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.249, -64.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.221, -64.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.236, -64.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.249, -64.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.221, -64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.235, -64.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.236, -64.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.235, -64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.282, -64.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.257, -64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.324, -64.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.272, -64.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.266, -64.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.235, -64.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.211, -64.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.229, -64.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.186, -64.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.188, -64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.177, -64.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.171, -64.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.168, -64.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.169, -64.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.149, -64.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.163, -64.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.297, -64.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.143, -64.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.307, -64.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.357, -64.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.324, -64.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.367, -64.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.393, -64.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.378, -64.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.38, -64.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.381, -64.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.367, -64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.384, -64.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.357, -64.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.377, -64.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.384, -64.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.376, -64.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.395, -64.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.385, -64.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.364, -64.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.387, -64.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.422, -64.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.411, -64.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.47, -64.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.47, -64.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.576, -64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.596, -64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.598, -64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.591, -64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.597, -64.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.605, -64.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.599, -64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.613, -64.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.592, -64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.536, -64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.588, -64.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.588, -64.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.569, -64.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.592, -64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.591, -64.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.605, -64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.592, -64.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.589, -64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.577, -64.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.578, -64.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.572, -64.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.533, -64.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.569, -64.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.51, -64.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.52, -64.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.525, -64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.47, -64.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.49, -64.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.489, -64.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.273, -64.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.259, -64.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.257, -64.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.259, -64.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.253, -64.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.26, -64.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.242, -64.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.276, -64.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.351, -64.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.339, -64.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.373, -64.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.357, -64.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.387, -64.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.366, -64.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.389, -64.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.352, -64.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.359, -64.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.347, -64.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.325, -64.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.339, -64.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.325, -64.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.331, -64.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.362, -64.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.329, -64.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.319, -64.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.323, -64.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.317, -64.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.014, -37.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.924, -37.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.926, -37.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.902, -37.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.91, -37.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.978, -37.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.981, -37.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.991, -37.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.99, -37.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.009, -37.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.008, -37.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.01, -37.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.987, -37.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.011, -37.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.012, -37.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.039, -37.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.055, -37.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.074, -37.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.104, -37.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.104, -37.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.12, -37.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.113, -37.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.129, -37.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.698, -37.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.691, -37.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.653, -37.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.653, -37.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.584, -37.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.641, -37.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.618, -37.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.571, -37.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.515, -37.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.541, -37.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.499, -37.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.906, -38.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.086, -37.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.066, -37.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.064, -37.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.056, -37.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.071, -37.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.05, -37.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.007, -37.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.008, -37.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.994, -37.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.974, -37.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.82, -37.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.795, -37.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.842, -37.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.791, -37.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.76, -37.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.785, -37.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.772, -37.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.771, -37.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.749, -37.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.756, -37.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.745, -37.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.749, -37.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.435, -38.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.427, -38.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.443, -37.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.422, -38.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.303, -38.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.405, -38.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.318, -38.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.319, -38.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.2, -37.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.288, -38.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.295, -38.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.098, -38.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.08, -38.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.079, -38.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.076, -38.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.046, -38.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.048, -38.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.071, -38.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.025, -38.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.03, -38.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.998, -38.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.001, -38.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.972, -38.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.966, -38.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.95, -38.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.954, -38.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.934, -38.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.95, -38.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.198, -38.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.16, -38.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.145, -38.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.142, -38.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.142, -38.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.088, -38.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.089, -38.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.005, -38.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.963, -38.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.79, -38.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.914, -38.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.349, -38.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.346, -38.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.35, -38.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.346, -38.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.334, -38.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.339, -38.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.294, -38.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.293, -38.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.221, -38.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.212, -38.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.181, -38.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.194, -38.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.18, -38.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.182, -38.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.713, -38.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.645, -38.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.58, -39.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.557, -39.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.557, -39.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.703, -39.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.704, -39.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.698, -39.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.697, -39.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.641, -39.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.63, -39.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.842, -39.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.614, -39.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.616, -39.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.596, -39.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.573, -39.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.546, -39.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.338, -39.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.328, -39.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.402, -39.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.327, -39.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.294, -39.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.295, -39.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.293, -39.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.281, -40.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.268, -40.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.706, -40.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.705, -40.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.702, -40.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.703, -40.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.682, -40.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.689, -40.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.668, -40.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.655, -40.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.657, -40.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.658, -40.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.649, -40.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.549, -41.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.528, -41.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.521, -41.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.523, -41.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.556, -41.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.516, -41.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.425, -41.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.473, -41.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.456, -42.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.455, -42.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.659, -42.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.33, -42.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.39, -42.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.356, -42.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.356, -42.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.099, -42.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.132, -42.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.136, -42.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 143.118, -42.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.963, -43.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.962, -43.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.949, -43.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.959, -43.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.93, -43.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.89, -43.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.867, -43.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.865, -43.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.861, -43.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.862, -43.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.782, -43.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.784, -43.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.719, -43.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.718, -43.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.666, -43.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.67, -43.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.7, -43.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.868, -44.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.866, -44.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.801, -44.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.802, -44.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.797, -44.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.738, -44.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.756, -44.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.691, -44.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.683, -44.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.63, -44.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.669, -44.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.933, -45.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.919, -45.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.909, -45.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.915, -45.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.832, -45.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.845, -45.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.838, -45.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.853, -45.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.803, -45.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.796, -45.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.091, -45.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.066, -45.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.056, -45.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.057, -45.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.986, -45.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.997, -45.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.995, -45.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.938, -45.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.896, -46.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.895, -46.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.2, -46.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.192, -46.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.183, -46.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.121, -46.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.117, -46.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.099, -46.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.106, -46.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.094, -46.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.095, -46.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.059, -46.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.057, -46.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.011, -46.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.012, -46.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.478, -47.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.478, -47.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.481, -47.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.47, -47.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.43, -47.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.403, -47.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.409, -47.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.366, -47.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.357, -47.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.289, -47.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 137.302, -47.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.522, -47.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.524, -47.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.466, -47.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.474, -47.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.415, -47.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.425, -47.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.4, -47.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.392, -47.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.565, -47.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.348, -47.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.25, -47.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.247, -47.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.229, -47.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.456, -48.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.435, -48.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.423, -48.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.371, -48.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.371, -48.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.321, -48.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.327, -48.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.293, -48.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.271, -48.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.881, -49.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.902, -49.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.9, -49.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.896, -49.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.851, -49.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.862, -49.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.83, -49.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.849, -49.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.751, -49.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.822, -49.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.796, -49.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.18, -49.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.19, -49.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.171, -49.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.17, -49.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.106, -49.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.11, -49.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.084, -49.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.085, -49.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.038, -49.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.973, -50.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.45, -50.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.489, -50.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.451, -50.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.44, -50.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.412, -50.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.417, -50.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.339, -50.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.347, -50.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.332, -50.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.329, -50.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.378, -50.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.278, -50.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.641, -51.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.632, -51.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.608, -51.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.613, -51.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.57, -51.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.571, -51.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.554, -51.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.559, -51.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.54, -51.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.555, -51.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.526, -51.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.069, -51.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.07, -51.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.054, -51.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.053, -51.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.021, -52.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.012, -52.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.989, -52.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.99, -52.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.956, -52.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.954, -52.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.912, -52.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.93, -52.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.691, -52.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.686, -52.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.67, -52.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.669, -52.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.624, -52.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.628, -52.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.602, -52.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.598, -52.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.597, -52.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.562, -52.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.563, -52.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.537, -52.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.537, -52.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.985, -53.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.986, -53.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.983, -53.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.954, -53.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.92, -53.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.926, -53.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.911, -53.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.913, -53.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.898, -53.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.888, -53.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.876, -53.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.792, -53.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.796, -53.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.686, -54.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.77, -54.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.723, -54.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.687, -54.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.684, -54.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.651, -54.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.657, -54.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.635, -54.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.636, -54.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.612, -54.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.605, -54.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.575, -54.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.585, -54.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.574, -54.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.574, -54.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 129.533, -54.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.954, -55.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.953, -55.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.928, -55.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.914, -55.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.859, -55.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.866, -55.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.85, -55.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.846, -55.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.822, -55.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.824, -55.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.784, -55.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 128.77, -55.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.734, -55.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.735, -55.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.683, -55.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.694, -55.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.627, -55.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.625, -55.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.572, -55.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.559, -55.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.553, -55.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.557, -55.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.506, -56.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 127.446, -56.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.417, -56.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.469, -56.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.432, -56.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.456, -56.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.381, -56.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.437, -56.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.399, -56.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.362, -56.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.361, -56.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.331, -56.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.327, -56.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.311, -56.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.316, -56.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.294, -56.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.297, -56.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.274, -56.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 126.273, -56.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 125.126, -57.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 125.13, -57.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 125.089, -57.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 125.112, -57.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 125.07, -57.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 124.98, -57.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 124.992, -57.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 124.975, -57.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 124.914, -57.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 124.917, -57.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 124.904, -57.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 124.894, -57.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 124.899, -57.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.722, -57.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.747, -57.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.747, -57.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.744, -57.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.731, -57.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.701, -58.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.652, -58.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.655, -58.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.621, -58.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.62, -58.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.589, -58.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.59, -58.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.579, -58.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.578, -58.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.541, -58.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.547, -58.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.533, -58.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.529, -58.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.484, -58.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.523, -58.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.476, -58.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 123.503, -58.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.415, -59.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.409, -59.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.363, -59.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.359, -59.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.278, -59.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.29, -59.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.286, -59.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.282, -59.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.265, -59.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.25, -59.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.218, -59.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.214, -59.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.212, -59.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 122.211, -59.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.34, -60.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.412, -60.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.348, -60.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.385, -60.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.319, -60.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.368, -60.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.373, -60.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.347, -60.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.373, -60.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.372, -60.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.402, -60.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.371, -60.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.588, -60.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.022, -60.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.022, -60.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.02, -60.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.019, -60.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.046, -60.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.022, -60.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.023, -60.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.054, -60.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.053, -60.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.902, -60.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.04, -60.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.068, -60.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.044, -60.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.045, -60.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.001, -60.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.973, -60.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.974, -60.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.972, -60.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.977, -60.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.966, -60.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.981, -60.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.991, -60.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.99, -60.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.102, -60.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.025, -60.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.035, -60.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.068, -60.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.05, -60.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.064, -60.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.051, -60.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.056, -60.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.054, -60.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.03, -60.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.035, -60.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 121.036, -60.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.823, -61.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.823, -61.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.822, -61.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.808, -61.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.837, -61.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.769, -61.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.761, -61.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.737, -61.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.738, -61.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.717, -61.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.731, -61.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.687, -61.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.667, -61.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.667, -61.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.646, -61.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.66, -61.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.408, -61.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.422, -61.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.402, -61.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.41, -61.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.394, -61.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.383, -61.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.647, -61.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.353, -61.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.365, -61.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.419, -61.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.362, -61.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.367, -61.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.36, -61.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.361, -61.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.355, -61.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.336, -61.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.353, -61.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.351, -61.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.351, -61.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.888, -62.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.909, -62.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.164, -62.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.879, -62.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.876, -62.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.852, -62.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.874, -62.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.46, -62.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.842, -62.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.831, -62.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.809, -62.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.811, -62.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.259, -62.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.756, -62.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.785, -62.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.782, -62.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.782, -62.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.984, -62.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.997, -62.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.988, -62.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.006, -62.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.993, -62.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.016, -62.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.96, -62.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.939, -62.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.036, -62.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.012, -62.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.037, -62.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.057, -62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.052, -62.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.062, -62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.065, -62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.067, -62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.081, -62.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.093, -62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.085, -62.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.201, -62.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.069, -62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.08, -62.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.04, -62.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.054, -62.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.789, -62.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.781, -62.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.777, -62.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.785, -62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.821, -62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.795, -62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.796, -62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.795, -62.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.759, -62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.766, -62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.767, -62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.766, -62.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.773, -62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.77, -62.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.812, -62.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.778, -62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.78, -62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.755, -62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.777, -62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.782, -62.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.172, -62.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.175, -62.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.195, -62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.197, -62.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.233, -62.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.209, -62.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.199, -62.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.175, -62.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.196, -62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.217, -62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.216, -62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.222, -62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.219, -62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.207, -62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.274, -62.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.227, -62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.221, -62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.204, -62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.222, -62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.247, -62.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.236, -62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.23, -62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.322, -62.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.328, -62.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.34, -62.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.306, -62.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.329, -62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.329, -62.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.351, -62.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.345, -62.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.349, -62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.335, -62.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.329, -62.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.32, -62.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.328, -62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.327, -62.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.453, -62.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.454, -63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.441, -62.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.455, -63.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.465, -63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.485, -63.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.482, -63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.48, -63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.481, -63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.178, -62.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.73, -63.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.477, -63.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.484, -63.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.487, -63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.489, -62.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.557, -63.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.511, -63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.52, -63.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.545, -63.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.454, -63.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.527, -63.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.527, -63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.526, -63.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.528, -63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.535, -63.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.529, -63.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.53, -63.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.531, -63.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.542, -63.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.531, -63.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.534, -63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.531, -63.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.524, -63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.484, -63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.434, -63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.48, -63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.475, -63.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.477, -63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.466, -63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.471, -63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.603, -63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.542, -63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.543, -63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.544, -63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.544, -63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.567, -63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.546, -63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.566, -63.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.573, -63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.593, -63.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.577, -63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.573, -63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.578, -63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.601, -63.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.603, -63.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.612, -63.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.606, -63.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.61, -63.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.61, -63.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.603, -63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.625, -63.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.613, -63.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.627, -63.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.644, -63.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.63, -63.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.646, -63.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.636, -63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.495, -63.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.517, -63.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.519, -63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.515, -63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.524, -63.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.525, -63.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.547, -63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.524, -63.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.525, -63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.536, -63.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.531, -63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.543, -63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.534, -63.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.562, -63.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.564, -63.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.54, -63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.566, -63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.568, -63.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.586, -63.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.587, -63.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.613, -63.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.711, -63.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.686, -63.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.689, -63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.692, -63.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.681, -63.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.703, -63.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.658, -63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.711, -63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.608, -63.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.599, -63.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.54, -63.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.545, -63.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.537, -63.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.543, -63.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.539, -63.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.55, -63.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.539, -63.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.637, -63.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.693, -63.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.501, -63.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.509, -63.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.543, -63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.54, -63.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.55, -63.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.543, -63.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.564, -63.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.564, -63.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.584, -63.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.577, -63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.351, -63.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.564, -63.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.548, -63.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.514, -63.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.505, -63.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.541, -63.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.561, -63.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.558, -63.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.608, -63.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.598, -63.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.589, -63.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.602, -63.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.604, -63.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.603, -63.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.694, -63.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.678, -63.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.742, -63.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.708, -63.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.76, -63.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.734, -63.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.766, -63.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.756, -63.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.742, -63.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.723, -63.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.711, -63.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.711, -63.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.678, -63.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.689, -63.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.672, -63.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.682, -63.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.67, -63.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.681, -63.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.629, -63.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.667, -63.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.665, -63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.676, -63.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.745, -63.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.78, -63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.764, -63.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.832, -63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.811, -63.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.789, -63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.868, -63.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.878, -63.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.785, -63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.792, -63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.781, -63.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.796, -63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.794, -63.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.805, -63.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.817, -63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.808, -63.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.821, -63.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.81, -63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.845, -63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.866, -63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.82, -63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.83, -63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.832, -63.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.831, -63.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.903, -63.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.813, -63.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.865, -63.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.884, -63.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.814, -63.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.828, -63.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.831, -63.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.854, -63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.838, -63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.848, -63.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.844, -63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.849, -63.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.845, -63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.861, -63.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.865, -63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.867, -63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.84, -63.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.874, -63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.872, -63.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.883, -63.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.873, -63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.875, -63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.911, -63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.878, -63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.879, -63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.881, -63.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.95, -63.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.949, -63.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.957, -63.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.948, -63.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.943, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.948, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.982, -63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.963, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.988, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.962, -63.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.965, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.964, -63.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.953, -63.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.926, -63.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.997, -63.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.911, -63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.916, -63.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.913, -63.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.914, -63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.954, -63.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.951, -63.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.868, -63.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.823, -63.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.823, -63.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.811, -63.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.833, -63.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.823, -63.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.861, -63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.878, -63.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.99, -63.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.923, -63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.899, -63.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.977, -63.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.014, -63.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.954, -63.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.953, -63.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.957, -63.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.958, -63.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.811, -63.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.009, -63.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.987, -63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.999, -63.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.569, -63.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.553, -63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.564, -63.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.567, -63.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.565, -63.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.57, -63.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.594, -63.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.584, -63.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.601, -63.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.605, -63.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.603, -63.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.646, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.62, -63.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.665, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.652, -63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.653, -63.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.657, -63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.7, -63.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.659, -63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.7, -63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.66, -63.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.662, -63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.651, -63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.566, -63.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.595, -63.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.511, -63.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.578, -63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.551, -63.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.536, -63.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.533, -63.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.551, -63.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.547, -63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.545, -63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.524, -63.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.521, -63.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.518, -63.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.501, -63.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.505, -63.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.505, -63.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.505, -63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.499, -63.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.509, -63.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.518, -63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.51, -63.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.579, -63.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.538, -63.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.555, -63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.576, -63.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.59, -63.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.57, -63.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.579, -63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.62, -63.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.674, -63.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.662, -63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.706, -63.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.682, -63.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.682, -63.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.677, -63.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.668, -63.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.675, -63.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.689, -63.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.655, -63.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.686, -63.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.708, -63.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.693, -63.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.702, -63.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.718, -63.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.693, -63.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.714, -63.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.673, -63.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.709, -63.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.729, -63.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.775, -63.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.736, -63.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.754, -63.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.741, -63.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.73, -63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.741, -63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.735, -63.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.74, -63.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.28, -63.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.34, -63.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.313, -63.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.326, -63.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.307, -63.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.3, -63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.248, -63.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.282, -63.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.131, -63.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.265, -63.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.269, -63.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.259, -63.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.25, -63.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.203, -63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.18, -63.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.158, -63.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.153, -63.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.116, -63.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.128, -63.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.205, -63.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.105, -63.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.086, -63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.079, -63.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.036, -63.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.057, -63.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.188, -63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.191, -63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.205, -63.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.192, -63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.192, -63.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.196, -63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.197, -63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.21, -63.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.201, -63.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.193, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.193, -63.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.179, -63.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.179, -63.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.168, -63.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.174, -63.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.17, -63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.174, -63.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.181, -63.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.175, -63.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.168, -63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.23, -63.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.24, -63.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.31, -63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.295, -63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.294, -63.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.3, -63.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.313, -63.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.359, -63.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.354, -63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.868, -64.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.846, -64.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.842, -64.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.808, -64.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.845, -64.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.846, -64.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.866, -64.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.847, -64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.783, -64.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.823, -64.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.832, -64.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.832, -64.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.832, -64.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.794, -64.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.706, -64.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.882, -64.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.883, -64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.876, -64.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.897, -64.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.844, -64.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.901, -64.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.949, -64.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.937, -64.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.105, -64.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.997, -64.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.037, -64.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.019, -64.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.023, -64.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.024, -64.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.022, -64.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.024, -64.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.031, -64.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.107, -64.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.061, -64.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.111, -64.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.064, -64.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.075, -64.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.071, -64.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.087, -64.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.071, -64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.984, -64.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.028, -64.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.983, -64.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.024, -64.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.997, -64.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.006, -64.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.967, -64.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.969, -64.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.907, -64.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.909, -64.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.753, -64.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.736, -64.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.71, -64.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.731, -64.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.733, -64.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.737, -64.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.719, -64.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.719, -64.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.717, -64.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.719, -64.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.675, -64.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.747, -64.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.657, -64.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.666, -64.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.663, -64.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.663, -64.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.668, -64.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.673, -64.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.682, -64.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.677, -64.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.692, -64.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.741, -64.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.719, -64.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.716, -64.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.722, -64.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.716, -64.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.716, -64.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.707, -64.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.715, -64.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.692, -64.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.713, -64.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.671, -64.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.534, -64.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.56, -64.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.531, -64.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.572, -64.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.529, -64.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.482, -64.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.505, -64.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.474, -64.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.503, -64.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.464, -64.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.474, -64.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.466, -64.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.468, -64.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.421, -64.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.466, -64.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.418, -64.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.472, -64.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.497, -64.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.473, -64.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.513, -64.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.487, -64.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.51, -64.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.538, -64.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.53, -64.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.651, -64.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.529, -64.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.538, -64.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.532, -64.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.54, -64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.583, -64.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.541, -64.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.786, -64.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.803, -64.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.848, -64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.816, -64.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.808, -64.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.824, -64.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.837, -64.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.85, -64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.867, -64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.86, -64.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.855, -64.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.875, -64.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.871, -64.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.875, -64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.873, -64.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.807, -64.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.866, -64.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.797, -64.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.863, -64.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.878, -64.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.862, -64.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.877, -64.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.86, -64.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.136, -64.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.824, -64.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.841, -64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.839, -64.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.84, -64.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.897, -64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.858, -64.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.168, -65.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.145, -65.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.179, -65.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.138, -65.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.112, -65.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.133, -65.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.103, -65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.071, -65.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.089, -65.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.07, -65.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.086, -65.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.092, -65.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.094, -65.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.086, -65.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.103, -65.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.169, -65.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.115, -65.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.134, -65.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.131, -65.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.138, -65.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.138, -65.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.164, -65.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.153, -65.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.173, -65.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.16, -65.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.181, -65.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.17, -65.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.185, -65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.185, -65.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.198, -65.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.236, -65.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.234, -65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.262, -65.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.242, -65.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.83, -64.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.846, -64.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.864, -64.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.849, -64.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.852, -64.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.862, -64.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.88, -64.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.882, -64.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.882, -64.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.906, -64.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.902, -64.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.905, -64.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.903, -64.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.877, -64.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.91, -64.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.887, -64.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.911, -64.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.962, -64.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.946, -64.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.966, -64.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.947, -64.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.9, -64.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.932, -64.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.942, -64.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.941, -64.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.942, -64.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.906, -64.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.927, -64.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.929, -64.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.915, -64.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.923, -64.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.619, -64.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.682, -64.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.599, -64.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.681, -64.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.744, -64.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.721, -64.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.723, -64.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.724, -64.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.688, -64.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.716, -64.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.675, -64.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.712, -64.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.702, -64.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.707, -64.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.785, -64.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.661, -64.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.651, -64.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.603, -64.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.644, -64.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.641, -64.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.641, -64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.668, -64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.657, -64.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.656, -64.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.659, -64.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.676, -64.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.676, -64.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.686, -64.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.684, -64.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.707, -64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.688, -64.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.722, -64.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.693, -64.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.664, -64.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.636, -64.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.651, -64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.698, -64.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.649, -64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.65, -64.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.661, -64.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.639, -64.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.622, -64.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.638, -64.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.619, -64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.627, -64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.604, -64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.657, -64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.639, -64.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.627, -64.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.651, -64.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.489, -64.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.445, -64.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.427, -64.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.436, -64.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.442, -64.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.432, -64.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.424, -64.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.428, -64.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.409, -64.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.428, -64.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.426, -64.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.428, -64.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.427, -64.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.428, -64.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.419, -64.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.429, -64.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.435, -64.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.429, -64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.441, -64.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.42, -64.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.384, -64.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.402, -64.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.387, -64.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 120.361, -64.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.761, -64.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.779, -64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.796, -64.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.764, -64.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.85, -64.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.709, -64.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.684, -64.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.692, -64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.673, -64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.694, -64.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.612, -64.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.718, -64.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.695, -64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.683, -64.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.668, -64.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.54, -64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.545, -64.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.527, -64.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 119.528, -64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.945, -64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.937, -64.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.978, -64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.931, -64.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.941, -64.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.945, -64.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.975, -64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.966, -64.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.98, -64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.976, -64.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.983, -64.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.976, -64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.93, -64.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.938, -64.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.94, -64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.914, -64.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.931, -64.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.965, -64.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.951, -64.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.954, -64.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.959, -64.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.978, -64.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.961, -64.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.409, -64.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.426, -64.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.327, -64.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.56, -64.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.296, -64.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.309, -64.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.282, -64.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.306, -64.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.302, -64.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.306, -64.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.301, -64.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.28, -64.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.291, -64.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.283, -64.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.283, -64.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.309, -64.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.272, -64.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.24, -64.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.318, -64.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.263, -64.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.25, -64.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.241, -64.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 118.253, -64.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.792, -64.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.849, -64.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.749, -64.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.79, -64.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.823, -64.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.822, -64.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.815, -64.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.825, -64.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.812, -64.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.796, -64.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.811, -64.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.814, -64.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.789, -64.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.804, -64.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.87, -64.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.833, -64.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.927, -64.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.837, -64.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.934, -64.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.858, -64.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.858, -64.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.887, -64.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.867, -64.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.863, -64.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.878, -64.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.113, -64.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.107, -64.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.044, -64.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 116.067, -64.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.986, -64.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.997, -64.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.954, -64.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.944, -64.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.889, -64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.892, -64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.877, -64.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.873, -64.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.88, -64.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.835, -64.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.848, -64.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.8, -64.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.823, -64.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.67, -64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.802, -63.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.791, -63.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.717, -63.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.732, -63.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.736, -63.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.64, -63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.632, -63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.618, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.615, -63.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.582, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.597, -63.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.25, -63.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.322, -63.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.253, -63.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.318, -63.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.317, -63.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.309, -63.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.268, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.276, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.262, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.252, -63.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.175, -63.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.184, -63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.19, -63.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.09, -63.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.131, -63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.078, -63.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.099, -63.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.07, -63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.089, -63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.073, -63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.073, -63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.078, -63.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.067, -63.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.018, -63.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.048, -63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.028, -63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.04, -63.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.027, -63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.038, -63.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.037, -63.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.035, -63.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.045, -63.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 115.034, -63.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.23, -63.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.231, -63.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.229, -63.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.218, -63.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.078, -63.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.175, -63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.202, -63.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.212, -63.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.198, -63.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.185, -63.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.196, -63.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.22, -63.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.189, -63.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.131, -63.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.14, -63.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.11, -63.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.116, -63.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.119, -63.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.241, -63.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.122, -63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.115, -63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.054, -63.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.118, -63.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 114.112, -63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.917, -63.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.956, -63.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.879, -63.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.915, -63.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.942, -63.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.919, -63.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.915, -63.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 112.139, -63.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.895, -63.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.916, -63.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.822, -63.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.79, -63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.868, -63.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.822, -63.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.767, -63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.749, -63.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 111.751, -63.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.943, -63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.057, -63.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.086, -63.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.048, -63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.035, -63.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.096, -63.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.052, -63.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.038, -63.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.015, -63.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.012, -63.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.965, -63.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.973, -63.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 110.215, -63.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.938, -63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.94, -63.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.912, -63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.929, -63.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.772, -63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.925, -63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.983, -63.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.976, -63.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.99, -63.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 109.978, -63.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.77, -63.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.772, -63.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.767, -63.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.768, -63.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.748, -63.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.756, -63.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.739, -63.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.579, -63.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.575, -63.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.527, -63.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.548, -63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.524, -63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.526, -63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.452, -63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.462, -63.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.462, -63.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.438, -63.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.412, -63.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.416, -63.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.271, -63.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.31, -63.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.317, -63.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.304, -63.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.31, -63.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.229, -63.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.26, -63.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 108.28, -63.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.842, -63.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.84, -63.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.798, -63.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.802, -63.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.685, -63.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.69, -63.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.692, -63.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.684, -63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.658, -63.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.646, -63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.641, -63.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.502, -63.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.516, -63.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.265, -63.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.384, -63.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.424, -63.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.37, -63.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.35, -63.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.321, -63.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.321, -63.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.302, -63.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.293, -63.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.146, -63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.14, -63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.075, -63.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.123, -63.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.125, -63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.122, -63.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.004, -63.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.105, -63.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.083, -63.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.114, -63.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.136, -63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.116, -63.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.156, -63.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.13, -63.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.129, -63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.075, -63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 106.133, -63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.678, -63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.695, -63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.696, -63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.681, -63.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.684, -63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.645, -63.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.67, -63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.733, -63.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.694, -63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.624, -63.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.641, -63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.64, -63.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.771, -63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.995, -63.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.65, -63.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.627, -63.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.655, -63.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.625, -63.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.624, -63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.348, -63.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.449, -63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.455, -63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.45, -63.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.462, -63.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.482, -63.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.477, -63.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.637, -63.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.49, -63.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.472, -63.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.478, -63.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.47, -63.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.467, -63.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.469, -63.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.475, -63.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.45, -63.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.384, -63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.412, -63.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.388, -63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.39, -63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.4, -63.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.366, -63.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.377, -63.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.365, -63.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.341, -63.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.349, -63.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 104.337, -63.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.8, -63.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.801, -63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.811, -63.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.789, -63.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.793, -63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.786, -63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.777, -63.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.783, -63.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.773, -63.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.781, -63.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.817, -63.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.696, -63.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.758, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.771, -63.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.814, -63.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.77, -63.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.69, -63.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.719, -63.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.694, -63.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.703, -63.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.712, -63.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.694, -63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.704, -63.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.689, -63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.348, -63.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.335, -63.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.068, -63.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.313, -63.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.32, -63.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.323, -63.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.315, -63.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.278, -63.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.305, -63.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.338, -63.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.302, -63.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.279, -63.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.302, -63.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.319, -63.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.303, -63.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.322, -63.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.313, -63.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.329, -63.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.327, -63.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.365, -63.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.33, -63.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.359, -63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.335, -63.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.355, -63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.336, -63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.316, -63.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.337, -63.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.21, -62.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.199, -62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.21, -62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.198, -62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.163, -62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.186, -62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.151, -62.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.182, -62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.106, -62.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.161, -62.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.052, -62.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.055, -62.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.107, -62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.149, -62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.095, -62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.363, -62.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.157, -62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.174, -62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.262, -62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.256, -62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.252, -62.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.263, -62.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.467, -62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.302, -62.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.342, -62.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.986, -62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.99, -62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.988, -62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.988, -62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.041, -62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.987, -62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.017, -62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.986, -62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.957, -62.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.03, -62.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.038, -62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.058, -62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.048, -62.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.037, -62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.083, -62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.083, -62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.135, -62.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.113, -62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.111, -62.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.12, -62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.127, -62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.128, -62.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.13, -62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.207, -62.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.203, -62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.22, -62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.229, -62.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.623, -62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.614, -62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.614, -62.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.611, -62.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.507, -62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.524, -62.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.474, -62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.48, -62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.478, -62.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.438, -62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.442, -62.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.442, -62.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.427, -62.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.379, -62.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.425, -62.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.377, -62.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.385, -62.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.35, -62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.363, -62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.34, -62.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 103.346, -62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.751, -62.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.75, -62.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.734, -62.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.711, -62.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.694, -62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.692, -62.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.695, -62.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.692, -62.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.651, -62.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.69, -62.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.724, -62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.674, -62.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.634, -62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.669, -62.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.711, -62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.67, -62.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.67, -62.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.675, -62.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.671, -62.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.596, -62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.601, -62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.645, -62.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.625, -62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.607, -62.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.617, -62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.591, -62.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.615, -62.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.559, -62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.574, -62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.601, -62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.726, -62.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.549, -62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.569, -62.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.574, -62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.568, -62.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.794, -62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.639, -62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.611, -62.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.655, -62.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.618, -62.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.619, -62.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.621, -62.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.445, -62.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.447, -62.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.45, -62.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.486, -62.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.46, -62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.476, -62.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.495, -62.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.496, -62.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.54, -62.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.516, -62.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.511, -62.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.523, -62.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.514, -62.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.485, -62.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.468, -62.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.465, -62.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.467, -62.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.466, -62.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.445, -62.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 102.452, -62.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.771, -61.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.767, -61.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.718, -61.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.735, -61.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.703, -61.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.712, -61.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.7, -61.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.708, -61.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.726, -61.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.71, -61.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.803, -61.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.682, -61.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.723, -61.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.768, -61.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.782, -61.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.795, -61.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.791, -61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.809, -61.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.793, -61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.821, -61.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.813, -61.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.829, -61.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.835, -61.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.332, -61.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.343, -61.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.355, -61.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.38, -61.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.367, -61.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.367, -61.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.371, -61.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.367, -61.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.377, -61.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.419, -61.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.385, -61.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.381, -61.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.39, -61.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.157, -61.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.395, -61.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.403, -61.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.424, -61.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.406, -61.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.428, -61.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.408, -61.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.353, -61.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.408, -61.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.407, -61.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.404, -61.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.378, -61.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.401, -61.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.52, -61.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.548, -61.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.542, -61.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.549, -61.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.554, -61.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.549, -61.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.554, -61.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.575, -61.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.542, -61.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.522, -61.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.506, -61.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.424, -61.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.477, -61.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.503, -61.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.467, -61.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.508, -61.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.454, -61.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.453, -61.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.41, -61.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.412, -61.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.41, -61.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.405, -61.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.23, -60.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.234, -60.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.261, -60.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.234, -60.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.262, -60.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.253, -60.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.275, -60.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.262, -60.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.267, -60.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.249, -60.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.182, -60.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.236, -60.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.176, -60.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.198, -60.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.133, -60.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.117, -60.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.086, -60.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.093, -60.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.067, -60.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 101.052, -60.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.542, -29.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.641, -28.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.647, -28.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.646, -28.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.654, -28.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.704, -28.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.691, -28.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.703, -28.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.698, -28.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.719, -28.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.719, -28.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.731, -28.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.732, -28.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.748, -28.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.731, -28.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.734, -28.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.73, -28.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.686, -28.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.702, -28.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.633, -28.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.676, -28.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.653, -28.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.667, -28.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.666, -28.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.664, -28.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.543, -27.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.483, -27.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.556, -27.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.46, -27.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.444, -27.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.418, -27.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.558, -27.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.373, -27.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.183, -27.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.357, -27.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.53, -26.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.529, -26.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.439, -26.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.539, -26.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.386, -25.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.386, -25.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.387, -25.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.385, -25.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.366, -25.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.355, -25.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.372, -25.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.375, -25.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.373, -25.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.375, -25.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.403, -24.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.399, -24.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.374, -24.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.375, -24.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.225, -24.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.335, -24.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.979, -24.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.897, -24.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.887, -24.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.796, -24.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.798, -24.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.294, -23.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.304, -23.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.268, -23.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.982, -22.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.852, -22.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.835, -22.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.814, -22.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.463, -22.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.526, -22.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.3, -22.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.518, -22.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.521, -22.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.539, -22.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.536, -22.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.503, -22.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.502, -22.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.407, -21.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.449, -21.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.454, -21.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.419, -21.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.194, -21.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.15, -21.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.19, -21.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.147, -21.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.116, -21.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.086, -21.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.081, -21.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.077, -21.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.079, -21.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.643, -21.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.66, -21.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.588, -21.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.589, -21.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.506, -20.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.484, -20.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.426, -20.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.443, -20.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.209, -20.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.157, -20.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.122, -20.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.142, -20.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.13, -20.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.089, -20.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.114, -20.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.095, -20.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.102, -20.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.103, -20.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.13, -20.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.129, -20.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.034, -20.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.026, -20.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.032, -20.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.894, -20.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.032, -20.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.06, -20.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.884, -20.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.84, -20.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.825, -20.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.799, -20.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.809, -20.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.793, -20.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.755, -20.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.74, -20.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.789, -20.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.879, -20.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.772, -20.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.752, -20.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.795, -20.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.75, -20.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.736, -20.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.735, -20.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.701, -20.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.722, -20.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.726, -20.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.724, -20.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.461, -20.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.467, -20.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.462, -20.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.456, -20.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.468, -20.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.412, -20.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.368, -20.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.367, -20.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.356, -20.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.366, -20.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.349, -20.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.342, -20.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.061, -19.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.06, -19.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.031, -19.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.032, -19.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.073, -19.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.014, -19.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.706, -19.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.713, -19.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.7, -19.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.678, -19.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.353, -19.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.36, -19.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.321, -19.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.454, -19.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.455, -19.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.986, -19.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.505, -19.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.475, -19.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.306, -19.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.305, -19.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.778, -19.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.78, -19.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.776, -19.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.766, -19.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.723, -19.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.914, -19.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.912, -19.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.908, -19.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.914, -19.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.899, -19.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.901, -19.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.874, -19.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.895, -19.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.991, -19.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.007, -19.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.0, -19.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.01, -19.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.007, -19.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.976, -19.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.554, -19.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.553, -19.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.486, -19.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.513, -19.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.401, -19.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.419, -19.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.322, -19.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.328, -19.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.234, -18.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.234, -18.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.503, -18.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.501, -18.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.493, -18.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.527, -18.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.6, -18.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.546, -18.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.476, -18.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.474, -18.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.47, -18.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.473, -18.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.484, -18.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.483, -18.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.811, -17.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.825, -17.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.81, -17.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.768, -17.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.756, -17.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.757, -17.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.688, -17.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.681, -17.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.718, -17.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.275, -17.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.295, -17.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.271, -17.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.254, -17.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.254, -17.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.25, -17.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.201, -17.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.227, -17.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.209, -17.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.214, -17.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.087, -17.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.081, -17.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.065, -17.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.079, -17.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.023, -17.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.014, -17.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.004, -17.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.009, -17.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.994, -16.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.993, -16.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.609, -15.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.554, -15.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.483, -15.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.537, -15.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.613, -16.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.624, -16.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.619, -16.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.625, -16.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.643, -16.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.633, -16.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.647, -16.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.634, -16.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.908, -16.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.172, -17.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.173, -17.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.741, -38.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.682, -38.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.703, -38.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.717, -38.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.662, -38.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.675, -38.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.632, -38.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.664, -38.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.679, -38.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.662, -38.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.688, -38.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.704, -38.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.703, -38.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.71, -38.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.71, -38.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.201, -38.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.03, -38.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.001, -38.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.037, -38.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.01, -38.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.039, -38.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.022, -38.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.04, -38.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.086, -38.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.004, -38.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.017, -38.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.027, -38.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.219, -38.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.12, -38.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.002, -38.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.087, -38.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.123, -38.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.131, -38.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.131, -38.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.146, -38.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.097, -38.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.156, -38.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.957, -39.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.96, -39.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.946, -39.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.971, -39.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.982, -39.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.021, -39.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.039, -39.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.053, -39.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.052, -39.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.123, -39.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.124, -39.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.148, -39.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.146, -39.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.159, -39.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.155, -39.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.738, -39.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.739, -39.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.682, -39.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.752, -39.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.751, -39.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.75, -39.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.756, -39.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.766, -39.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.462, -39.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.686, -39.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.76, -39.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.9, -39.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.884, -39.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.866, -39.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.863, -39.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.909, -39.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.818, -39.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.866, -39.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.614, -40.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.597, -40.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.61, -40.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.607, -40.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.602, -40.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.615, -40.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.638, -40.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.639, -40.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.643, -40.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.655, -40.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.686, -40.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.685, -40.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.766, -40.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.717, -40.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.32, -41.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.343, -41.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.879, -40.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.419, -41.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.423, -41.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.297, -41.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.293, -41.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.303, -41.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.307, -41.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.334, -41.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.344, -41.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.337, -41.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.369, -41.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.975, -41.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.406, -41.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.261, -41.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.259, -41.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.289, -41.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.3, -41.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.345, -41.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.312, -41.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.364, -41.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.322, -41.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.365, -41.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.367, -41.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.305, -41.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.402, -41.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.4, -41.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.411, -41.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.511, -41.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.497, -41.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.499, -41.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.508, -41.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.201, -41.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.105, -41.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.233, -41.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.182, -41.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.239, -41.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.265, -41.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.247, -41.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.298, -41.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.293, -41.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.343, -41.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.343, -41.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.516, -42.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.508, -42.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.493, -42.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.501, -42.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.509, -42.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.448, -42.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.508, -42.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.516, -42.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.49, -42.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.488, -42.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.483, -42.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.475, -42.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.479, -42.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.066, -42.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.066, -42.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.071, -42.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.07, -42.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.068, -42.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.028, -42.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.092, -42.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.101, -42.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.094, -42.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.658, -42.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.658, -42.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.635, -42.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.704, -42.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.716, -42.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.716, -42.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.771, -43.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.78, -42.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.803, -42.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.802, -42.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.785, -42.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.833, -42.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.27, -43.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.29, -43.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.294, -43.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.293, -43.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.307, -43.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.305, -43.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.258, -43.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.343, -43.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.361, -43.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.358, -43.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.398, -43.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.418, -43.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.439, -43.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.439, -43.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.477, -43.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.476, -43.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.432, -43.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.428, -43.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.462, -43.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.462, -43.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.459, -43.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.477, -43.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.472, -43.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.473, -43.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.474, -43.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.462, -43.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.476, -43.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.483, -43.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.482, -43.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.168, -44.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.166, -44.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.178, -44.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.193, -44.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.225, -44.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.291, -44.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.283, -44.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.299, -44.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.297, -44.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.313, -44.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.311, -44.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.303, -44.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.34, -44.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.056, -45.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.048, -45.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.07, -45.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.073, -45.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.078, -45.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.075, -45.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.11, -45.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.123, -45.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.218, -45.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.211, -45.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.224, -45.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.229, -45.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.239, -45.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.24, -45.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.368, -45.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.318, -45.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.363, -45.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.361, -45.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.365, -45.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.366, -45.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.431, -45.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.513, -45.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.512, -45.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.536, -45.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.536, -45.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.571, -45.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.609, -45.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.195, -45.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.206, -45.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.257, -45.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.248, -45.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.264, -45.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.322, -45.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.333, -45.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.292, -45.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.332, -45.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.353, -45.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.427, -45.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.426, -45.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.435, -45.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.434, -45.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.058, -45.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.072, -45.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.077, -45.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.075, -45.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.087, -45.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.112, -45.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.115, -45.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.088, -45.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.133, -45.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.184, -45.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.154, -45.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.151, -45.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.169, -45.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.081, -45.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.133, -45.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.114, -45.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.116, -45.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.124, -45.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.111, -45.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.144, -45.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.102, -45.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.289, -45.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.282, -45.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.273, -45.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.283, -45.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.284, -45.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.283, -45.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.29, -45.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.304, -45.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.292, -45.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.294, -45.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.294, -45.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.332, -45.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.192, -45.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.169, -45.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.19, -45.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.16, -45.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.188, -45.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.097, -45.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.156, -45.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.166, -45.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.956, -46.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.166, -45.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.101, -45.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.075, -45.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.072, -45.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.074, -45.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.056, -45.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.076, -45.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.083, -45.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.08, -45.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.074, -45.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.093, -45.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.081, -45.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.079, -45.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.082, -45.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.103, -45.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.097, -45.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.132, -45.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.12, -45.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.121, -45.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.121, -45.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.123, -45.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.049, -45.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.552, -45.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.558, -45.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.695, -45.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.615, -45.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.675, -45.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.658, -45.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.655, -45.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.665, -45.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.648, -45.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.667, -45.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.738, -45.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.713, -45.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.731, -45.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.864, -46.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.752, -46.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.732, -46.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.734, -46.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.73, -46.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.652, -46.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.713, -46.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.641, -46.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.626, -46.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.655, -46.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.639, -46.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.64, -46.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.033, -46.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.056, -46.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.043, -46.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.036, -46.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.028, -46.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.015, -46.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.228, -46.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.216, -46.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.231, -46.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.239, -47.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.242, -47.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.241, -46.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.059, -47.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.028, -47.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.05, -47.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.955, -48.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.998, -48.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.955, -48.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.968, -48.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.927, -48.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.943, -48.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.934, -48.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.916, -48.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.389, -48.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.391, -48.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.376, -49.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.38, -48.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.38, -48.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.376, -49.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.357, -49.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.329, -49.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.331, -49.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.305, -49.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.305, -49.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.787, -49.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.787, -49.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.781, -49.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.768, -49.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.77, -49.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.78, -49.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.758, -49.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.772, -50.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.749, -50.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.734, -50.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.731, -50.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.719, -50.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.721, -50.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.437, -50.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.451, -50.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.466, -50.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.466, -50.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.494, -50.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.48, -50.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.58, -50.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.469, -50.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.499, -50.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.467, -50.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.504, -50.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.462, -50.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.397, -50.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.413, -50.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.402, -50.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.401, -50.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.607, -37.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.664, -37.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.607, -37.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.622, -37.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.617, -37.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.619, -38.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.596, -38.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.584, -38.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.582, -38.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.574, -38.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.575, -38.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.14, -38.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.147, -38.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.15, -38.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.145, -38.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.132, -38.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.124, -38.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.084, -38.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.085, -38.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.06, -38.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.065, -38.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.029, -38.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.06, -38.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.383, -38.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.404, -38.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.388, -38.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.388, -38.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.402, -38.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.353, -38.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.351, -38.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.372, -38.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.357, -38.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.176, -38.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.169, -38.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.147, -38.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.162, -38.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.226, -38.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.142, -38.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.12, -38.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.137, -38.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.141, -38.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.14, -38.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.128, -38.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.138, -38.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.127, -38.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.137, -38.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.989, -39.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.011, -39.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.006, -39.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.008, -39.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.0, -39.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.998, -39.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.008, -39.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.998, -39.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.987, -39.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.989, -39.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.003, -39.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.001, -39.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.109, -39.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.021, -39.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.012, -39.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.033, -39.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.026, -39.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.04, -39.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.035, -39.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.043, -39.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.121, -39.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.116, -39.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.196, -39.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.961, -39.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -40.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.656, -40.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.681, -40.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.653, -40.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -40.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.676, -40.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.679, -40.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.577, -40.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.676, -40.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.706, -40.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.675, -40.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.811, -40.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.765, -40.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.769, -40.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.698, -40.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.771, -40.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.781, -40.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.776, -40.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.793, -40.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.792, -40.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.793, -40.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.798, -40.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.793, -40.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.8, -40.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.802, -40.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.674, -41.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.684, -41.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.706, -41.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.685, -41.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.689, -41.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.715, -41.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.679, -41.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.724, -41.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.759, -41.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.748, -41.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.738, -41.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.739, -41.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.782, -41.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.761, -41.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.796, -41.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.173, -42.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.194, -42.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.2, -42.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.265, -42.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.374, -42.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.386, -42.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.393, -42.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.781, -43.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.754, -43.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.76, -43.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.77, -43.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.765, -43.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.773, -43.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.779, -43.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.776, -43.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.772, -43.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.775, -43.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.854, -43.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.795, -43.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.901, -43.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.805, -43.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.608, -43.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.629, -43.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.88, -44.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.787, -44.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.246, -44.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.301, -44.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.204, -44.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.523, -44.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.403, -44.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.368, -44.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.445, -44.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.442, -44.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.49, -44.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.467, -44.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.148, -44.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.15, -44.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.218, -45.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.217, -45.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.251, -45.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.238, -45.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.231, -45.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.305, -45.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.294, -45.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.291, -45.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.296, -45.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.318, -45.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.32, -45.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.379, -45.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.378, -45.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.459, -45.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.456, -45.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.414, -45.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.461, -45.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.582, -45.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.587, -45.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.595, -45.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.594, -45.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.63, -45.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.634, -45.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.813, -45.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.809, -45.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.88, -45.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.857, -45.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.911, -45.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.915, -45.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.075, -46.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.084, -46.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.142, -46.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.182, -46.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.277, -46.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.315, -46.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.336, -46.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.057, -47.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.083, -46.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.124, -46.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.118, -47.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.145, -47.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.15, -47.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.199, -47.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.195, -47.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.051, -47.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.047, -47.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.099, -47.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.082, -47.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.128, -47.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.195, -47.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.193, -47.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.258, -47.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.231, -47.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.315, -47.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.22, -47.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.28, -47.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.279, -47.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.288, -47.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.283, -47.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.312, -47.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.337, -47.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.296, -47.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.35, -47.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.347, -47.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.353, -47.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.316, -47.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.355, -47.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.368, -47.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.463, -47.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.971, -48.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.95, -48.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.968, -48.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.994, -48.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.091, -48.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.059, -48.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.065, -48.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.064, -48.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.085, -48.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.086, -48.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.207, -48.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.198, -48.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.247, -48.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.3, -48.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.277, -48.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.32, -48.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.441, -49.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.442, -49.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.596, -49.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.595, -49.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.664, -49.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.695, -49.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.673, -49.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.736, -49.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.769, -49.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.806, -49.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.688, -49.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.698, -49.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.746, -49.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.722, -49.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.809, -49.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.794, -49.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.874, -49.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.858, -49.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.855, -49.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.904, -49.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.055, -50.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.054, -50.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.084, -50.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.101, -50.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.146, -50.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.135, -50.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.175, -50.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.176, -50.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.225, -50.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.201, -50.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.241, -50.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.213, -50.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.247, -50.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.24, -50.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.741, -50.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.676, -50.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.75, -50.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.689, -50.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.732, -50.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.704, -50.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.713, -50.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.724, -50.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.737, -50.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.758, -50.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.747, -50.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.739, -50.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.308, -51.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.273, -51.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.288, -51.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.29, -51.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.319, -51.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.306, -51.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.407, -51.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.339, -51.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.367, -51.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.366, -51.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.453, -51.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.416, -51.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.424, -51.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.432, -51.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.453, -51.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.445, -51.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.518, -51.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.541, -51.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.531, -51.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.466, -52.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.479, -52.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.513, -52.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.516, -52.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.64, -52.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.566, -52.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.654, -52.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.639, -52.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.644, -52.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.65, -52.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.648, -52.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.653, -52.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.792, -52.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.789, -52.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.768, -52.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.8, -52.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.713, -53.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.751, -53.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.946, -53.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.921, -53.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.916, -53.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.928, -53.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.936, -53.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.044, -53.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.029, -53.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.05, -53.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.033, -53.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.805, -54.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.884, -54.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.121, -54.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.898, -54.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.951, -54.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.958, -54.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.984, -54.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.006, -54.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.986, -54.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.973, -54.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.99, -54.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.542, -54.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.118, -54.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.056, -54.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.264, -55.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.245, -55.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.311, -55.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.232, -55.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.303, -55.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.284, -55.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.306, -55.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.299, -55.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.301, -55.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.305, -55.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.307, -55.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.336, -55.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.348, -55.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.437, -55.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.368, -55.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.415, -55.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.402, -55.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.032, -55.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.06, -55.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.072, -55.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.083, -55.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.115, -55.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.147, -55.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.178, -55.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.177, -55.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.176, -55.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.187, -55.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.23, -55.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.228, -55.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.244, -55.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.263, -55.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.316, -55.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.315, -55.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.929, -56.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.919, -56.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.909, -56.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.917, -56.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.888, -56.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.915, -56.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.869, -56.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.888, -56.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.862, -56.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.883, -56.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.852, -56.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.851, -56.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.834, -56.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.843, -56.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.798, -56.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.808, -56.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.754, -56.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.77, -56.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.757, -56.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.741, -56.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.205, -56.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.209, -56.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.22, -56.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.225, -56.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.287, -56.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.266, -56.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.278, -56.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.271, -56.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.293, -57.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.293, -57.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.334, -57.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.344, -57.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.378, -57.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.369, -57.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.368, -57.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.421, -57.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.527, -57.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.523, -57.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.551, -57.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.56, -57.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.576, -57.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.585, -57.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.559, -57.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.592, -57.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.69, -58.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.667, -58.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.661, -58.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.664, -58.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.676, -58.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.696, -58.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.705, -58.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.029, -58.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.714, -58.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.757, -58.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.756, -58.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.746, -58.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.761, -58.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.888, -59.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.916, -59.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.911, -59.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.921, -59.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.928, -59.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.983, -59.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.045, -59.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.039, -59.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.025, -59.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.046, -59.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.031, -59.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.058, -59.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.154, -59.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.1, -59.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.083, -59.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.102, -59.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.092, -59.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.106, -59.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.127, -59.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.13, -59.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.168, -59.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.175, -59.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.18, -59.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.176, -59.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.181, -59.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.183, -59.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.998, -59.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.993, -59.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.482, -59.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.001, -59.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.018, -59.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.064, -59.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.058, -59.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.073, -59.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.041, -59.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.061, -59.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.181, -59.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.1, -59.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.102, -59.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.086, -59.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.104, -59.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.202, -59.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.193, -59.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.198, -59.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.197, -59.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.208, -59.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.227, -59.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.52, -60.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.527, -60.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.526, -60.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.539, -60.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.551, -60.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.557, -60.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.554, -60.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.559, -60.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.584, -60.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.565, -60.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.567, -60.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.575, -60.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.565, -60.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.599, -60.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.597, -60.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.609, -60.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.666, -60.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.666, -60.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.68, -60.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.676, -60.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.662, -60.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.693, -60.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.793, -61.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.891, -61.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.893, -61.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.894, -61.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.875, -61.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.894, -61.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.923, -61.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.902, -61.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.897, -61.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.887, -61.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.899, -61.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.906, -61.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.904, -61.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.909, -61.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.904, -61.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.901, -61.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.918, -61.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.892, -61.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.862, -61.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.882, -61.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.869, -61.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.879, -61.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.065, -62.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.052, -62.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.063, -62.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.064, -62.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.067, -62.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.065, -62.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.109, -62.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.081, -62.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.089, -62.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.1, -62.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.105, -62.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.118, -62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.156, -62.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.124, -62.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.13, -62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.132, -62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.039, -62.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.117, -62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.143, -62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.541, -63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.535, -63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.566, -63.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.567, -63.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.6, -63.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.597, -63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.604, -63.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.599, -63.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.652, -63.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.642, -63.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.672, -63.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.655, -63.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.902, -63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.864, -63.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 175.787, -63.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.356, -63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.42, -63.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.425, -63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.394, -63.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.435, -63.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.402, -63.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.437, -63.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.416, -63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.433, -63.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.437, -64.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.451, -64.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.416, -64.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.389, -64.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.413, -64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.51, -63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.367, -64.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.398, -64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.382, -64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.397, -64.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.466, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.407, -64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.444, -64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.409, -64.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.447, -64.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.414, -64.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.404, -64.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.415, -64.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.227, -64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.422, -64.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.542, -29.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.564, -28.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.562, -28.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.585, -28.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.583, -28.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.602, -28.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.603, -28.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.649, -28.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.648, -28.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.69, -28.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.688, -28.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.796, -28.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.709, -28.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.712, -28.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.719, -28.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.717, -28.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.74, -28.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.711, -28.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.713, -28.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.734, -28.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.712, -28.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.636, -28.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.714, -28.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.567, -28.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.728, -28.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.737, -28.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.786, -28.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.739, -28.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.609, -27.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.606, -27.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.601, -27.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.603, -27.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.596, -27.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.59, -27.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.575, -27.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.579, -27.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.614, -27.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.598, -27.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.596, -27.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.597, -27.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.485, -26.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.429, -27.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.545, -27.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.437, -26.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.447, -26.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.508, -26.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.501, -26.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.467, -26.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.644, -26.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.596, -26.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.376, -26.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.455, -26.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.487, -26.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.46, -26.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.458, -26.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.441, -26.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.447, -26.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.451, -26.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.349, -25.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.345, -25.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.341, -25.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.345, -25.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.328, -25.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.329, -25.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.351, -25.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.315, -25.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.33, -25.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.311, -25.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.493, -25.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.27, -25.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.196, -25.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.215, -25.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.329, -25.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.252, -25.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.25, -25.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.225, -25.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.229, -25.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.207, -25.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.229, -25.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.266, -25.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.272, -25.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.334, -25.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.329, -25.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.342, -24.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.349, -24.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.255, -24.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.252, -24.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.121, -24.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.136, -24.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.086, -24.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.049, -24.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.261, -23.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.26, -23.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.163, -23.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.171, -23.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.103, -23.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.114, -23.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.02, -23.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.05, -23.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.014, -23.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.022, -23.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.021, -23.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.932, -23.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.931, -23.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.865, -23.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.866, -23.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.784, -23.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.789, -23.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.817, -22.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.833, -22.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.854, -22.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.834, -22.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.846, -22.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.87, -22.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.869, -22.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.914, -22.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.912, -22.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.942, -22.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.946, -22.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.678, -21.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.602, -21.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.578, -21.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.572, -21.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.192, -21.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.166, -21.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.121, -21.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.075, -21.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.082, -21.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.82, -21.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.727, -21.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.684, -21.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.686, -21.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.535, -21.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.536, -21.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.522, -21.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.534, -21.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.55, -21.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.538, -21.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.556, -21.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.542, -21.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.47, -21.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.467, -21.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.45, -21.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.457, -21.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.454, -21.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.456, -21.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.755, -21.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.799, -21.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.773, -21.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.791, -21.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.789, -21.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.794, -21.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.804, -21.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.591, -21.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.592, -21.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.662, -21.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.563, -21.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.466, -22.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.496, -21.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.497, -21.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.495, -21.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.494, -21.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.521, -21.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.495, -21.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.529, -21.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.665, -21.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.703, -21.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.706, -21.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.705, -21.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.707, -21.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.689, -21.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.647, -21.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.648, -21.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.578, -21.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.606, -21.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.424, -21.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.424, -21.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.447, -21.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.407, -21.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.117, -21.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.12, -21.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.134, -21.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.011, -21.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.007, -21.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.008, -21.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.975, -21.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.008, -21.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.013, -21.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.797, -21.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.784, -21.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.786, -21.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.785, -21.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.764, -21.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.768, -21.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.57, -21.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.569, -21.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.543, -21.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.544, -21.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.764, -37.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.661, -37.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.757, -37.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.704, -37.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.754, -37.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.664, -37.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.711, -37.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.738, -37.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.686, -37.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.727, -37.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.723, -37.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.705, -38.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.712, -38.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.703, -38.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.709, -38.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.285, -38.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.251, -38.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.253, -38.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.248, -38.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.225, -38.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.224, -38.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.21, -38.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.195, -38.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.208, -38.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.683, -38.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.709, -38.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.736, -38.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.727, -38.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.82, -38.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.803, -38.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.537, -38.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.803, -38.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.803, -38.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.668, -37.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.78, -38.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.798, -38.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.79, -38.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.778, -38.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.788, -38.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.83, -38.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.816, -38.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.801, -38.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.814, -38.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.862, -38.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.774, -38.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.78, -38.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.801, -38.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.778, -38.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.786, -38.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.768, -38.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.783, -38.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.959, -38.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.417, -38.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.395, -38.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.358, -38.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.366, -38.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.343, -38.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.354, -38.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.347, -38.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.35, -38.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.308, -38.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.25, -38.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.27, -38.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.231, -38.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.207, -38.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.18, -38.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.177, -38.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.152, -38.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.164, -38.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.132, -38.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.149, -38.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.103, -38.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.108, -38.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.075, -38.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.074, -38.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.991, -38.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.052, -38.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.029, -38.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.011, -38.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.006, -38.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.975, -38.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.984, -38.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.891, -38.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.91, -38.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.877, -38.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.902, -38.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.918, -38.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.925, -38.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.924, -38.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.986, -38.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.981, -38.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.985, -38.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.98, -38.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.843, -38.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.969, -38.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.932, -38.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.953, -38.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.062, -38.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.872, -38.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.873, -38.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.853, -38.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.858, -38.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.844, -38.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.037, -38.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.063, -38.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.108, -38.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.071, -39.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.107, -39.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.072, -39.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.03, -39.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.07, -39.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.088, -39.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.075, -39.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.057, -39.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.078, -39.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.052, -39.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.079, -39.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.24, -39.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.238, -39.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.217, -39.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.226, -39.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.222, -39.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.225, -39.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.226, -39.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.223, -39.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.224, -39.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.225, -39.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.275, -39.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.266, -39.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.281, -39.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.282, -39.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.282, -39.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.8, -40.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.799, -40.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.801, -40.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.8, -40.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.805, -40.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.782, -40.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.791, -40.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.786, -40.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.756, -40.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.75, -40.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.747, -40.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.648, -40.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.743, -40.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.681, -40.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.681, -40.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.457, -40.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -40.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.679, -40.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -40.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.686, -40.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.679, -40.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.82, -40.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.841, -40.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.825, -40.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.812, -40.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.826, -40.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.812, -40.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.823, -40.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.786, -40.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.821, -40.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.798, -40.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.704, -40.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.705, -40.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.72, -40.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.699, -40.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.688, -40.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.699, -40.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.698, -40.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.697, -40.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.696, -40.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.621, -40.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.694, -40.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.723, -40.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.721, -40.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.726, -40.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.724, -40.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.725, -40.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.741, -40.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.733, -40.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.728, -40.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.728, -40.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.727, -39.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.731, -39.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.756, -39.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.755, -39.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.816, -39.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.781, -39.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.801, -39.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.79, -39.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.737, -39.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.791, -39.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.679, -40.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -40.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.683, -40.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -40.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.677, -40.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.675, -40.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.658, -40.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.697, -40.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.663, -40.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.648, -40.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.223, -39.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.629, -40.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.63, -40.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.628, -40.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.627, -40.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.471, -39.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.545, -39.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.549, -39.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.563, -39.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.561, -39.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.589, -40.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.57, -39.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -39.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.575, -39.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.579, -39.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.582, -39.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.582, -39.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.589, -39.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.583, -39.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.596, -39.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.594, -39.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.594, -39.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.594, -39.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.594, -39.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.58, -39.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.582, -39.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.577, -39.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.585, -39.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.589, -39.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.586, -39.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.588, -39.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.587, -39.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.427, -39.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.435, -39.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.424, -39.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.435, -39.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.434, -39.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.455, -39.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.456, -39.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.522, -39.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.521, -39.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.531, -39.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.694, -39.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.691, -39.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.699, -39.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -39.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.689, -39.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.674, -39.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.688, -39.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.732, -39.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.689, -39.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.709, -39.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.56, -39.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.559, -39.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.58, -39.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.561, -39.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.559, -39.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.567, -39.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.564, -39.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.597, -39.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.606, -39.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.613, -39.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.617, -39.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.651, -39.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.65, -39.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.706, -39.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.7, -39.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.675, -39.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.672, -39.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.682, -39.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.672, -39.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.671, -39.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.672, -39.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.684, -39.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.684, -39.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.612, -39.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.741, -39.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.7, -39.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.675, -39.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.646, -39.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.619, -39.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.625, -39.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.608, -39.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.62, -39.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.596, -39.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.609, -39.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.572, -39.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.633, -39.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.611, -39.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.616, -39.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.61, -39.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.609, -39.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.61, -39.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.61, -39.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.614, -39.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.629, -40.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.627, -40.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.578, -40.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.641, -40.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.64, -40.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.64, -40.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.641, -40.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.838, -40.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.838, -40.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.85, -40.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.852, -40.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.853, -40.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.86, -40.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.85, -40.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.851, -40.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.851, -40.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.52, -40.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.512, -40.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.474, -40.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.503, -40.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.459, -40.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.482, -40.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.467, -40.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.479, -40.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.481, -40.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.472, -40.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.442, -40.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.434, -41.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.429, -41.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.431, -41.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.428, -41.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.429, -41.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.456, -41.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.457, -41.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.441, -41.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.464, -41.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -41.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.47, -41.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.465, -41.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.493, -41.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.466, -41.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.467, -41.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.477, -41.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.531, -41.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -41.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.503, -41.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.496, -41.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.5, -41.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.489, -40.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.474, -41.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.479, -41.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.561, -40.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.563, -40.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.58, -40.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -40.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.573, -40.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.585, -40.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.58, -40.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.571, -40.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.577, -40.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.689, -40.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.582, -40.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.579, -40.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.641, -40.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.64, -40.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.65, -40.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.663, -40.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.661, -40.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.662, -40.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.661, -40.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.659, -40.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.642, -40.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.634, -40.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.633, -40.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.631, -40.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.617, -40.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.62, -40.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.671, -40.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.616, -40.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.614, -40.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.596, -40.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.569, -40.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.589, -40.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.454, -40.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.462, -40.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.465, -40.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -40.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.46, -41.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -41.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.462, -41.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.462, -41.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.44, -41.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.441, -41.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.438, -41.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.458, -41.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.429, -41.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.412, -41.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.407, -41.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.402, -41.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.4, -41.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.389, -41.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.395, -41.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.419, -41.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.402, -41.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.401, -41.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.397, -41.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.5, -41.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.525, -41.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.482, -41.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.535, -41.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.494, -41.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.484, -28.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.553, -28.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.584, -28.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.58, -28.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.64, -28.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.641, -28.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.685, -28.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.682, -28.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.678, -28.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.682, -28.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.683, -28.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.683, -28.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.759, -28.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.742, -28.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.745, -28.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.747, -28.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.694, -28.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.705, -28.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.703, -28.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.701, -28.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.611, -28.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.613, -28.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.789, -28.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.665, -28.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.605, -28.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.751, -28.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.655, -28.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.656, -28.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.029, -28.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.57, -27.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.573, -27.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.569, -27.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.572, -27.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.583, -27.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.572, -27.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.646, -27.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.603, -27.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.513, -27.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.536, -27.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.564, -27.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.516, -27.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.394, -26.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.385, -26.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.394, -26.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.372, -26.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.313, -26.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.296, -25.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.295, -25.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.295, -25.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.295, -25.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.303, -25.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.396, -25.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.328, -25.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.19, -24.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.194, -24.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.138, -24.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.145, -24.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.105, -24.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.093, -24.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.059, -24.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.332, -23.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.355, -23.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.254, -23.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.285, -23.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.279, -23.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.145, -23.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.041, -22.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.984, -22.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.987, -22.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.044, -22.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.019, -22.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.977, -22.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.976, -22.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.977, -22.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.767, -22.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.765, -22.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.822, -22.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.465, -22.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.495, -22.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.494, -22.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.418, -22.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.536, -22.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.526, -22.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.169, -21.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.166, -21.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.713, -21.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.982, -21.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.025, -21.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.053, -21.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.019, -21.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.661, -21.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.415, -21.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.557, -21.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.557, -21.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.562, -21.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.624, -21.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.592, -21.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.477, -21.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.49, -21.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.531, -21.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.519, -21.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.402, -21.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.394, -21.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.387, -21.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.357, -21.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.376, -21.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.422, -21.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.373, -21.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.343, -21.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.359, -21.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.562, -29.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.579, -28.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.588, -28.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.584, -28.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.591, -28.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.427, -28.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.654, -28.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.646, -28.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.688, -28.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.683, -28.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.697, -28.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.7, -28.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.744, -28.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.722, -28.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.725, -28.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.724, -28.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.718, -28.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.752, -28.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.724, -28.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.708, -28.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.713, -28.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.622, -28.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.714, -28.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.715, -28.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.503, -27.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.504, -27.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.496, -27.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.503, -27.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.491, -27.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.483, -27.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.456, -26.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.461, -26.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.477, -26.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.457, -26.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.616, -26.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.615, -26.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.616, -26.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.615, -26.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.568, -26.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.572, -26.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.525, -25.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.53, -25.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.566, -25.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.525, -25.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.428, -25.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.42, -25.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.417, -25.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.419, -25.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.44, -25.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.443, -25.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.441, -25.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.309, -25.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.411, -25.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.073, -24.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.076, -24.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.971, -24.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.901, -24.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.911, -24.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.889, -24.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.883, -24.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.553, -23.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.587, -23.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.546, -23.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.571, -23.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.533, -23.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.532, -23.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.493, -23.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.494, -23.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.208, -23.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.225, -23.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.215, -23.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.217, -23.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.283, -23.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.24, -23.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.3, -23.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.251, -23.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.329, -22.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.328, -22.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.326, -22.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.329, -22.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.364, -22.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.334, -22.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.324, -22.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.334, -22.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.368, -22.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.332, -22.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.997, -22.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.998, -22.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.006, -22.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.975, -22.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.957, -22.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.933, -22.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.933, -22.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.739, -21.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.738, -21.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.619, -21.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.196, -21.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.194, -21.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.181, -21.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.189, -21.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.149, -21.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.157, -21.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.123, -21.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.133, -21.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.152, -21.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.131, -21.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.197, -21.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.153, -21.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.064, -21.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.136, -21.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.919, -20.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.883, -20.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.786, -20.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.819, -20.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.291, -20.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.83, -20.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.559, -20.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.52, -20.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.515, -20.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.438, -20.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.46, -20.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.458, -20.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.104, -20.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.148, -20.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.145, -20.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.135, -20.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.126, -20.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.124, -20.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.124, -20.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.153, -20.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.123, -20.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.148, -20.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.122, -20.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.887, -20.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.878, -20.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.862, -20.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.872, -20.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.868, -20.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.858, -20.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.833, -20.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.427, -19.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.429, -19.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.413, -19.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.42, -19.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.417, -19.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.399, -19.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.326, -19.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.336, -19.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.273, -19.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.772, -19.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.944, -19.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.948, -19.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.894, -19.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.051, -19.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.998, -19.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.993, -19.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.01, -19.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.201, -20.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.321, -20.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.339, -20.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.335, -20.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.345, -20.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.352, -20.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.383, -20.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.382, -20.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.534, -20.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.517, -20.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.508, -20.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.512, -20.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.482, -20.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.505, -20.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.832, -37.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.842, -37.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.834, -37.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.819, -37.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.82, -37.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.805, -37.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.806, -37.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.813, -37.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.813, -37.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.812, -37.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.301, -38.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.299, -38.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.19, -38.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.283, -38.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.188, -38.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.202, -38.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.161, -38.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.175, -38.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.129, -38.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.989, -38.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.063, -38.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.694, -38.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.758, -38.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.768, -38.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.747, -38.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.748, -38.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.74, -38.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.736, -38.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.646, -38.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.693, -38.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.701, -38.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.678, -38.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.603, -38.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.654, -38.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.653, -38.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.665, -37.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.648, -37.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.58, -37.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.6, -37.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.551, -37.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.706, -38.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.701, -38.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.68, -38.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.683, -38.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.644, -38.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.656, -38.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.594, -38.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.595, -38.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.535, -38.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.025, -38.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.018, -38.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.011, -38.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.009, -38.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.977, -38.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.979, -38.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.926, -38.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.931, -38.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.922, -38.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.909, -38.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.898, -38.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.899, -38.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.888, -38.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.887, -38.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.604, -38.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.606, -38.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.639, -38.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.593, -38.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.626, -38.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.589, -38.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.634, -38.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.584, -38.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.588, -39.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.57, -38.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.532, -39.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.528, -39.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.522, -39.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.525, -39.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.927, -39.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.927, -39.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.9, -39.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.901, -39.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.898, -39.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.896, -39.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.889, -39.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.892, -39.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.869, -39.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.9, -39.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.935, -39.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.932, -39.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.941, -39.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.942, -39.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.739, -39.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.738, -39.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.759, -39.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.724, -39.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.736, -39.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.725, -39.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.727, -39.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.744, -39.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.743, -39.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.753, -39.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.747, -39.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.386, -40.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.384, -40.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.399, -40.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.382, -40.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.352, -40.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.356, -40.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.357, -40.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.348, -40.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.298, -40.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.346, -40.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.112, -40.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.173, -40.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.222, -40.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.206, -40.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.25, -40.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.295, -40.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.392, -40.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.386, -40.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.797, -40.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.799, -40.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.801, -40.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.897, -40.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.854, -40.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.895, -40.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.942, -40.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.099, -40.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.117, -40.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.207, -40.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.206, -40.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.202, -40.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.235, -40.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.249, -40.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.255, -40.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.756, -40.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.755, -40.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.755, -40.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.824, -40.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.825, -40.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.879, -40.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.87, -40.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.932, -40.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.931, -40.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.095, -40.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.122, -40.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.21, -40.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.18, -40.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.24, -40.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.224, -40.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.254, -40.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.339, -40.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.302, -40.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.367, -40.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.366, -40.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.366, -40.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.373, -40.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.372, -40.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.372, -40.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.283, -41.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.381, -41.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.388, -41.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.391, -41.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.394, -41.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.339, -41.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.5, -41.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.475, -41.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.501, -41.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.431, -41.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.434, -41.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.389, -41.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.434, -41.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.425, -41.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.432, -41.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.452, -41.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.432, -41.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.699, -41.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.43, -41.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.433, -41.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.432, -41.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.434, -41.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.55, -41.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.484, -41.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.57, -41.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.569, -41.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.587, -41.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.588, -41.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.54, -42.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.544, -42.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.55, -42.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.543, -42.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.521, -42.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.521, -42.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.473, -42.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.5, -42.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.468, -42.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.494, -42.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.481, -42.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.049, -43.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.081, -43.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.086, -43.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.076, -43.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.069, -43.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.031, -43.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.899, -43.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.967, -43.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.956, -43.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.988, -43.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.939, -43.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.899, -43.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.901, -43.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.351, -43.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.327, -43.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.312, -43.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.32, -43.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.319, -43.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.315, -43.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.312, -43.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.311, -43.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.244, -44.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.242, -44.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.187, -44.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.19, -44.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.198, -44.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.144, -44.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.852, -44.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.866, -44.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.866, -44.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.87, -44.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.863, -44.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.872, -44.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.881, -44.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.879, -44.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.881, -44.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.889, -44.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.902, -44.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.902, -44.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.899, -45.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.912, -45.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.991, -45.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.922, -45.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.934, -45.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.926, -45.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.214, -45.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.229, -45.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.234, -46.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.239, -46.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.274, -46.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.276, -46.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.285, -46.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.303, -46.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.37, -46.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.368, -46.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.449, -46.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.422, -46.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.431, -46.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.43, -46.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.436, -46.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.438, -46.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.056, -46.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.115, -46.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.13, -46.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.113, -46.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.166, -46.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.259, -47.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.198, -47.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.234, -47.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.234, -47.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.235, -47.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.235, -47.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.642, -48.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.64, -48.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.653, -48.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.651, -48.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.68, -48.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.684, -48.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.688, -48.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.687, -48.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.692, -48.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.706, -48.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.767, -48.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.761, -48.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.852, -48.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.808, -48.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.82, -48.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.813, -48.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.807, -48.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.815, -48.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.213, -49.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.19, -49.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.189, -49.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.191, -49.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.196, -49.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.197, -49.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.21, -49.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.211, -49.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.231, -49.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.233, -49.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.253, -49.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.234, -49.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.222, -49.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.237, -49.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.684, -50.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.686, -50.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.698, -50.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.702, -50.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.739, -50.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.741, -50.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.807, -50.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.754, -50.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.805, -50.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.808, -50.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.83, -50.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.828, -50.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.25, -50.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.872, -50.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.269, -51.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.272, -51.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.304, -51.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.293, -51.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.294, -51.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.345, -51.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.353, -51.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.578, -51.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.385, -51.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.363, -51.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.477, -51.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.454, -51.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.544, -51.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.499, -51.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.498, -51.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.558, -51.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.628, -52.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.613, -52.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.646, -52.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.647, -52.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.662, -52.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.654, -52.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.704, -52.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.705, -52.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.808, -52.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.737, -52.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.678, -52.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.786, -52.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.78, -52.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.853, -52.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.804, -52.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.802, -52.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.808, -52.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.826, -52.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.827, -52.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.605, -53.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.597, -53.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.591, -53.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.61, -53.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.648, -53.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.636, -53.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.645, -53.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.665, -53.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.659, -53.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.676, -53.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.765, -53.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.738, -53.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.756, -53.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.685, -53.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.789, -53.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.137, -54.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.149, -54.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.149, -54.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.162, -54.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.207, -54.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.192, -54.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.214, -55.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.214, -55.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.256, -55.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.265, -55.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.315, -55.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.289, -55.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.311, -55.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.294, -55.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.294, -55.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.305, -55.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.337, -55.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.338, -55.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.39, -56.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.428, -56.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.338, -56.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.435, -56.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.366, -56.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.438, -56.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.454, -56.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.473, -56.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.488, -56.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.477, -56.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.481, -56.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.48, -56.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.522, -56.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.376, -57.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.389, -57.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.389, -57.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.384, -57.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.372, -57.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.372, -57.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.366, -57.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.343, -57.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.352, -57.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.326, -57.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.317, -57.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.28, -57.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.314, -57.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.172, -57.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.211, -57.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.202, -57.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.204, -57.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.978, -58.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.098, -58.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.014, -58.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.097, -58.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.073, -58.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.097, -58.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.095, -58.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.096, -58.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.097, -58.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.098, -58.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.088, -58.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.106, -58.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.092, -58.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.08, -58.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.107, -58.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.077, -58.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.062, -58.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.076, -58.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.028, -58.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.029, -58.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.012, -58.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.019, -58.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.795, -59.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.82, -59.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.039, -59.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.78, -59.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.787, -59.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.78, -59.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.781, -59.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.798, -59.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.793, -59.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.775, -59.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.792, -59.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.794, -59.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.79, -59.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.812, -59.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.828, -59.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.784, -59.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.74, -59.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.746, -59.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.726, -59.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.741, -59.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.706, -59.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.711, -59.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.677, -59.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.709, -59.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.678, -59.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.692, -59.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.144, -59.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.149, -59.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.17, -59.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.148, -59.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.156, -59.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.156, -59.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.156, -59.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.153, -59.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.159, -59.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.174, -59.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.175, -59.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.182, -59.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.176, -59.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.19, -59.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.19, -59.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.216, -59.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.199, -59.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.194, -59.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.178, -59.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.184, -59.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.201, -59.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.156, -59.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.289, -59.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.208, -59.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.9, -59.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.909, -59.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.901, -60.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.896, -59.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.89, -59.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.851, -59.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.871, -59.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.837, -59.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.848, -59.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.826, -59.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.802, -60.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.85, -59.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.84, -59.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.834, -59.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.851, -60.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.998, -60.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.846, -60.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.85, -59.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.821, -59.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.778, -59.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.786, -59.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.821, -59.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.8, -59.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.796, -59.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.793, -59.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.793, -59.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.768, -59.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.765, -59.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.652, -59.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.695, -59.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.639, -59.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.688, -59.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.664, -59.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.629, -59.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.642, -59.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.607, -59.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.653, -59.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.604, -59.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.581, -59.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.58, -59.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.1, -59.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.117, -59.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.011, -59.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.109, -59.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.002, -59.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.085, -59.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.085, -59.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.063, -59.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.099, -59.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.08, -59.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.024, -60.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.049, -59.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.052, -59.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.046, -60.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.068, -60.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.043, -60.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.052, -60.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.038, -60.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.031, -60.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.014, -60.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.02, -60.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.065, -60.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.015, -60.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.862, -60.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.773, -60.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.737, -60.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.762, -60.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.628, -60.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.716, -60.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.709, -60.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.575, -60.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.69, -60.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.687, -60.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.683, -60.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.657, -60.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.647, -60.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.626, -60.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.586, -60.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.599, -60.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.619, -60.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.594, -60.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.585, -60.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.589, -60.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.503, -60.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.482, -60.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.431, -60.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.435, -60.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.447, -60.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.425, -60.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.533, -60.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.27, -61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.294, -61.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.306, -62.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.318, -62.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.345, -62.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.324, -62.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.424, -62.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.421, -62.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.468, -62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.502, -62.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.497, -62.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.447, -62.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.488, -62.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.634, -62.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.635, -62.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.704, -62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.721, -62.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.723, -62.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.771, -62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.739, -62.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.869, -62.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.878, -62.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.762, -62.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.956, -62.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.315, -62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.322, -62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.331, -62.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.323, -62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.32, -62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.329, -62.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.274, -62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.325, -62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.324, -62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.277, -62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.313, -62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.309, -62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.281, -62.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.298, -62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.299, -62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.291, -62.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.297, -62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.306, -62.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.882, -62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.262, -62.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.288, -62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.285, -62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.33, -63.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.329, -63.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.358, -63.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.329, -63.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.369, -63.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.332, -63.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.36, -63.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.336, -63.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.335, -63.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.378, -63.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.358, -63.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.34, -63.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.339, -63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.351, -63.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.391, -63.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.36, -63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.373, -63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.369, -63.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.371, -63.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.382, -63.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.374, -63.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.436, -63.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.429, -63.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.399, -63.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.406, -63.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.406, -63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.408, -63.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.434, -63.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.423, -63.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.776, -63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.776, -63.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.796, -63.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.793, -63.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.849, -63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.781, -63.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.806, -63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.805, -63.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.825, -63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.796, -63.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.811, -63.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.818, -63.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.821, -63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.825, -63.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.832, -63.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.827, -63.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.817, -63.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.831, -63.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.832, -63.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.836, -63.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.825, -63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.848, -63.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.846, -63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.814, -63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.861, -63.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.861, -63.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.828, -63.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.98, -63.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.964, -63.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.001, -63.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.979, -63.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.966, -63.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.946, -63.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.974, -63.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.983, -63.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.986, -63.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.0, -63.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.991, -63.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.998, -63.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.062, -63.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.041, -63.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.058, -63.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.072, -63.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.071, -63.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.082, -63.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.088, -63.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.103, -63.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.09, -63.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.146, -63.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.143, -63.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.177, -63.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.154, -63.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.176, -63.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.17, -63.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.163, -63.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.189, -63.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.704, -63.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.711, -63.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.758, -63.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.728, -63.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.739, -63.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.73, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.732, -63.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.732, -63.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.724, -63.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.735, -63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.739, -63.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.736, -63.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.73, -63.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.722, -63.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.709, -63.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.718, -63.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.71, -63.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.712, -63.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.681, -63.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.659, -63.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.668, -63.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.636, -63.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.657, -63.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.696, -63.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.649, -63.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.643, -63.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.634, -63.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.641, -63.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.288, -63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.232, -63.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.219, -63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.228, -63.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.22, -63.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.224, -63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.216, -63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.222, -63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.207, -63.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.207, -63.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.204, -63.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.204, -63.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.191, -63.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.203, -63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.21, -63.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.181, -63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.177, -63.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.197, -63.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.173, -63.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.201, -63.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.172, -63.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.166, -63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.168, -63.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.158, -63.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.167, -63.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.812, -63.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.804, -63.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.812, -63.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.802, -63.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.784, -63.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.796, -63.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.798, -63.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.755, -63.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.754, -63.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.75, -63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.753, -63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.751, -63.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.777, -63.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.746, -63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.691, -63.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.697, -63.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.694, -63.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.688, -63.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.689, -63.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.691, -63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.687, -63.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.77, -63.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.622, -63.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.627, -63.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.449, -63.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.484, -63.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.499, -63.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.488, -63.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.483, -63.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.472, -63.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.468, -63.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.472, -63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.457, -63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.465, -63.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.466, -63.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.499, -63.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.434, -63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.431, -63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.428, -63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.429, -63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.428, -63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.412, -63.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.426, -63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.408, -63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.42, -63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.368, -63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.367, -63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.36, -63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.361, -63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.355, -63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.36, -63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.429, -63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.416, -63.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.396, -63.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.42, -63.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.416, -63.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.39, -63.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.398, -63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.416, -63.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.45, -63.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.447, -63.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.417, -63.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.449, -63.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.451, -63.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.461, -63.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.446, -63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.46, -63.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.463, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.464, -63.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.444, -63.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.467, -63.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.46, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.412, -63.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.391, -63.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.381, -63.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.387, -63.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.34, -63.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.383, -63.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.38, -63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.376, -63.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.223, -63.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.155, -63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.163, -63.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.153, -63.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.141, -63.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.153, -63.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.153, -63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.177, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.183, -63.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.186, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.179, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.188, -63.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.183, -63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.131, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.164, -63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.167, -63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.175, -63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.166, -63.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.166, -63.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.163, -63.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.163, -63.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.157, -63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.16, -63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.164, -63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.161, -63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.169, -63.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.165, -63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.161, -63.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.161, -63.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.132, -63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.161, -63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.044, -64.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.048, -64.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.058, -64.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.047, -64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.127, -64.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.057, -64.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.057, -64.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.045, -64.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.034, -64.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.044, -64.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.037, -64.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.012, -64.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.032, -64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.036, -64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.031, -64.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.998, -64.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.035, -64.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.028, -64.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.006, -64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.011, -64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.016, -64.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.009, -64.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.983, -64.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.989, -64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.992, -64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.983, -64.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.991, -64.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.721, -64.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.999, -64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.975, -64.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.007, -64.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.0, -64.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.0, -64.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.005, -64.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.008, -64.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.006, -64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.997, -64.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.998, -64.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.992, -64.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.987, -64.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.991, -64.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.983, -64.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.982, -64.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.963, -64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.976, -64.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.028, -64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.021, -64.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.478, -64.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.453, -64.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.412, -64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.451, -64.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.395, -64.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.45, -64.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.414, -64.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.415, -64.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.384, -64.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.406, -64.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.392, -64.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.4, -64.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.409, -64.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.398, -64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.392, -64.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.403, -64.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.396, -64.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.39, -64.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.389, -64.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.387, -64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.383, -64.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.386, -64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.4, -64.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.383, -64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.376, -64.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.358, -64.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.373, -64.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.375, -64.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.371, -64.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.386, -64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.371, -64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.371, -64.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.37, -64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.934, -64.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.931, -64.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.927, -64.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.933, -64.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.947, -64.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.934, -64.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.869, -64.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.887, -64.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.837, -64.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.877, -64.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.856, -64.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.848, -64.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.848, -64.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.844, -64.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.844, -64.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.72, -64.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.755, -64.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.742, -64.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.719, -64.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.688, -64.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.715, -64.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.725, -64.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.69, -64.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.697, -64.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.674, -64.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.677, -64.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.684, -64.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.708, -64.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.685, -64.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.599, -64.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.501, -64.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.483, -64.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.467, -64.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.479, -64.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.465, -64.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.477, -64.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -64.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -64.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.475, -64.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.469, -64.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.476, -64.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.456, -64.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.494, -64.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.413, -64.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.421, -64.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.409, -64.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.413, -64.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.407, -64.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.41, -64.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.429, -64.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.408, -64.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.405, -64.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.407, -64.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.363, -64.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.377, -64.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.328, -64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.369, -64.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.397, -64.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.368, -64.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.398, -64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.367, -64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.358, -64.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.368, -64.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.1, -64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.358, -64.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.356, -64.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.342, -64.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.354, -64.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.349, -64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.341, -64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.342, -64.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.341, -64.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.337, -64.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.339, -64.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.337, -64.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.338, -64.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.343, -64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.337, -64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.308, -64.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.31, -64.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.332, -64.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.309, -64.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.306, -64.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.145, -38.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.066, -38.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.14, -38.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.019, -38.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.114, -38.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.994, -38.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.03, -38.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.955, -38.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.223, -38.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.221, -38.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.25, -38.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.199, -38.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.214, -38.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.276, -38.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.211, -38.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.194, -38.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.199, -38.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.228, -38.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.225, -38.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.207, -38.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.235, -38.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.243, -38.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.238, -38.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.616, -37.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.583, -37.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.502, -37.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.557, -37.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.527, -37.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.509, -37.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.537, -37.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.066, -37.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.105, -37.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.12, -37.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.102, -37.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.046, -37.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.068, -37.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.015, -38.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.005, -38.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.978, -38.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.986, -38.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.955, -38.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.975, -38.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.723, -38.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.798, -38.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.729, -38.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.727, -38.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.962, -39.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.967, -39.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.903, -39.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.969, -39.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.09, -39.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.005, -39.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.003, -39.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.017, -39.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.032, -39.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.475, -39.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.067, -39.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.066, -39.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.225, -39.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.247, -39.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.415, -39.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.364, -39.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.566, -39.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.53, -39.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.679, -40.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.686, -40.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.666, -40.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.716, -40.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.727, -40.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.837, -40.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.922, -40.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.918, -40.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.964, -41.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.968, -41.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.077, -41.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.968, -41.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.159, -41.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.263, -41.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.272, -41.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.221, -41.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.354, -41.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.352, -41.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.4, -41.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.387, -41.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.427, -41.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.436, -41.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.604, -41.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.616, -41.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.626, -41.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.735, -42.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.739, -42.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.746, -42.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.745, -42.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.81, -42.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.833, -42.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.827, -42.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.905, -42.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.886, -42.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.948, -42.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.905, -42.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.906, -42.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.967, -42.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.964, -42.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.963, -42.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.637, -42.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.799, -42.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.799, -42.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.881, -42.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.874, -42.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.89, -42.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.902, -42.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.896, -42.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.993, -42.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.99, -42.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.023, -42.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.085, -42.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.098, -42.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.085, -42.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.385, -43.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.388, -43.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.395, -43.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.393, -43.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.433, -43.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.398, -43.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.524, -43.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.504, -43.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.62, -43.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.624, -43.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.656, -43.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.651, -43.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.919, -43.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.938, -43.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.063, -43.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.05, -43.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.099, -43.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.105, -43.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.169, -43.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.147, -43.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.227, -43.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.227, -43.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.111, -43.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.121, -43.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.122, -43.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.195, -43.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.256, -43.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.26, -43.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.487, -43.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.295, -43.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.306, -43.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.216, -44.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.225, -44.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.238, -44.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.237, -44.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.253, -44.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.259, -44.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.313, -44.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.307, -44.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.315, -44.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.346, -44.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.447, -44.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.44, -44.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.462, -44.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.458, -44.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.497, -44.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.498, -44.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.1, -44.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.123, -44.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.166, -44.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.14, -44.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.164, -44.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.172, -44.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.176, -44.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.207, -44.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.198, -44.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.273, -44.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.272, -44.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.284, -44.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.286, -44.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.307, -44.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.383, -44.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.37, -44.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.604, -44.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.569, -44.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.566, -44.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.593, -44.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.58, -44.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.591, -44.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.593, -44.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.637, -44.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.593, -44.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.624, -44.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.027, -44.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.029, -44.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.05, -44.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.044, -44.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.088, -44.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.08, -44.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.084, -44.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.09, -44.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.086, -44.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.091, -44.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.098, -44.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.091, -44.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.104, -44.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.055, -44.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.047, -44.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.053, -44.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.278, -44.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.291, -44.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.294, -44.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.293, -44.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.325, -44.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.327, -44.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.391, -44.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.389, -44.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.395, -44.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.394, -44.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.386, -44.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.399, -44.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.523, -44.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.424, -44.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.599, -44.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.684, -44.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.722, -44.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.722, -44.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.726, -44.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.725, -44.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.716, -44.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.74, -44.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.73, -44.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.715, -44.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.705, -44.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.697, -44.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.698, -44.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.352, -44.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.317, -44.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.363, -44.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.354, -44.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.364, -44.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.375, -44.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.379, -44.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.382, -44.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.272, -45.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.275, -45.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.261, -45.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.275, -45.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.321, -45.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.318, -45.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.37, -45.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.352, -45.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.395, -45.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.395, -45.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.206, -45.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.204, -45.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.191, -45.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.196, -45.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.194, -45.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.194, -45.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.194, -45.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.185, -45.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.143, -45.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.176, -45.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.158, -45.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.187, -45.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.508, -45.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.226, -45.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.639, -46.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.729, -46.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.66, -46.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.737, -46.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.789, -46.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.784, -46.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.803, -46.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.813, -46.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.834, -46.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.828, -46.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.973, -46.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.859, -46.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.368, -47.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.414, -47.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.466, -47.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.5, -47.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.515, -47.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.506, -47.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.525, -47.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.536, -47.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.185, -48.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.326, -48.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.295, -48.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.34, -48.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.318, -48.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.343, -48.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.347, -48.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.363, -48.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.718, -48.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.75, -48.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.695, -48.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.955, -49.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.831, -49.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.883, -49.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.94, -49.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.997, -49.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.391, -49.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.53, -49.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.468, -49.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.464, -49.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.502, -49.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.241, -49.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.525, -49.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.86, -49.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.981, -49.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.952, -50.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.981, -50.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.995, -50.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.018, -50.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.637, -49.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.059, -50.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.102, -50.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.145, -50.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.144, -50.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.153, -50.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.159, -50.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.549, -50.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.531, -50.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.52, -50.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.556, -50.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.615, -50.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.595, -50.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.658, -50.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.647, -51.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.647, -51.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.693, -51.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.651, -51.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.653, -51.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.653, -51.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.659, -51.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.66, -51.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.672, -51.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.583, -52.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.582, -52.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.556, -52.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.577, -52.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.55, -52.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.551, -52.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.478, -53.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.565, -53.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.51, -53.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.515, -53.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.457, -53.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.405, -53.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.326, -53.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.373, -53.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.539, -54.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.558, -54.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.583, -54.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.569, -54.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.605, -54.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.627, -54.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.14, -55.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.137, -55.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.135, -55.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.105, -55.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.104, -55.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.104, -55.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.051, -55.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.055, -55.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.024, -55.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.022, -55.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.163, -55.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.417, -55.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.422, -55.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.415, -55.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.407, -55.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.419, -55.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.399, -55.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.393, -55.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.394, -55.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.365, -55.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.37, -55.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.366, -55.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.367, -55.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.34, -55.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.348, -55.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.354, -55.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.346, -55.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.97, -56.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.96, -56.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.968, -56.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.011, -56.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.968, -56.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.974, -56.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.969, -56.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.903, -56.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.967, -56.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.373, -56.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.959, -56.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.958, -56.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.43, -57.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.44, -57.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.441, -57.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.436, -57.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.445, -57.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.441, -57.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.492, -57.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.478, -57.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.436, -57.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.273, -57.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.377, -57.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.399, -57.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.482, -57.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.379, -57.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.325, -57.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.33, -57.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.803, -57.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.805, -57.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.791, -57.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.777, -57.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.652, -57.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.765, -57.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.71, -57.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.699, -57.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.718, -58.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.687, -57.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.647, -58.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.644, -58.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.547, -58.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.585, -58.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.568, -58.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.567, -58.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.077, -59.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.074, -59.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.008, -59.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.068, -59.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.998, -59.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.053, -59.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.956, -59.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.045, -59.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.061, -59.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.037, -59.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.034, -59.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.018, -59.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.018, -59.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.973, -59.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.005, -59.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.449, -60.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.497, -60.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.448, -60.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.477, -60.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.441, -60.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.464, -60.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.41, -60.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.39, -60.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.393, -60.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.581, -60.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.391, -60.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.586, -61.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.57, -61.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.564, -61.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.539, -61.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.572, -61.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.573, -61.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.57, -61.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.576, -61.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.604, -61.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.602, -61.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.372, -61.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.386, -61.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.384, -61.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.38, -61.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.339, -61.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.373, -61.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.289, -61.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.278, -61.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.262, -61.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.136, -61.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.161, -61.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.155, -61.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.156, -61.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.162, -61.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.155, -61.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.58, -62.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.579, -62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.545, -62.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.594, -62.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.571, -62.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.609, -62.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.542, -62.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.532, -62.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.514, -62.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.527, -62.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.515, -62.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.517, -62.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.518, -62.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.448, -62.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.5, -62.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.507, -62.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.506, -62.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.555, -62.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.504, -62.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.492, -62.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.478, -62.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.489, -62.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.427, -62.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.35, -62.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.281, -62.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.286, -62.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.269, -62.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.285, -62.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.282, -62.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.277, -62.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.261, -62.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.25, -62.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.243, -62.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.28, -62.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.224, -62.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.242, -62.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.264, -62.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.249, -62.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.266, -62.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.257, -62.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.339, -62.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.276, -62.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.279, -62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.282, -62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.265, -61.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.276, -61.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.276, -61.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.249, -61.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.267, -61.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.274, -61.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.281, -61.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.274, -61.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.282, -61.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.271, -61.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.275, -61.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.269, -61.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.233, -61.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.257, -61.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.261, -61.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.25, -61.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.261, -61.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.261, -61.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.266, -61.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.29, -61.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.288, -61.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.077, -61.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.08, -61.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.085, -61.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.09, -61.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.173, -61.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.113, -61.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.098, -61.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.1, -61.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.171, -61.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.084, -61.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.096, -61.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.052, -61.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.07, -61.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.063, -61.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.059, -61.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.045, -61.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.048, -61.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.058, -61.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.037, -61.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.05, -61.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.063, -61.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.062, -61.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.137, -61.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.1, -61.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.091, -61.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.078, -61.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.092, -61.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.089, -61.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.153, -61.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.131, -61.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.139, -61.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.142, -61.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.126, -61.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.156, -61.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.149, -61.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.14, -61.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.15, -61.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.073, -61.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.116, -61.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.097, -61.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.099, -61.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.071, -61.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.089, -61.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.169, -61.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.108, -61.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.096, -61.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.068, -61.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.092, -61.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.102, -61.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.102, -61.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.102, -61.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.185, -61.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.175, -61.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.181, -61.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.233, -61.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.28, -61.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.261, -61.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.282, -61.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.286, -61.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.343, -61.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.376, -61.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.361, -61.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.382, -61.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.364, -61.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.371, -61.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.374, -61.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.372, -61.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.386, -61.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.39, -61.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.412, -61.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.413, -61.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.679, -61.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.454, -61.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.424, -61.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.471, -61.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.484, -61.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.483, -61.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.461, -61.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.462, -61.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.459, -61.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.449, -61.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.37, -61.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.379, -61.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.316, -61.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.365, -61.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.384, -61.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.328, -61.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.458, -62.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.495, -62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.383, -62.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.447, -62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.441, -62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.436, -62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.439, -62.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.435, -62.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.409, -62.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.404, -62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.393, -62.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.403, -62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.396, -62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.38, -62.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.365, -62.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.379, -62.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.793, -63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.821, -63.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.818, -63.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.8, -63.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.814, -63.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.792, -63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.808, -63.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.812, -63.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.802, -63.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.767, -63.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.798, -63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.779, -63.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.793, -63.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.78, -63.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.777, -63.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.682, -63.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.7, -63.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.661, -63.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.678, -63.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.643, -63.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.667, -63.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.613, -63.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.59, -63.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.601, -63.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.571, -63.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.486, -63.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.825, -63.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.678, -63.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.761, -63.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.846, -63.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.851, -63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.844, -63.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.855, -63.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.87, -63.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.856, -63.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.879, -63.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.845, -63.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.848, -63.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.843, -63.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.842, -63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.88, -63.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.819, -63.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.825, -63.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.81, -63.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.818, -63.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.743, -63.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.089, -63.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.088, -63.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.032, -63.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.004, -63.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.91, -63.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.92, -63.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.907, -63.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.875, -63.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.78, -63.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.798, -63.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.75, -63.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.74, -63.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.706, -63.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.704, -63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.693, -63.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.685, -63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.598, -63.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.638, -63.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.624, -63.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.62, -63.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.978, -63.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.979, -63.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.978, -63.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.972, -63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.939, -63.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.964, -63.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.941, -63.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.966, -63.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.879, -63.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.98, -63.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.974, -63.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.038, -63.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.984, -63.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.907, -63.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.997, -63.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.011, -63.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.007, -63.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.035, -63.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.007, -63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.005, -63.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.998, -63.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.969, -63.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.979, -63.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.919, -63.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.947, -63.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.959, -63.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.939, -63.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.431, -63.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.429, -63.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.412, -63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.424, -63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.415, -63.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.418, -63.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.511, -63.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.56, -63.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.439, -63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.43, -63.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.438, -63.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.433, -63.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.395, -63.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.454, -63.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.448, -63.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.452, -63.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.457, -63.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.388, -63.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.432, -63.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.478, -63.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.492, -63.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.481, -63.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.369, -63.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.4, -63.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.435, -63.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.402, -63.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.408, -63.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.484, -63.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.434, -63.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.382, -62.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.421, -63.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.363, -63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.383, -62.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.287, -63.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.363, -62.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.315, -62.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.354, -62.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.433, -63.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.316, -62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.328, -62.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.317, -62.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.297, -62.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.288, -62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.282, -62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.246, -62.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.27, -62.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.274, -62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.194, -62.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.245, -62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.206, -62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.205, -62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.181, -62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.189, -62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.351, -62.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.322, -62.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.049, -62.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.152, -62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.198, -62.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.154, -62.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.138, -62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.154, -62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.167, -62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.152, -62.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.238, -62.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.122, -62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.142, -62.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.101, -62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.118, -62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.106, -62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.115, -62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.107, -62.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.102, -62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.077, -62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.067, -62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.063, -62.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.065, -62.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.085, -62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.963, -62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.959, -62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.952, -62.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.953, -62.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.454, -62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.463, -62.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.456, -62.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.457, -62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.463, -62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.455, -62.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.547, -62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.451, -62.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.52, -62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.451, -62.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.465, -62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.437, -62.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.403, -62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.405, -62.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.404, -62.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.4, -62.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.487, -62.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.376, -62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.34, -62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.342, -62.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.35, -62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.337, -62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.558, -62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.543, -62.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.511, -62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.504, -62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.495, -62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.502, -62.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.527, -62.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.428, -62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.433, -62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.431, -62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.42, -62.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.434, -62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.424, -62.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.426, -62.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.418, -62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.377, -62.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.416, -62.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.408, -62.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.409, -62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.357, -62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.405, -62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.129, -62.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.388, -62.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.413, -62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.412, -62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.415, -62.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.445, -62.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.424, -62.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.44, -62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.418, -62.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.644, -62.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.421, -62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.443, -62.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.462, -62.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.459, -62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.472, -62.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.458, -62.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.454, -62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.45, -62.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.423, -62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.426, -62.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.921, -62.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.886, -62.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.885, -62.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.881, -62.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.868, -62.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.875, -62.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.872, -62.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.86, -62.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.876, -62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.894, -62.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.88, -62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.891, -62.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.881, -62.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.892, -62.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.878, -62.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.842, -62.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.873, -62.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.859, -62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.861, -62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.825, -62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.847, -62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.85, -62.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.833, -62.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.807, -62.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.806, -62.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.798, -62.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.747, -62.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.744, -62.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.725, -62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.73, -62.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.881, -62.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.705, -62.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.957, -62.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.905, -62.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.917, -62.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.906, -62.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.891, -62.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.905, -62.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.088, -62.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.97, -62.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.906, -62.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.997, -62.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.968, -62.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.908, -62.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.894, -62.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.911, -62.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.937, -62.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.923, -62.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.034, -62.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.927, -62.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.923, -62.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.925, -62.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.956, -62.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.926, -62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.925, -62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.823, -62.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.731, -62.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.725, -62.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.706, -62.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.707, -62.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.737, -62.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.693, -62.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.759, -62.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.691, -62.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.686, -62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.638, -62.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.663, -62.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.671, -62.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.654, -62.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.661, -62.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.664, -62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.658, -62.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.654, -62.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.647, -62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.621, -62.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.884, -62.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.884, -62.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.848, -62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.869, -62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.856, -62.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.852, -62.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.796, -62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.826, -62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.802, -62.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.818, -62.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.79, -62.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.81, -62.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.763, -62.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.79, -62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.796, -62.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.804, -62.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.782, -62.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.779, -62.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.778, -62.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.765, -62.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.793, -62.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.768, -62.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.762, -62.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.756, -62.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.739, -62.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.749, -62.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.727, -62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.76, -62.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.756, -62.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.761, -62.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.784, -62.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.758, -62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.729, -62.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.709, -62.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.682, -62.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.704, -62.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.708, -62.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.685, -62.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.643, -62.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.672, -62.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.682, -62.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.674, -62.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.676, -62.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.674, -62.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.66, -62.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.677, -62.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.736, -62.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.73, -62.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.957, -62.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.873, -62.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.896, -62.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.868, -62.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.849, -62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.855, -62.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.856, -62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.81, -62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.827, -62.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.798, -62.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.792, -62.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.777, -62.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.744, -62.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.745, -62.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.736, -62.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.74, -62.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.755, -62.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.733, -62.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.81, -62.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.784, -62.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.777, -62.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.858, -62.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.782, -62.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.829, -62.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.064, -62.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.08, -62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.082, -62.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.059, -62.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.106, -62.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.919, -62.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.191, -62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.187, -62.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.204, -62.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.201, -62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.209, -62.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.209, -62.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.228, -62.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.759, -62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.783, -62.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.75, -62.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.777, -62.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.769, -62.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.765, -62.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.778, -62.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.751, -62.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.629, -62.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.731, -62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.736, -62.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.801, -62.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.716, -62.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.843, -62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.99, -62.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.707, -62.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.686, -62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.687, -62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.414, -62.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.952, -62.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.029, -62.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.03, -62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.025, -62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.028, -62.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.035, -62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.04, -62.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.052, -62.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.048, -62.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.096, -62.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.078, -62.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.096, -62.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.082, -62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.12, -62.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.085, -62.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.059, -62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.092, -62.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.085, -62.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.117, -62.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.052, -62.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.053, -62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.02, -62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.02, -62.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.997, -62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.028, -62.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.01, -62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.062, -62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.009, -62.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.995, -62.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.987, -62.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.987, -62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.932, -62.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.976, -62.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.966, -62.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.971, -62.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.975, -62.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.971, -62.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.968, -62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.972, -62.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.967, -62.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.981, -62.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.005, -62.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.006, -62.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.078, -62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.042, -62.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.073, -62.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.057, -62.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.111, -62.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.068, -62.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.099, -62.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.099, -62.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.999, -62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.115, -62.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.121, -62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.211, -62.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.212, -62.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.211, -62.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.213, -62.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.231, -62.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.228, -62.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.217, -62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.273, -62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.241, -62.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.235, -62.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.098, -62.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.226, -62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.086, -62.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.156, -62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.028, -62.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.189, -62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.19, -62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.169, -62.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.068, -62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.067, -62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.067, -62.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.048, -62.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.062, -62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.049, -62.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.046, -62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.048, -62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.2, -62.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.046, -62.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.08, -62.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.258, -62.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.104, -62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.099, -62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.13, -62.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.125, -62.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.127, -62.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.133, -62.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.195, -62.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.185, -62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.202, -62.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.202, -62.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.188, -62.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.197, -62.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.238, -62.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.125, -62.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.117, -62.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.019, -62.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.055, -62.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.061, -62.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.034, -62.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.035, -62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.982, -62.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.978, -62.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.008, -62.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.991, -62.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.97, -62.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.967, -62.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.943, -62.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.922, -62.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.922, -62.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.889, -62.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.889, -62.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.882, -62.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.884, -62.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.707, -62.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.699, -62.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.741, -62.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.704, -62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.711, -62.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.713, -62.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.719, -62.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.729, -62.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.694, -62.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.871, -62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.84, -62.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.844, -62.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.863, -62.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.804, -62.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.803, -62.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.808, -62.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.897, -62.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.914, -62.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.792, -62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.708, -62.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.71, -62.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.693, -62.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.656, -62.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.672, -62.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.599, -62.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.635, -62.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.57, -62.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.625, -62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.589, -62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.592, -62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.623, -62.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.636, -62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.623, -62.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.631, -62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.644, -62.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.655, -62.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.66, -62.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.659, -62.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.663, -62.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.682, -62.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.669, -62.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.805, -62.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.767, -62.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.743, -63.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.394, -63.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.381, -63.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.397, -63.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.379, -63.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.347, -63.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.37, -63.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.316, -63.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.34, -63.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.344, -63.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.314, -63.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.362, -63.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.281, -63.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.273, -63.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.275, -63.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.279, -63.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.267, -63.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.37, -63.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.338, -63.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.364, -63.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.337, -63.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.286, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.511, -63.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.568, -63.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.619, -63.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.576, -63.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.684, -63.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.675, -63.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.666, -63.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.689, -63.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.696, -63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.731, -63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.735, -63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.753, -63.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.748, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.846, -63.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.847, -63.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.855, -63.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.865, -63.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.941, -63.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.889, -63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.881, -63.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.962, -63.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.972, -63.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.906, -63.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.979, -63.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.887, -63.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.068, -63.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.007, -63.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.016, -63.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.018, -63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.611, -63.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.61, -63.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.654, -63.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.652, -63.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.651, -63.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.643, -63.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.66, -63.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.716, -63.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.688, -63.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.677, -63.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.696, -63.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.715, -63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.716, -63.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.753, -63.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.741, -63.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.824, -63.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.824, -63.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.879, -63.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.842, -63.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.865, -63.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.874, -63.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.866, -63.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.895, -63.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.895, -63.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.955, -63.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.956, -63.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.22, -63.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.198, -63.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.216, -63.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.21, -63.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.188, -63.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.219, -63.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.13, -63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.375, -63.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.164, -63.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.17, -63.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.219, -63.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.229, -63.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.223, -63.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.221, -63.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.231, -63.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.234, -63.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.15, -63.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.247, -63.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.163, -63.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.26, -63.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.307, -63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.311, -63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.38, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.376, -63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.501, -63.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.412, -63.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.23, -64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.177, -64.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.163, -64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.186, -64.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.23, -64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.191, -64.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.206, -64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.192, -64.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.151, -64.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.181, -64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.186, -64.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.152, -64.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.126, -64.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.154, -64.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.15, -64.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.143, -64.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.125, -64.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.133, -64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.155, -64.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.127, -64.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.852, -64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.161, -64.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.122, -64.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.121, -64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.125, -64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.153, -64.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.159, -64.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.171, -64.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.169, -64.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.731, -64.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.776, -64.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.854, -64.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.779, -64.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.748, -64.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.773, -64.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.781, -64.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.77, -64.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.749, -64.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.766, -64.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.807, -64.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.789, -64.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.801, -64.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.801, -64.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.843, -64.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.821, -64.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.858, -64.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.829, -64.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.828, -64.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.85, -64.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.871, -64.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.87, -64.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.911, -64.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.876, -64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.871, -64.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.875, -64.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.701, -64.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.703, -64.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.707, -64.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.696, -64.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.69, -64.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.686, -64.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.687, -64.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.688, -64.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.667, -64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.641, -64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.646, -64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.616, -64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.645, -64.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.618, -64.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.637, -64.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.656, -64.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.635, -64.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.674, -64.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.63, -64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.635, -64.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.636, -64.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.652, -64.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.638, -64.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.661, -64.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.643, -64.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.76, -64.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.707, -64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.664, -64.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.771, -64.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.795, -64.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.793, -64.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.796, -64.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.803, -64.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.794, -64.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.791, -64.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.792, -64.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.692, -64.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.698, -64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.726, -64.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.708, -64.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.716, -64.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.705, -64.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.707, -64.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.711, -64.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.705, -64.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.99, -64.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.74, -64.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.735, -64.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.754, -64.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.745, -64.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.759, -64.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.766, -64.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.761, -64.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.872, -64.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.87, -64.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.85, -64.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.922, -64.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.915, -64.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.932, -64.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.861, -64.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.001, -64.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.936, -64.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.864, -64.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.873, -64.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.844, -64.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.835, -64.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.837, -64.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.829, -64.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.836, -64.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.796, -64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.784, -64.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.753, -64.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.781, -64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.757, -64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.775, -64.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.742, -64.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.772, -64.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.87, -64.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.838, -64.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.846, -64.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.859, -64.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.355, -64.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.35, -64.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.334, -64.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.318, -64.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.36, -64.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.013, -64.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.359, -64.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.366, -64.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.341, -64.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.388, -64.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.386, -64.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.388, -64.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.39, -64.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.412, -64.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.35, -64.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.39, -64.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.397, -64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.391, -64.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.413, -64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.524, -64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.759, -64.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.592, -64.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.581, -64.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.593, -64.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.583, -64.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.597, -64.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.608, -64.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.6, -64.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.602, -64.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.61, -64.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.61, -64.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.611, -64.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.618, -64.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.884, -64.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.634, -64.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.626, -64.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.663, -64.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.631, -64.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.766, -64.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.666, -64.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.668, -64.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.624, -64.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.687, -64.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.86, -64.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.692, -64.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.674, -64.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.692, -64.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.702, -64.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.754, -64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.746, -64.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.704, -64.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.705, -64.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.725, -64.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.713, -64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.708, -64.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.708, -64.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.692, -64.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.708, -64.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.712, -64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.707, -64.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.742, -64.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.683, -64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.679, -64.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.637, -64.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.644, -64.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.667, -64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.664, -64.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.669, -64.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.709, -64.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.704, -64.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.427, -65.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.466, -65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.454, -65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.442, -65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.432, -65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.436, -65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.423, -65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.431, -65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.493, -65.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.411, -65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.376, -65.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.392, -65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.334, -65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.341, -65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.384, -65.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.362, -65.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.422, -65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.399, -65.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.422, -65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.417, -65.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.449, -65.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.43, -65.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.459, -65.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.435, -65.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.47, -65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.437, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.411, -65.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.446, -65.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.465, -65.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.459, -65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.474, -65.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.473, -65.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.462, -65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.475, -65.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.355, -65.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.371, -65.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.35, -65.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.372, -65.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.377, -65.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.376, -65.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.357, -65.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.39, -65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.413, -65.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.398, -65.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.42, -65.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.416, -65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.421, -65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.459, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.425, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.424, -65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.422, -65.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.397, -65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.418, -65.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.404, -65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.401, -65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.373, -65.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.396, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.398, -65.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.232, -65.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.469, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.466, -65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.529, -65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.547, -65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.555, -65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.549, -65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.567, -65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.853, -65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.554, -65.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.555, -65.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.552, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.556, -65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.57, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.56, -65.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.589, -65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.59, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.603, -65.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.596, -65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.373, -65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.607, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.609, -65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.687, -65.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.621, -65.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.671, -65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.645, -65.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.706, -65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.611, -65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.821, -65.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.822, -65.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.856, -65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.798, -65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.821, -65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.801, -65.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.834, -65.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.831, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.824, -65.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.852, -65.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.831, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.852, -65.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.828, -65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.828, -65.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.827, -65.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.768, -65.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.828, -65.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.824, -65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.83, -65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.834, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.832, -65.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.843, -65.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.844, -65.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.856, -65.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.852, -65.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.862, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.867, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.882, -65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.872, -65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.733, -65.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.737, -65.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.695, -65.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.735, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.711, -65.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.734, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.72, -65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.718, -65.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.734, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.749, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.698, -65.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.723, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.703, -65.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.711, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.684, -65.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.698, -65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.679, -65.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.694, -65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.667, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.633, -65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.65, -65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.644, -65.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.667, -65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.634, -65.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.648, -65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.61, -65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.591, -65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.598, -65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.636, -65.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.589, -65.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.63, -65.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.862, -64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.861, -64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.838, -64.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.865, -64.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.864, -64.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.867, -64.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.887, -64.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.876, -64.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.914, -64.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.884, -64.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.865, -64.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.884, -64.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.887, -64.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.881, -64.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.899, -64.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.865, -64.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.871, -64.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.845, -64.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.844, -64.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.829, -64.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.829, -64.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.806, -64.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.817, -64.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.822, -64.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.778, -64.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.801, -64.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.02, -64.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.801, -64.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.813, -64.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.828, -64.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.815, -64.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.832, -64.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.825, -64.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.119, -65.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.103, -65.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.108, -64.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.1, -65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.026, -64.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.072, -65.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.066, -65.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.053, -65.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.042, -65.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.045, -65.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.038, -65.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.043, -65.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.075, -65.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.071, -65.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.068, -65.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.081, -65.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.098, -65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.102, -65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.11, -65.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.111, -65.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.115, -65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.151, -65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.145, -65.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.225, -65.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.206, -65.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.189, -65.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.246, -65.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.266, -65.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.097, -65.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.284, -65.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.12, -65.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.028, -65.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.026, -65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.026, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.062, -65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.024, -65.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.004, -65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.029, -65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.052, -65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.036, -65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.035, -65.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.042, -65.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.1, -65.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.073, -65.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.124, -65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.125, -65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.129, -65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.15, -65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.147, -65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.164, -65.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.158, -65.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.198, -65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.199, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.24, -65.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.24, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.251, -65.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.246, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.19, -65.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.263, -65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.26, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.259, -65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.273, -65.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.949, -65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.113, -65.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.122, -65.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.152, -65.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.144, -65.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.159, -65.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.145, -65.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.177, -65.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.149, -65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.132, -65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.114, -65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.088, -65.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.099, -65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.113, -65.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.115, -65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.098, -65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.089, -65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.061, -65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.105, -65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.099, -65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.028, -65.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.044, -65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.048, -65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.043, -65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.048, -65.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.043, -65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.029, -65.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.043, -65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.055, -65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.056, -65.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.058, -65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.076, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.093, -65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.081, -65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.111, -65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.095, -65.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.14, -65.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.118, -65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.115, -65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.122, -65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.131, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.122, -65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.106, -65.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.119, -65.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.098, -65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.1, -65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.899, -65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.957, -65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.955, -65.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.975, -65.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.944, -65.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.951, -65.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.946, -65.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.95, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.964, -65.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.905, -65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.905, -65.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.908, -65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.895, -65.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.894, -65.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.89, -65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.89, -65.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.816, -65.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.782, -65.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.758, -65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.744, -65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.752, -65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.646, -65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.651, -65.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.784, -65.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.67, -65.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.671, -65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.665, -65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.654, -65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.663, -65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.663, -65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.662, -65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.663, -65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.692, -65.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.679, -65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.694, -65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.698, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.71, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.707, -65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.716, -65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.713, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.712, -65.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.681, -65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.722, -65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.736, -65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.722, -65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.728, -65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.717, -65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.716, -65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.714, -65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.672, -65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.688, -65.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.619, -65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.654, -65.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.66, -65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.64, -65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.639, -65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.961, -65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.916, -65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.011, -65.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.897, -65.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.9, -65.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.849, -65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.855, -65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.827, -65.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.825, -65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.807, -65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.816, -65.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.807, -65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.813, -65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.837, -65.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.81, -65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.813, -65.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.802, -65.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.762, -65.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.752, -65.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.727, -65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.726, -65.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.668, -65.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.69, -65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.692, -65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.607, -65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.609, -65.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.584, -65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.592, -65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.559, -65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.584, -65.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.576, -65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.646, -65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.662, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.675, -65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.676, -65.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.675, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.656, -65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.662, -65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.654, -65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.659, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.653, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.618, -65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.648, -65.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.658, -65.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.668, -65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.71, -65.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.678, -65.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.712, -65.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.704, -65.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.741, -65.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.707, -65.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.738, -65.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.719, -65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.712, -65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.736, -65.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.744, -65.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.741, -65.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.857, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.763, -65.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.746, -65.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.728, -65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.747, -65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.718, -65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.747, -65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.851, -65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.863, -65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.813, -65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.862, -65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.865, -65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.892, -65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.893, -65.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.897, -65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.899, -65.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.968, -65.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.914, -65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.914, -65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.916, -65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.917, -65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.916, -65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.871, -65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.89, -65.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.875, -65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.886, -65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.923, -65.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.902, -65.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.911, -65.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.904, -65.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.915, -65.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.932, -65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.922, -65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.068, -65.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.01, -65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.678, -65.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.32, -65.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.301, -65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.302, -65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.312, -65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.34, -65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.314, -65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.349, -65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.346, -65.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.275, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.35, -65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.35, -65.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.356, -65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.366, -65.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.38, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.37, -65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.378, -65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.389, -65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.384, -65.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.391, -65.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.396, -65.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.392, -65.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.408, -65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.414, -65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.411, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.419, -65.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.45, -65.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.383, -65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.475, -65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.519, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.512, -65.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.523, -65.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.325, -65.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.268, -65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.246, -65.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.253, -65.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.324, -65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.214, -65.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.207, -65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.172, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.189, -65.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.149, -65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.15, -65.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.138, -65.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.146, -65.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.13, -65.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.122, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.108, -65.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.113, -65.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.112, -65.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.111, -65.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.14, -65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.096, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.062, -65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.064, -65.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.074, -65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.03, -65.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.053, -65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.027, -65.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.042, -65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.044, -65.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.041, -65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.673, -65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.768, -65.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.868, -65.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.877, -65.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.875, -65.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.889, -65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.88, -65.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.861, -65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.87, -65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.885, -65.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.913, -65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.907, -65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.924, -65.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.921, -65.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.928, -65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.929, -65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.922, -65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.929, -65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.827, -65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.88, -65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.986, -65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.969, -65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.985, -65.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.981, -65.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.974, -65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.983, -65.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.072, -65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.05, -65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.987, -65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.254, -65.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.198, -65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.226, -65.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.222, -65.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.224, -65.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.222, -65.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.196, -65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.21, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.218, -65.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.198, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.176, -65.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.185, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.197, -65.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.184, -65.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.195, -65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.168, -65.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.182, -65.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.182, -65.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.17, -65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.176, -65.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.166, -65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.128, -65.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.13, -65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.331, -65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.341, -65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.372, -65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.369, -65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.384, -65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.382, -65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.356, -65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.375, -65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.375, -65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.38, -65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.346, -65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.355, -65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.298, -65.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.326, -65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.332, -65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.341, -65.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.329, -65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.331, -65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.386, -65.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.333, -65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.429, -65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.35, -65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.89, -65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.885, -65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.889, -65.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.888, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.876, -65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.894, -65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.89, -65.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.88, -65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.863, -65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.858, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.834, -65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.855, -65.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.841, -65.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.854, -65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.855, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.853, -65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.863, -65.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.862, -65.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.93, -65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.909, -65.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.884, -65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.918, -65.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.956, -65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.93, -65.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.933, -65.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.0, -65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.976, -65.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.048, -65.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.037, -65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.039, -65.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.04, -65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.053, -65.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.052, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.074, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.059, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.046, -65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.862, -65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.899, -65.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.888, -65.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.911, -65.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.976, -65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.928, -65.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.976, -65.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.977, -65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.959, -65.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.032, -64.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.006, -64.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.037, -64.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.035, -64.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.031, -64.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.031, -64.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.992, -64.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.049, -64.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.176, -64.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.137, -64.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.164, -64.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.157, -64.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.184, -64.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.181, -64.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.197, -64.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.21, -64.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.152, -64.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.26, -64.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.272, -64.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.277, -64.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.301, -64.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.298, -64.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.433, -64.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.424, -64.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.421, -64.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.413, -64.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.463, -64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.386, -64.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.411, -64.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.416, -64.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.437, -64.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.458, -64.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.45, -64.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.436, -64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.47, -64.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.482, -64.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.474, -64.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.493, -64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.451, -64.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.476, -64.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.429, -64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.53, -64.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.475, -64.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.523, -64.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.459, -64.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.451, -64.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.453, -64.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.454, -64.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.429, -65.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.428, -65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.387, -65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.407, -65.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.405, -65.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.352, -65.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.339, -65.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.378, -65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.367, -65.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.381, -65.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.367, -65.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.384, -65.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.482, -65.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.406, -65.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.412, -65.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.435, -65.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.417, -65.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.456, -65.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.451, -65.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.775, -64.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.661, -65.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.501, -65.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.364, -65.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.414, -65.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.44, -65.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.489, -65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.462, -65.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.535, -65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.513, -65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.492, -65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.492, -65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.498, -65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.52, -65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.521, -65.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.533, -65.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.541, -65.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.587, -65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.566, -65.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.576, -65.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.576, -65.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.637, -65.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.588, -65.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.595, -65.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.649, -65.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.611, -65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.625, -65.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.629, -65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.68, -65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.674, -65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.282, -65.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.274, -65.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.272, -65.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.28, -65.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.282, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.28, -65.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.284, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.279, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.282, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.276, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.261, -65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.261, -65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.253, -65.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.243, -65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.213, -65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.232, -65.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.197, -65.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.228, -65.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.251, -65.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.243, -65.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.238, -65.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.237, -65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.163, -65.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.177, -65.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.172, -65.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.178, -65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.191, -65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.194, -65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.2, -65.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.196, -65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.178, -65.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.206, -65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.2, -65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.213, -65.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.199, -65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.185, -65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.188, -65.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.177, -65.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.185, -65.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.145, -65.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.121, -65.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.179, -65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.105, -65.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.178, -65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.184, -65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.186, -65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.189, -65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.188, -65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.215, -65.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.211, -65.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.991, -65.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.984, -65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.964, -65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.968, -65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.952, -65.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.728, -64.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.98, -65.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.955, -65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.956, -65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.959, -65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.955, -65.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.943, -65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.019, -65.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.955, -65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.909, -65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.955, -65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.903, -65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.957, -65.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.961, -65.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.826, -65.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.949, -65.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.956, -65.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.83, -65.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.957, -65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.812, -65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.807, -65.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.831, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.806, -65.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.804, -65.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.805, -65.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.805, -65.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.807, -65.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.82, -65.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.822, -65.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.832, -65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.828, -65.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.835, -65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.832, -65.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.84, -65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.834, -65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.764, -65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.802, -65.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.832, -65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.808, -65.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.813, -65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.791, -65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.811, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.791, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.816, -65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.814, -65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.817, -65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.857, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.82, -65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.784, -65.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.793, -65.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.782, -65.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.78, -65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.775, -65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.74, -65.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.748, -65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.733, -65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.743, -65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.737, -65.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.746, -65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.757, -65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.746, -65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.774, -65.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.753, -65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.768, -65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.782, -65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.781, -65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.797, -65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.784, -65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.816, -65.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.785, -65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.796, -65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.787, -65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.778, -65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.78, -65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.102, -65.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.822, -65.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.796, -65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.774, -65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.713, -65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.7, -65.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.698, -65.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.674, -65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.697, -65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.697, -65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.696, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.713, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.679, -65.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.66, -65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.645, -65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.664, -65.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.642, -65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.617, -65.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.632, -65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.651, -65.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.638, -65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.633, -65.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.606, -65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.64, -65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.615, -65.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.691, -65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.607, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.572, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.573, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.393, -65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.662, -65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.607, -65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.587, -65.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.52, -65.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.834, -65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.873, -65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.822, -65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.924, -65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.886, -65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.843, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.928, -65.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.921, -65.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.909, -65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.923, -65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.915, -65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.925, -65.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.927, -65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.927, -65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.93, -65.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.93, -65.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.969, -65.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.913, -65.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.908, -65.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.911, -65.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.9, -65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.91, -65.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.988, -65.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.724, -65.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.926, -65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.943, -65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.632, -65.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.967, -65.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.946, -65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.926, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.949, -65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.739, -65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.711, -65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.671, -65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.547, -65.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.642, -65.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.661, -65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.668, -65.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.659, -65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.536, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.685, -65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.688, -65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.739, -65.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.715, -65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.747, -65.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.714, -65.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.695, -65.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.657, -65.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.677, -65.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.65, -65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.65, -65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.591, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.64, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.639, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.802, -65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.861, -65.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.869, -65.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.864, -65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.862, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.866, -65.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.883, -65.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.89, -65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.898, -65.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.894, -65.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.897, -65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.906, -65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.925, -65.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.924, -65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.936, -65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.93, -65.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.962, -65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.952, -65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.936, -65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.954, -65.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.957, -65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.954, -65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.938, -65.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.946, -65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.92, -65.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.945, -65.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.937, -65.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.908, -65.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.907, -65.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.897, -65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.897, -65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.018, -65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.019, -65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.022, -65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.025, -65.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.028, -65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.025, -65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.07, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.028, -65.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.014, -65.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.033, -65.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.029, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.02, -65.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.01, -65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.998, -65.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.02, -65.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.018, -65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.029, -65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.016, -65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.024, -65.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.003, -65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.97, -65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.002, -65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.009, -65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.004, -65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.061, -65.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.005, -65.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.028, -65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.023, -65.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.015, -65.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.024, -65.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.99, -65.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.944, -65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.937, -65.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.932, -65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.838, -65.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.865, -65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.888, -65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.906, -65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.883, -65.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.917, -65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.919, -65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.916, -65.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.935, -65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.933, -65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.981, -65.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.96, -65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.961, -65.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.961, -65.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.973, -65.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.978, -65.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.995, -65.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.99, -65.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.991, -65.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.901, -64.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.929, -64.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.904, -64.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.977, -64.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.963, -64.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.98, -65.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.972, -64.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.188, -65.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.031, -64.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.03, -64.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.084, -64.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.059, -64.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.089, -64.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.065, -64.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.062, -64.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.064, -64.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.037, -64.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.06, -64.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.062, -64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.06, -64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.078, -64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.06, -64.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.059, -64.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.207, -64.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.078, -64.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.075, -64.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.923, -64.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.947, -64.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.944, -64.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.844, -64.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.933, -64.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.926, -64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.922, -64.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.925, -64.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.884, -64.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.902, -64.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.912, -64.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.885, -64.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.869, -64.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.874, -64.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.851, -64.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.867, -64.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.883, -64.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.861, -64.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.845, -64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.927, -64.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.811, -64.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.72, -64.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.729, -64.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.077, -64.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.235, -64.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.99, -64.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.235, -64.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.224, -64.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.225, -64.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.222, -64.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.208, -64.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.221, -64.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.246, -64.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.221, -64.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.23, -64.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.228, -64.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.22, -64.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.249, -64.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.257, -64.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.251, -64.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.266, -64.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.254, -64.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.306, -64.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.305, -64.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.361, -64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.354, -64.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.457, -64.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.367, -64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.373, -64.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.342, -64.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.372, -64.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.377, -64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.371, -64.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.372, -64.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.369, -64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.985, -64.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.887, -64.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.911, -64.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.89, -64.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.922, -64.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.902, -64.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.96, -64.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.928, -64.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.937, -64.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.948, -64.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.954, -64.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.954, -64.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.114, -64.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.004, -64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.149, -64.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.08, -64.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.16, -64.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.149, -64.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.121, -64.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.166, -64.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.168, -64.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.175, -64.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.662, -64.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.632, -64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.662, -64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.633, -64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.645, -64.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.632, -64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.599, -64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.629, -64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.607, -64.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.627, -64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.673, -64.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.661, -64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.659, -64.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.69, -64.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.67, -64.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.675, -64.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.676, -64.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.67, -64.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.673, -64.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.68, -64.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.68, -64.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.68, -64.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.579, -64.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.638, -64.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.628, -64.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.743, -64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.692, -64.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.693, -64.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.693, -64.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.812, -64.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.656, -64.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.854, -64.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.857, -64.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.869, -64.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.862, -64.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.84, -64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.837, -64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.834, -64.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.836, -64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.826, -64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.834, -64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.836, -64.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.833, -64.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.834, -64.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.827, -64.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.831, -64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.878, -64.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.879, -64.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.884, -64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.91, -64.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.903, -64.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.848, -64.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.956, -64.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.849, -64.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.969, -64.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.755, -64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.063, -64.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.067, -64.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.076, -64.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.066, -64.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.072, -64.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.061, -64.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.013, -64.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.013, -64.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.902, -64.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.911, -64.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.909, -64.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.904, -64.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.946, -64.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.915, -64.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.026, -64.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.015, -64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.051, -64.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.047, -64.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.128, -64.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.055, -64.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.05, -64.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.087, -64.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.139, -64.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.137, -64.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.096, -64.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.112, -64.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.086, -64.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.099, -64.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.077, -64.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.091, -64.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.071, -64.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.069, -64.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.023, -64.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.04, -64.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.02, -64.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.001, -64.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.863, -65.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.976, -65.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.986, -65.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.979, -65.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.93, -65.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.951, -65.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.038, -65.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.04, -65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.082, -65.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.07, -65.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.06, -65.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.059, -65.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.068, -65.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.044, -65.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.045, -65.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.087, -65.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.098, -65.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.095, -65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.091, -65.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.098, -65.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.093, -65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.058, -65.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.102, -65.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.992, -65.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.103, -65.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.206, -65.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.104, -65.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.108, -65.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.106, -65.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.034, -65.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.169, -65.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.058, -65.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.094, -65.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.102, -65.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.099, -65.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.062, -65.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.102, -65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.102, -65.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.109, -65.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.124, -65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.134, -65.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.161, -65.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.137, -65.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.096, -65.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.136, -65.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.105, -65.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.12, -65.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.122, -65.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.085, -65.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.084, -65.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.045, -65.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.063, -65.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.049, -65.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.026, -65.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.99, -65.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.007, -65.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.961, -65.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.0, -65.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.153, -65.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.98, -65.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.085, -65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.076, -65.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.031, -65.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.076, -65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.046, -65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.06, -65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.053, -65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.057, -65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.049, -65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.056, -65.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.041, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.01, -65.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.057, -65.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.103, -65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.114, -65.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.105, -65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.126, -65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.12, -65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.146, -65.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.149, -65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.16, -65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.149, -65.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.167, -65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.353, -65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.355, -65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.376, -65.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.36, -65.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.484, -65.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.456, -65.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.504, -65.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.511, -65.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.537, -65.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.535, -65.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.569, -65.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.563, -65.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.736, -64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.627, -65.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.611, -65.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.589, -65.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.604, -65.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.811, -65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.564, -65.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.601, -65.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.546, -65.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.56, -65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.561, -65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.56, -65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.563, -65.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.586, -65.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.579, -65.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.572, -65.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.583, -65.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.565, -65.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.569, -65.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.57, -65.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.566, -65.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.596, -65.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.578, -65.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.742, -65.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.625, -65.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.583, -65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.591, -65.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.591, -65.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.474, -65.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.514, -65.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.539, -65.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.549, -65.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.539, -65.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.532, -65.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.508, -65.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.536, -65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.556, -65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.535, -65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.625, -65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.544, -65.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.536, -65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.529, -65.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.536, -65.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.559, -65.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.548, -65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.615, -65.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.582, -65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.377, -65.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.549, -65.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.553, -65.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.617, -65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.596, -65.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.555, -65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.58, -65.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.555, -65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.533, -65.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.718, -65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.718, -65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.722, -65.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.72, -65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.727, -65.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.715, -65.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.717, -65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.745, -65.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.718, -65.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.732, -65.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.718, -65.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.716, -65.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.719, -65.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.712, -65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.713, -65.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.723, -65.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.673, -65.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.744, -65.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.751, -65.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.747, -65.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.467, -65.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.467, -65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.481, -65.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.479, -65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.493, -65.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.489, -65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.442, -65.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.491, -65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.497, -65.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.492, -65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.476, -65.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.489, -65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.488, -65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.468, -65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.464, -65.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.471, -65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.473, -65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.507, -65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.478, -65.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.497, -65.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.486, -65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.492, -65.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.445, -65.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.495, -65.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.495, -65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.504, -65.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.498, -65.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.118, -65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.132, -65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.14, -65.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.154, -66.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.18, -66.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.2, -66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.196, -66.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.345, -66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.275, -66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.318, -66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.324, -66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.436, -66.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.383, -66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.418, -66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.45, -66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.417, -66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.545, -66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.511, -66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.631, -66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.631, -66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.686, -66.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.65, -66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.779, -66.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.762, -66.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.806, -66.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.843, -66.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.84, -66.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.862, -66.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.861, -66.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.943, -66.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.946, -66.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.941, -66.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.968, -66.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.04, -66.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.021, -66.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.075, -66.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.059, -66.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.066, -66.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.066, -66.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.187, -66.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.138, -66.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.144, -66.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.157, -66.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.485, -66.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.37, -66.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.234, -66.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.348, -66.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.426, -66.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.396, -66.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.697, -66.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.462, -66.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.6, -66.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.494, -66.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.592, -66.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.538, -66.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.546, -66.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.557, -66.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.582, -66.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.581, -66.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.622, -66.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.647, -66.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.798, -66.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.638, -66.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.68, -66.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.671, -66.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.705, -66.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.728, -67.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.722, -67.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.69, -67.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.791, -67.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.846, -67.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.826, -67.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.738, -67.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.739, -67.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.763, -67.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.767, -67.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.91, -67.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.879, -67.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.921, -67.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.904, -67.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.994, -67.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.961, -67.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.084, -67.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.066, -67.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.083, -66.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.098, -66.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.119, -66.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.105, -66.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.133, -66.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.144, -66.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.202, -66.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.177, -66.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.198, -66.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.212, -66.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.299, -66.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.246, -66.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.408, -66.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.351, -66.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 173.305, -66.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.031, -67.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.028, -67.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.021, -67.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.037, -67.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.055, -67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.032, -67.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.041, -67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.041, -67.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.042, -67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.104, -67.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.052, -67.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.057, -67.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.096, -67.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.064, -67.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.081, -67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.124, -67.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.097, -67.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.089, -67.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.109, -67.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.101, -67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.158, -67.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.108, -67.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.109, -67.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.176, -67.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.07, -67.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.117, -67.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.373, -67.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.359, -67.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.347, -67.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.384, -67.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.381, -67.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.369, -67.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.382, -67.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.417, -67.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.379, -67.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.354, -67.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.378, -67.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.365, -67.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.377, -67.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.385, -67.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.376, -67.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.384, -67.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.376, -67.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.399, -67.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.374, -67.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.396, -67.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.373, -67.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.326, -67.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.339, -67.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.362, -67.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.417, -67.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.385, -67.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.472, -67.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 174.448, -67.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.52, -66.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.53, -66.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.468, -66.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.523, -66.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.482, -66.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.533, -66.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.482, -66.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.479, -66.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.453, -66.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.449, -66.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.449, -66.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.448, -66.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.431, -66.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.439, -66.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.461, -66.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.445, -66.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.474, -66.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.465, -66.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.467, -66.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.49, -66.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.47, -66.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.562, -66.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.486, -66.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.486, -66.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.457, -66.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.484, -66.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.497, -66.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.501, -66.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.525, -66.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.506, -66.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.875, -66.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.876, -66.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.9, -66.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.868, -66.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.881, -66.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.817, -66.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.9, -66.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.875, -66.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.889, -66.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.887, -66.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.494, -66.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.491, -66.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.412, -66.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.482, -66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.383, -66.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.415, -66.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.29, -66.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.293, -66.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.311, -66.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.225, -66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.064, -66.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.993, -65.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.992, -65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.098, -64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.09, -64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.084, -64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.085, -64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.05, -64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.066, -64.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.089, -64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.056, -64.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.089, -64.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.466, -26.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.462, -26.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.466, -26.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.397, -26.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.459, -26.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.441, -26.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.45, -26.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.454, -26.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.443, -26.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.422, -26.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.416, -26.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.419, -26.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.375, -25.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.374, -25.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.279, -25.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.348, -25.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.331, -25.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.324, -25.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.184, -25.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.316, -25.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.289, -24.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.282, -24.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.268, -24.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.282, -24.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.272, -24.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.226, -24.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.229, -24.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.134, -24.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.168, -24.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.13, -24.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.131, -24.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.149, -24.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.772, -24.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.74, -24.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.743, -24.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.737, -24.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.83, -24.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.63, -24.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.644, -24.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.455, -23.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.57, -23.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.369, -23.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.36, -23.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.241, -23.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.239, -23.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.996, -23.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.11, -23.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.811, -23.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.88, -23.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.885, -23.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.964, -23.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.895, -23.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.828, -23.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.907, -23.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.21, -23.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.227, -22.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.236, -22.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.234, -22.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.201, -22.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.217, -22.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.38, -22.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.212, -22.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.087, -22.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.072, -22.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.076, -22.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.065, -22.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.092, -22.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.72, -22.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.724, -22.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.723, -22.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.722, -22.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.709, -22.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.705, -22.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.658, -22.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.687, -22.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.694, -22.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.676, -22.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.159, -22.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.333, -22.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.276, -22.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.185, -22.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.189, -22.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.857, -21.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.858, -21.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.034, -21.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.829, -21.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.761, -21.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.806, -21.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.419, -21.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.427, -21.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.389, -21.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.396, -21.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.39, -21.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.365, -21.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.101, -20.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.054, -20.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.058, -20.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.05, -20.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.02, -20.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.867, -20.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.89, -20.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.854, -20.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.852, -20.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.836, -20.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.754, -20.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.72, -20.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.698, -20.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.705, -20.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.739, -20.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.65, -20.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.78, -20.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.786, -20.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.798, -20.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.792, -20.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.726, -20.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.073, -21.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.094, -21.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.136, -21.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.101, -21.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.096, -21.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.115, -21.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.351, -21.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.331, -21.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.342, -21.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.341, -21.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.325, -21.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.352, -21.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.364, -21.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.344, -21.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.345, -21.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.349, -21.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.363, -21.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.4, -21.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.376, -21.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.434, -21.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.381, -21.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.387, -21.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.387, -21.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.38, -21.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.38, -21.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.108, -37.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.113, -37.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.1, -37.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.126, -37.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.118, -37.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.117, -37.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.127, -37.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.14, -37.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.136, -37.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.142, -37.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.151, -37.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.171, -37.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.166, -37.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.162, -37.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.171, -37.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.176, -37.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.169, -37.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.161, -37.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.165, -37.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.165, -37.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.162, -37.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.789, -38.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.801, -38.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.813, -38.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.788, -38.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.789, -38.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.784, -38.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.779, -38.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.77, -38.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.746, -38.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.753, -38.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.697, -38.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.727, -38.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.73, -38.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.717, -38.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.703, -38.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.695, -38.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.679, -38.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.686, -38.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.456, -38.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.45, -38.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.457, -38.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.448, -38.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.433, -38.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.44, -38.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.422, -38.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.429, -38.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.418, -38.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.419, -38.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.405, -38.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.416, -38.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.427, -38.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.415, -38.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.054, -39.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.052, -39.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.925, -39.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.046, -39.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.039, -39.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.065, -39.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.004, -39.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.008, -39.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.967, -39.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.962, -39.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.939, -39.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.941, -39.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.93, -39.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.94, -39.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.658, -39.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.65, -39.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.639, -39.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.641, -39.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.626, -39.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.621, -39.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.606, -39.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.617, -39.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.584, -39.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.614, -39.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.614, -39.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.612, -39.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.603, -39.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.612, -39.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.575, -39.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.545, -39.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.547, -39.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.539, -39.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.501, -39.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.506, -39.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.484, -39.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.495, -39.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.474, -39.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.494, -39.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.52, -40.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.511, -40.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.52, -40.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.514, -40.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.554, -40.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.518, -40.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.565, -40.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.531, -40.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.599, -40.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.598, -40.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.597, -40.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.599, -40.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.586, -40.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.603, -40.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.603, -40.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.61, -40.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.603, -40.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.6, -40.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.603, -40.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.509, -40.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.509, -40.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.507, -40.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -40.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.497, -40.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.493, -40.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.492, -40.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.486, -40.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.491, -40.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.528, -40.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.53, -40.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.533, -40.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.531, -40.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.532, -40.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.533, -40.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.531, -40.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.536, -40.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.54, -40.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.542, -40.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.557, -40.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.559, -40.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.578, -40.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.564, -40.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.579, -40.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.575, -40.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.489, -41.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.486, -41.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.484, -41.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.485, -41.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.478, -41.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.481, -41.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.465, -41.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.48, -41.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.474, -41.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.447, -41.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.466, -41.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.45, -41.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.462, -41.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.46, -41.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.457, -41.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.223, -41.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.454, -41.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.38, -41.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.381, -41.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.385, -41.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.379, -41.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.406, -41.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.358, -41.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.371, -41.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.43, -41.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.357, -41.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.374, -41.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.391, -41.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.38, -41.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.398, -41.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.381, -41.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.545, -41.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.546, -41.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.564, -40.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.558, -40.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.556, -40.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.552, -40.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.558, -40.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.553, -40.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.562, -40.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -40.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.565, -40.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -40.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -40.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.628, -40.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.629, -40.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.632, -40.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.632, -40.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.63, -40.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.62, -40.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.622, -40.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.601, -40.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.613, -40.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.614, -40.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.615, -40.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.162, -37.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.153, -37.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.153, -37.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.148, -37.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.148, -37.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.127, -37.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.124, -37.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.108, -37.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.111, -37.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.063, -37.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.065, -37.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.053, -37.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.053, -37.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.002, -37.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.001, -37.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.001, -37.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.002, -37.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.008, -37.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.003, -37.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.997, -37.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.997, -37.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.993, -37.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.992, -37.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.98, -37.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.982, -37.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.986, -37.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.98, -37.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.702, -37.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.712, -37.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.726, -37.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.761, -37.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.712, -37.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.712, -37.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.708, -37.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.998, -37.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.949, -37.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.992, -37.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.998, -37.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.007, -37.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.004, -37.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.002, -37.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.999, -37.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.001, -37.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.705, -37.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.752, -37.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.722, -37.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.747, -37.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.737, -37.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.717, -37.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.732, -37.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.731, -37.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.73, -37.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.732, -37.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.73, -37.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.748, -38.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.74, -38.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.747, -38.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.74, -38.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.739, -38.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.756, -38.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.721, -38.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.723, -38.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.692, -38.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.722, -38.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.65, -38.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.651, -38.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.959, -39.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.958, -39.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.311, -40.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.269, -40.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.243, -40.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.048, -40.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.303, -40.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.248, -40.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.329, -40.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.037, -40.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.035, -40.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.082, -40.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.085, -40.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.152, -40.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.132, -40.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.133, -40.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.136, -40.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.135, -41.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.138, -41.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.134, -41.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.145, -41.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.24, -41.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.258, -41.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.365, -41.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.363, -41.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.398, -41.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.393, -41.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.449, -41.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.45, -41.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.622, -42.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.632, -42.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.638, -42.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.639, -42.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.719, -42.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.752, -42.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.738, -42.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.757, -42.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.79, -42.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.787, -42.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.883, -42.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.846, -42.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.792, -42.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.89, -42.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.004, -42.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.003, -42.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.038, -42.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.292, -42.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.135, -42.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.222, -42.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.158, -42.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.194, -42.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.195, -42.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.249, -42.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.427, -43.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.395, -43.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.397, -43.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.397, -43.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.52, -43.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.522, -43.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.581, -43.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.566, -43.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.629, -43.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.629, -43.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.735, -43.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.746, -43.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.742, -43.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.802, -43.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.804, -43.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.908, -43.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.903, -43.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.929, -43.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.931, -43.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.943, -43.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.009, -43.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.113, -43.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.114, -43.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.124, -43.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.12, -43.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.209, -43.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.193, -43.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.301, -43.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.42, -43.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.421, -43.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.06, -37.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.181, -37.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.091, -37.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.176, -37.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.12, -37.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.161, -37.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.157, -37.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.151, -37.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.177, -37.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.224, -37.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.202, -37.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.228, -37.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.215, -37.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.222, -37.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.215, -37.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.157, -37.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.201, -37.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.163, -37.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.187, -37.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.133, -37.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.176, -37.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.325, -37.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.124, -37.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.018, -37.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.031, -37.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.045, -37.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.992, -37.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.005, -37.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.963, -37.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.976, -37.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.975, -37.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.928, -37.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.923, -37.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.9, -37.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.63, -38.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.631, -38.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.623, -38.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.62, -38.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.621, -38.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.615, -38.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.603, -38.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.605, -38.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.588, -38.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.596, -38.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.575, -38.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.582, -38.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.586, -38.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.576, -38.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.57, -38.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.568, -38.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.519, -39.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.514, -39.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.523, -39.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.511, -39.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.479, -39.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.5, -39.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.5, -39.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.485, -39.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.474, -39.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.477, -39.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.479, -39.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.475, -39.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.364, -39.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.363, -39.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.316, -39.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.362, -39.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.333, -39.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.36, -39.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.252, -39.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.326, -39.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.336, -39.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.572, -39.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.333, -39.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.852, -39.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.849, -39.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.859, -39.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.86, -39.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.84, -39.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.892, -39.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.851, -39.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.938, -39.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.422, -39.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.428, -39.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.43, -39.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.442, -39.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.534, -39.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.473, -39.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.579, -39.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.486, -39.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.4, -39.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.399, -39.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.441, -39.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.444, -39.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.472, -39.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.461, -39.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.57, -39.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.419, -39.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.555, -39.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.544, -39.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.547, -39.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.575, -39.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.581, -39.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.78, -39.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.81, -39.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.798, -39.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.8, -39.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.813, -39.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.812, -39.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.865, -39.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.85, -39.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.862, -39.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.828, -39.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.874, -39.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.949, -39.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.96, -39.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.968, -39.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.973, -39.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.002, -39.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.981, -39.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.983, -39.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.987, -39.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.888, -39.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.901, -39.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.95, -39.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.92, -39.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.95, -39.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.963, -39.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.957, -39.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.921, -39.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.962, -39.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.695, -40.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.625, -40.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.708, -40.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.705, -40.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.756, -40.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.731, -40.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.844, -40.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.769, -40.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.774, -40.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.78, -40.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.895, -40.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.93, -40.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.883, -40.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.943, -40.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.054, -40.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.037, -40.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.094, -40.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.088, -40.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.47, -41.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.419, -41.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.425, -41.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.436, -41.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.581, -41.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.519, -41.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.611, -41.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.605, -41.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.621, -41.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.623, -41.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.673, -41.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.642, -41.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.66, -41.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.651, -41.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.545, -41.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.799, -41.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.815, -41.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.823, -41.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.842, -41.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.794, -42.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.793, -42.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.795, -42.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.799, -42.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.821, -42.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.81, -42.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.835, -42.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.889, -42.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.014, -42.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.969, -42.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.012, -42.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.998, -42.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.079, -42.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.05, -42.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.911, -42.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.926, -42.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.933, -42.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.929, -42.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.021, -42.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.026, -42.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.064, -42.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.055, -42.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.164, -42.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.147, -42.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.195, -42.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.165, -42.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.191, -42.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.201, -42.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.265, -42.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.26, -42.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.44, -43.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.412, -43.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.474, -43.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.469, -43.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.504, -43.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.508, -43.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.582, -43.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.579, -43.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.618, -43.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.608, -43.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.637, -43.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.635, -43.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.668, -43.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.669, -43.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.874, -43.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.873, -43.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.927, -43.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.969, -43.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.962, -43.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.993, -43.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.968, -43.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.017, -43.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.067, -43.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.083, -43.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.713, -43.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.735, -43.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.762, -43.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.761, -43.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.784, -43.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.781, -43.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.774, -43.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.785, -43.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.788, -43.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.789, -43.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.735, -44.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.74, -44.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.745, -44.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.745, -44.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.834, -44.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.829, -44.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.933, -44.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.93, -44.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.942, -44.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.959, -44.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.032, -44.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.034, -44.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.6, -28.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.635, -28.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.6, -28.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.78, -28.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.672, -28.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.677, -28.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.717, -28.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.65, -28.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.688, -28.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.661, -28.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.62, -28.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.669, -28.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.678, -28.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.686, -28.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.704, -28.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.703, -28.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.713, -28.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.699, -28.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.706, -28.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.751, -28.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.709, -28.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.665, -28.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.708, -28.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.674, -28.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.702, -28.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.664, -28.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.7, -28.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.676, -28.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.686, -28.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.515, -27.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.487, -27.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.475, -27.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.476, -27.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.458, -27.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.475, -27.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.507, -27.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.493, -27.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.447, -27.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.563, -27.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.497, -27.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.503, -27.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.493, -27.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.463, -26.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.475, -26.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.489, -26.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.463, -26.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.516, -26.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.464, -26.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.33, -26.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.461, -26.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.46, -26.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.451, -26.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.451, -26.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.459, -26.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.448, -26.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.534, -26.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.446, -26.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.446, -25.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.45, -25.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.482, -25.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.45, -25.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.45, -25.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.442, -25.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.363, -25.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.425, -25.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.416, -25.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.416, -25.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.37, -24.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.299, -24.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.212, -24.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.297, -24.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.291, -24.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.304, -24.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.308, -24.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.307, -24.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.863, -24.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.843, -24.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.81, -24.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.839, -24.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.761, -24.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.764, -24.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.719, -24.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.694, -24.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.715, -24.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.677, -24.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.47, -23.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.094, -24.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.227, -23.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.235, -23.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.236, -23.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.236, -23.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.237, -23.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.233, -23.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.186, -23.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.202, -23.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.171, -23.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.171, -23.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.039, -22.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.511, -22.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.833, -22.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.937, -22.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.678, -22.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.679, -22.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.566, -22.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.649, -22.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.129, -22.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.752, -22.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.721, -22.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.549, -22.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.711, -22.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.371, -22.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.437, -22.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.373, -22.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.419, -22.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.402, -22.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.401, -22.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.608, -28.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.757, -28.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.693, -28.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.801, -28.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.705, -28.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.788, -28.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.745, -28.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.733, -28.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.772, -28.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.804, -28.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.79, -28.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.808, -28.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.807, -28.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.811, -28.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.812, -28.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.795, -28.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.812, -28.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.796, -28.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.812, -28.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.068, -28.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.804, -28.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.667, -28.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.671, -28.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.506, -27.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.515, -27.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.498, -27.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.493, -25.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.523, -25.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.473, -25.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.528, -25.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.521, -25.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.564, -25.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.157, -24.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.157, -24.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.154, -24.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.151, -24.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.055, -24.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.091, -24.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.953, -24.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.972, -24.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.96, -24.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.826, -24.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.878, -23.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.876, -23.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.85, -23.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.863, -23.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.602, -23.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.61, -23.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.553, -23.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.479, -23.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.414, -22.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.424, -22.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.336, -22.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.9, -22.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.244, -22.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.301, -22.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.248, -22.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.043, -22.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.006, -22.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.975, -22.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.085, -22.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.83, -22.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.936, -22.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.648, -21.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.616, -21.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.708, -21.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.683, -21.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.601, -21.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.668, -21.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.6, -21.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.429, -21.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.458, -21.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.356, -21.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.426, -21.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.42, -21.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.377, -21.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.185, -21.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.181, -21.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.205, -21.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.17, -21.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.181, -21.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.161, -21.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.39, -20.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.3, -20.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.052, -20.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.061, -20.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.042, -20.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.017, -20.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.083, -20.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.079, -20.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.068, -21.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.081, -21.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.899, -21.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.904, -21.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.915, -21.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.893, -21.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.882, -21.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.88, -21.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.818, -21.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.814, -21.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.755, -21.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.811, -21.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.977, -21.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.817, -21.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.91, -21.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.7, -20.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.325, -21.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.268, -21.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.237, -20.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.292, -21.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.293, -21.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.482, -21.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.433, -21.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.234, -21.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.235, -21.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.281, -21.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.249, -21.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.267, -21.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.266, -21.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.097, -21.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.131, -21.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.198, -21.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.129, -21.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.208, -21.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.204, -21.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.231, -21.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.221, -21.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.233, -21.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.25, -21.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.234, -21.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.227, -21.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.234, -21.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.046, -20.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.072, -20.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.054, -20.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.17, -20.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.169, -20.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.161, -20.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.171, -20.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.134, -20.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.168, -20.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.096, -20.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.157, -20.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.066, -20.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.139, -20.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.929, -20.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.95, -20.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.004, -20.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.945, -20.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.728, -20.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.81, -20.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.414, -20.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.406, -20.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.235, -20.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.236, -20.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.246, -20.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.164, -20.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.665, -20.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.715, -20.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.698, -20.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.732, -20.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.761, -20.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.76, -20.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.771, -20.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.774, -20.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.878, -20.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.783, -20.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.833, -19.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.85, -19.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.822, -19.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.851, -19.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.865, -19.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.852, -19.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.828, -19.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.85, -19.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.88, -19.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.848, -19.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.61, -19.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.61, -19.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.61, -19.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.615, -19.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.638, -19.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.642, -19.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.647, -19.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.046, -20.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.052, -20.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.167, -20.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.148, -20.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.219, -20.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.289, -20.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.259, -20.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.206, -20.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.261, -20.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.23, -21.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.265, -20.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.225, -21.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.27, -21.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.283, -21.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.277, -21.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.633, -21.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.681, -21.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.684, -21.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.884, -21.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.872, -21.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.868, -21.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.853, -21.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.856, -21.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.494, -21.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.543, -21.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.568, -22.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.578, -21.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.324, -22.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.317, -22.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.988, -22.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.369, -22.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.731, -22.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.435, -22.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.921, -23.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.878, -23.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.935, -23.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.938, -23.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.704, -28.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.624, -28.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.633, -28.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.674, -28.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.63, -28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.515, -27.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.154, -24.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.124, -24.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.278, -22.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.307, -22.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.245, -22.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.248, -22.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.989, -21.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.989, -21.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.736, -21.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.536, -21.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.709, -21.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.576, -21.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.578, -21.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.2, -21.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.19, -21.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.202, -21.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.183, -21.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.003, -21.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.018, -21.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.975, -21.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.975, -21.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.712, -21.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.713, -21.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.168, -20.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.136, -20.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.071, -20.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.109, -20.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.043, -20.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.008, -20.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.03, -20.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.904, -19.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.92, -19.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.967, -19.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.968, -19.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.042, -19.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.967, -19.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.769, -19.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.809, -19.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.468, -29.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.511, -29.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.479, -29.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.525, -29.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.521, -29.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.533, -29.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.54, -29.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.566, -28.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.563, -28.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.558, -28.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.628, -28.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.636, -28.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.65, -28.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.648, -28.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.662, -28.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.663, -28.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.632, -28.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.662, -28.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.671, -28.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.656, -28.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.659, -28.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.64, -28.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.655, -28.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.64, -28.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.633, -28.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.633, -28.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.617, -28.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.633, -28.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.624, -28.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.625, -28.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.642, -28.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.626, -28.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.627, -28.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.626, -28.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.615, -27.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.626, -28.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.554, -27.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.584, -27.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.552, -27.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.523, -27.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.51, -27.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.445, -27.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.447, -27.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.423, -27.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.414, -27.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.289, -26.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.287, -26.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.291, -26.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.3, -26.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.297, -26.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.23, -25.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.221, -25.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.23, -25.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.224, -25.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.193, -25.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.213, -25.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.21, -25.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.374, -24.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.359, -24.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.35, -24.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.36, -24.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.334, -24.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.234, -24.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.246, -24.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.234, -24.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.185, -24.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.091, -24.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.985, -24.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.006, -24.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.971, -24.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.959, -24.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.895, -24.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.918, -24.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.654, -23.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.669, -23.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.61, -23.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.647, -23.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.652, -23.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.349, -23.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.328, -23.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.275, -23.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.289, -23.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.212, -23.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.074, -23.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.102, -23.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.675, -22.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.715, -22.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.716, -22.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.713, -22.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.284, -21.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.285, -21.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.228, -21.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.251, -21.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.247, -21.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.245, -21.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.862, -21.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.793, -21.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.827, -21.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.385, -21.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.384, -21.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.384, -21.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.377, -21.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.324, -21.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.325, -21.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.289, -21.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.288, -21.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.751, -20.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.565, -20.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.517, -20.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.514, -20.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.513, -20.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.417, -20.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.44, -20.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.395, -20.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.396, -20.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.419, -20.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.377, -20.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.183, -20.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.212, -20.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.079, -20.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.122, -20.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.119, -20.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.248, -20.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.247, -20.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.281, -20.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.271, -20.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.29, -20.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.328, -20.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.42, -20.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.414, -20.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.435, -20.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.383, -20.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.349, -20.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.986, -20.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.985, -20.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.863, -20.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.884, -20.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.893, -20.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.931, -20.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.961, -20.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.954, -20.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.64, -28.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.616, -28.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.439, -27.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.438, -27.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.445, -27.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.444, -27.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.463, -27.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.472, -27.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.491, -27.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.484, -27.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.283, -26.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.285, -26.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.278, -26.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.263, -26.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.272, -26.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.254, -26.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.265, -26.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.286, -26.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.244, -26.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.148, -26.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.152, -26.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.155, -26.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.151, -26.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.159, -26.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.154, -26.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.157, -26.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.154, -26.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.151, -26.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.154, -26.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.104, -26.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.087, -26.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.12, -26.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.095, -26.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.1, -26.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.156, -26.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.133, -26.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.148, -26.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.146, -26.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.07, -26.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.023, -26.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.069, -26.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.108, -26.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.09, -26.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.094, -26.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.104, -26.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.097, -26.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.223, -25.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.211, -25.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.212, -25.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.212, -25.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.181, -25.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.223, -25.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.249, -25.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.231, -25.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.1, -25.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.086, -25.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.066, -25.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.086, -25.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.128, -25.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.123, -25.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.126, -25.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.161, -25.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.219, -25.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.204, -25.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.332, -24.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.325, -24.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.287, -24.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.294, -24.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.273, -24.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.283, -24.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.281, -24.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.279, -24.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.274, -24.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.227, -24.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.283, -24.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.235, -24.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.229, -24.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.197, -24.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.163, -24.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.158, -24.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.159, -24.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.176, -24.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.162, -24.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.049, -24.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.177, -24.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.171, -24.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.208, -24.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.209, -24.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.17, -24.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.212, -24.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.196, -24.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.265, -24.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.205, -24.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.217, -24.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.19, -24.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.201, -24.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.183, -24.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.885, -24.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.969, -24.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.049, -24.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.972, -24.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.219, -24.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.724, -24.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.248, -24.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.247, -24.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.171, -24.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.171, -24.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.174, -24.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.166, -24.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.171, -24.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.231, -24.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.18, -24.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.184, -24.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.072, -24.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.199, -24.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.152, -24.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.141, -24.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.16, -24.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.166, -24.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.174, -24.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.186, -24.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.184, -24.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.17, -24.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.175, -24.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.172, -24.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.158, -24.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.171, -24.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.076, -24.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.075, -24.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.011, -24.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.058, -24.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.961, -24.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.007, -24.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.031, -24.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.998, -24.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.016, -24.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.617, -24.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.616, -24.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.613, -24.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.605, -24.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.467, -24.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.568, -24.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.271, -24.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.521, -24.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.504, -24.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.122, -23.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.079, -23.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.061, -23.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.069, -23.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.059, -23.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.049, -23.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.022, -23.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.035, -23.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.059, -23.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.613, -23.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.612, -23.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.556, -23.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.543, -23.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.44, -23.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.45, -23.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.429, -23.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.409, -23.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.378, -23.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.404, -22.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.405, -22.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.419, -22.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.427, -22.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.421, -22.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.385, -22.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.421, -22.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.74, -21.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.747, -21.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.725, -21.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.723, -21.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.674, -21.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.688, -21.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.671, -21.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.67, -21.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.201, -21.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.201, -21.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.184, -21.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.185, -21.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.198, -21.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.199, -21.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.249, -21.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.247, -21.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.278, -21.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.106, -21.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.109, -21.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.111, -21.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.122, -21.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.166, -21.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.164, -21.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.17, -21.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.166, -21.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.241, -21.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.291, -21.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.269, -21.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.403, -21.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.397, -21.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.447, -21.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.452, -21.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.475, -21.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.465, -21.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.532, -21.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.528, -21.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.553, -21.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.53, -21.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.493, -27.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.422, -26.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.437, -26.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.438, -26.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.452, -26.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.46, -26.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.459, -26.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.522, -26.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.52, -26.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.533, -26.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.52, -26.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.465, -25.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.469, -25.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.399, -25.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.419, -25.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.421, -25.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.407, -25.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.399, -24.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.427, -25.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.393, -24.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.427, -24.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.407, -24.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.406, -24.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.371, -24.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.372, -24.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.916, -24.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.912, -24.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.835, -24.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.783, -24.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.78, -24.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.75, -23.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.733, -23.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.248, -23.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.236, -23.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.195, -23.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.018, -22.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.024, -22.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.015, -22.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.014, -22.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.001, -22.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.017, -22.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.991, -22.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.777, -22.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.8, -22.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.801, -22.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.788, -22.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.768, -22.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.45, -21.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.598, -22.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.588, -22.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.426, -21.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.509, -21.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.577, -21.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.505, -21.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.259, -21.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.897, -21.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.827, -21.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.869, -21.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.495, -21.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.464, -21.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.434, -21.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.459, -21.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.419, -21.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.258, -21.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.412, -21.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.421, -21.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.436, -21.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.492, -21.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.48, -21.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.47, -21.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.535, -21.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.533, -21.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.561, -21.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.562, -21.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.619, -21.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.612, -21.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.642, -21.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.642, -21.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.834, -21.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.839, -21.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.868, -21.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.881, -21.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.888, -21.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.925, -21.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.91, -21.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.038, -21.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.037, -21.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.031, -21.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.053, -21.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.058, -21.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.068, -21.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.052, -21.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.069, -21.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.051, -21.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.047, -21.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.035, -21.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.036, -21.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.035, -21.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.873, -21.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.674, -21.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.761, -21.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.768, -21.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.332, -21.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.31, -21.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.181, -21.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.311, -21.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.289, -21.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.397, -21.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.354, -21.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.488, -21.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.489, -21.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.534, -21.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.511, -21.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.333, -21.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.606, -21.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.607, -21.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.009, -21.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.006, -21.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.049, -21.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.082, -21.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.097, -21.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.798, -21.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.795, -21.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.2, -22.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.199, -22.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.229, -22.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.225, -22.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.262, -22.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.3, -22.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.749, -22.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.702, -22.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.726, -22.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.744, -22.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.746, -22.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.464, -22.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.463, -22.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.422, -22.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.424, -22.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.433, -22.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.406, -22.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.835, -23.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.154, -23.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.164, -23.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.169, -23.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.131, -23.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.142, -23.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.185, -23.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.167, -23.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.14, -23.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.187, -23.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.429, -23.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.616, -24.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.664, -24.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.635, -24.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.692, -24.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.654, -24.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.907, -24.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.908, -24.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.944, -24.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.965, -24.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.975, -24.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.002, -24.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.005, -24.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.988, -24.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.348, -24.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.344, -24.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.343, -24.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.318, -24.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.265, -25.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.268, -25.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.271, -25.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.27, -25.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.441, -25.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.495, -25.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.461, -25.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.497, -25.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.516, -25.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.513, -25.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.505, -25.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.522, -25.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.506, -26.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.48, -26.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.498, -26.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.476, -26.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.533, -26.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.456, -26.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.472, -26.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.437, -26.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.446, -26.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.434, -26.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.445, -26.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.447, -26.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.442, -26.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.437, -26.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.441, -26.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.498, -27.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.509, -27.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.547, -27.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.538, -27.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.544, -27.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.54, -27.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.537, -27.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.539, -27.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.569, -27.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.594, -27.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.55, -27.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.546, -27.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.55, -27.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.573, -27.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.547, -27.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.563, -27.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.543, -27.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.652, -28.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.493, -29.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.494, -29.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.514, -29.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.489, -29.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.526, -29.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.489, -29.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.516, -29.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.486, -29.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.293, -30.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.292, -30.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.292, -30.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.285, -30.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.282, -30.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.284, -30.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.287, -30.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.284, -30.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.283, -30.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.284, -30.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.236, -30.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.258, -30.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.201, -30.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.202, -30.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.188, -30.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.182, -30.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.097, -30.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.098, -30.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.099, -30.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.098, -30.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.036, -30.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.087, -30.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.296, -30.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.069, -31.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.885, -32.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.904, -32.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.879, -32.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.886, -32.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.926, -32.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.884, -32.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.841, -32.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.846, -32.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.48, -32.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.431, -32.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.41, -32.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.389, -32.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.408, -32.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.405, -33.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.402, -33.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.404, -33.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.402, -33.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.405, -33.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.228, -33.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.209, -33.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.168, -33.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.167, -33.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.164, -33.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.117, -33.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.126, -33.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.092, -33.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.092, -33.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.08, -33.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.09, -33.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.695, -33.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.695, -33.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.687, -33.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.689, -33.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.675, -33.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.676, -33.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.703, -33.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.675, -33.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.74, -33.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.686, -33.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.817, -33.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.815, -33.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.816, -33.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.815, -33.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.83, -33.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.811, -33.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.796, -33.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.808, -33.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.665, -33.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.677, -33.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.689, -33.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.694, -33.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.688, -33.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.689, -33.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.69, -33.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.709, -33.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.479, -33.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.482, -33.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.481, -33.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.48, -33.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.481, -33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.463, -33.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.471, -33.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.462, -33.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.124, -34.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.123, -34.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.092, -34.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.098, -34.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.101, -34.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.095, -34.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.065, -34.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.063, -34.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.059, -34.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.059, -34.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.023, -34.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.03, -34.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.821, -35.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.819, -35.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.772, -35.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.779, -35.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.756, -35.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.775, -35.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.846, -35.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.713, -35.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.704, -35.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.705, -35.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.653, -35.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.654, -35.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.428, -35.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.646, -28.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.641, -28.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.644, -28.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.658, -28.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.625, -28.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.616, -28.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.622, -28.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.525, -27.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.512, -27.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.449, -27.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.488, -27.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.474, -26.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.467, -26.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.469, -26.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.462, -26.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.29, -25.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.293, -25.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.274, -25.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.292, -25.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.264, -25.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.269, -24.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.245, -24.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.177, -24.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.201, -24.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.609, -24.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.66, -24.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.449, -23.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.423, -23.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.362, -23.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.405, -23.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.972, -23.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.958, -23.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.581, -22.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.616, -22.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.614, -21.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.615, -21.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.562, -21.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.537, -21.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.512, -21.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.532, -21.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.165, -21.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.167, -21.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.165, -21.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.759, -21.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.863, -21.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.835, -21.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.495, -21.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.509, -21.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.902, -21.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.811, -20.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.8, -20.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.794, -20.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.798, -20.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.716, -20.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.717, -20.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.73, -21.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.728, -21.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.447, -20.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.45, -20.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.453, -20.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.791, -22.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.785, -22.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.944, -22.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.958, -22.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.291, -23.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.281, -23.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.986, -23.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.024, -23.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.001, -23.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.982, -23.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.629, -23.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.631, -23.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.531, -28.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.6, -28.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.424, -28.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.661, -28.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.685, -28.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.694, -28.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.729, -28.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.728, -28.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.674, -28.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.672, -28.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.665, -28.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.672, -28.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.667, -28.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.545, -27.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.562, -27.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.636, -27.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.635, -27.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.422, -26.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.416, -26.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.421, -26.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.382, -26.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.382, -26.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.332, -26.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.258, -25.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.27, -25.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.349, -25.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.332, -25.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.332, -25.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.321, -25.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.321, -25.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.292, -25.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.298, -25.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.155, -24.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.149, -24.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.916, -24.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.043, -24.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.049, -24.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.062, -24.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.926, -24.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.935, -24.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.903, -24.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.799, -24.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.76, -24.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.755, -24.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.684, -24.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.688, -24.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.513, -24.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.546, -23.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.53, -24.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.559, -24.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.422, -23.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.425, -23.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.22, -23.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.207, -23.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.205, -23.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.207, -23.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.208, -23.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.282, -23.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.278, -23.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.719, -22.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.696, -22.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.524, -22.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.531, -22.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.582, -21.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.752, -19.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.49, -21.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.444, -21.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.453, -21.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.414, -21.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.415, -21.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.34, -21.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.339, -21.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.245, -21.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.295, -21.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.303, -21.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.305, -21.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.07, -21.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.095, -21.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.078, -21.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.066, -21.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.067, -21.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.936, -21.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.9, -21.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.9, -21.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.834, -21.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.521, -21.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.748, -21.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.547, -21.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.552, -21.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.573, -21.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.565, -21.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.565, -21.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.57, -21.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.437, -21.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.41, -21.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.427, -21.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.397, -21.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.413, -21.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.411, -21.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.851, -21.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.29, -21.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.289, -21.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.334, -21.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.34, -21.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.425, -21.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.42, -21.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.611, -66.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.523, -66.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.568, -66.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.527, -66.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.511, -66.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.508, -66.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.386, -66.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.465, -66.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.502, -66.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.453, -66.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.5, -66.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.66, -66.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.568, -66.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.697, -66.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.66, -66.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.704, -66.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.674, -66.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.769, -66.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.775, -66.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.812, -66.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.846, -66.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.855, -66.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.854, -66.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.894, -66.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.895, -66.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.903, -66.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.905, -66.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.911, -66.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.919, -66.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.912, -66.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.847, -66.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.909, -66.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.915, -66.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.969, -66.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.926, -66.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.295, -66.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.934, -66.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.93, -66.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.746, -66.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.92, -66.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.943, -66.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.948, -66.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.949, -66.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.941, -66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.949, -66.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.989, -66.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.015, -66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.977, -66.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.126, -66.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.124, -66.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.138, -66.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.136, -66.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.326, -66.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.331, -66.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.374, -66.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.339, -66.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.436, -66.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.426, -66.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.447, -66.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.427, -66.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.429, -66.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.44, -66.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.588, -66.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.558, -66.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.531, -66.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.564, -66.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.536, -66.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.564, -66.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.564, -66.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.619, -66.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.65, -66.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.657, -66.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.655, -66.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.65, -66.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.674, -66.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.671, -66.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.168, -66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.068, -66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.097, -66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.071, -66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.055, -66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.072, -66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.046, -66.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.073, -66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.035, -66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.054, -66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.046, -66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.051, -66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.029, -66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.045, -66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.054, -66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.027, -66.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.017, -66.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.024, -66.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.025, -66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.023, -66.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.05, -66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.003, -66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.019, -66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.021, -66.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.017, -66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.118, -66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.035, -66.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.046, -66.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.02, -66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.035, -66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.386, -65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.38, -65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.38, -65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.404, -65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.423, -65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.404, -65.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.418, -65.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.435, -65.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.428, -65.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.432, -65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.436, -65.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.471, -65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.458, -65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.44, -65.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.46, -65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.464, -65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.483, -65.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.434, -65.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.457, -65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.435, -65.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.458, -65.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.469, -65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.474, -65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.488, -65.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.476, -65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.505, -65.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.478, -65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.572, -65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.493, -65.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.489, -65.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.355, -65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.378, -65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.392, -65.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.394, -65.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.359, -65.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.395, -65.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.368, -65.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.399, -65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.447, -65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.42, -65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.444, -65.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.429, -65.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.421, -65.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.396, -65.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.428, -65.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.434, -65.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.427, -65.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.398, -65.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.365, -65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.407, -65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.415, -65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.531, -65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.422, -65.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.434, -65.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.445, -65.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.443, -65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.452, -65.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.446, -65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.471, -65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.468, -65.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.503, -65.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.506, -65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.528, -65.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.439, -65.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.454, -65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.458, -65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.46, -65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.433, -65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.462, -65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.474, -65.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.512, -65.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.478, -65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.511, -65.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.481, -65.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.498, -65.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.482, -65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.478, -65.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.484, -65.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.491, -65.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.45, -65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.505, -65.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.504, -65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.495, -65.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.515, -65.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.512, -65.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.505, -65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.495, -65.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.451, -65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.491, -65.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.29, -65.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.283, -65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.296, -65.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.283, -65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.274, -65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.237, -65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.272, -65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.246, -65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.271, -65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.266, -65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.263, -65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.274, -65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.285, -65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.276, -65.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.295, -65.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.281, -65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.311, -65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.282, -65.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.288, -65.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.279, -65.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.281, -65.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.266, -65.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.275, -65.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.306, -65.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.277, -65.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.261, -65.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.237, -65.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.242, -65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.262, -65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.236, -65.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.244, -65.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.219, -65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.73, -65.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.719, -65.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.712, -65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.711, -65.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.684, -65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.698, -65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.673, -65.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.686, -65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.694, -65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.688, -65.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.697, -65.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.721, -65.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.702, -65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.698, -65.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.708, -65.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.705, -65.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.713, -65.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.725, -65.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.719, -65.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.71, -65.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.721, -65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.75, -65.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.794, -65.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.779, -65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.82, -65.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.814, -65.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.804, -65.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.876, -65.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.848, -65.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.605, -65.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.094, -65.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.208, -65.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.154, -65.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.214, -65.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.147, -65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.168, -65.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.214, -65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.216, -65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.212, -65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.199, -65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.193, -65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.182, -65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.18, -65.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.166, -65.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.164, -65.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.156, -65.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.161, -65.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.137, -65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.154, -65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.135, -65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.151, -65.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.167, -65.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.172, -65.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.192, -65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.197, -65.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.225, -65.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.207, -65.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.3, -65.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.234, -65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.18, -65.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.212, -65.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.231, -65.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.207, -65.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.254, -65.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.141, -65.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.176, -65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.14, -65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.103, -65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.134, -65.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.139, -65.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.156, -65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.139, -65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.123, -65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.164, -65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.138, -65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.136, -65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.167, -65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.135, -65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.116, -65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.125, -65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.147, -65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.123, -65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.153, -65.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.138, -65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.12, -65.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.102, -65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.139, -65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.11, -65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.05, -65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.082, -65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.046, -65.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.078, -65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.126, -65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.569, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.568, -65.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.52, -65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.578, -65.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.554, -65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.557, -65.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.581, -65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.552, -65.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.552, -65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.938, -65.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.55, -65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.552, -65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.562, -65.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.572, -65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.553, -65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.551, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.528, -65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.574, -65.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.544, -65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.583, -65.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.544, -65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.56, -65.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.543, -65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.536, -65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.539, -65.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.538, -65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.536, -65.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.41, -65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.374, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.376, -65.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.372, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.383, -65.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.352, -65.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.362, -65.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.359, -65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.36, -65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.444, -65.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.388, -65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.351, -65.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.33, -65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.333, -65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.339, -65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.308, -65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.32, -65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.288, -65.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.317, -65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.363, -65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.314, -65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.495, -65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.354, -65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.313, -65.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.341, -65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.312, -65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.313, -65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.312, -65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.01, -65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.28, -65.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.304, -65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.274, -65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.262, -65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.266, -65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.258, -65.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.258, -65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.247, -65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.253, -65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.191, -65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.264, -65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.233, -65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.242, -65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.235, -65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.214, -65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.206, -65.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.218, -65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.176, -65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.204, -65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.213, -65.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.112, -65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.195, -65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.251, -65.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.189, -65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.115, -65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.199, -65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.187, -65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.157, -65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.684, -65.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.216, -65.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.204, -65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.204, -65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.225, -65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.197, -65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.109, -65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.184, -65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.19, -65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.178, -65.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.188, -65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.185, -65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.234, -65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.183, -65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.155, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.18, -65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.148, -65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.174, -65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.17, -65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.169, -65.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.136, -65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.194, -65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.158, -65.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.16, -65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.156, -65.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.113, -65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.143, -65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.12, -65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.139, -65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.087, -65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.142, -65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.145, -65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.9, -67.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.0, -67.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.058, -67.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.946, -67.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.076, -67.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.072, -67.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.0, -67.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.056, -67.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.095, -67.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.051, -67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.895, -67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.074, -67.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.059, -67.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.071, -67.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.059, -67.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.074, -67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.058, -67.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.069, -67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.058, -67.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.155, -67.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.039, -67.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.04, -67.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.083, -67.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.031, -67.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.999, -67.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.029, -67.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.069, -67.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.978, -67.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.028, -67.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.019, -67.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.04, -67.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.083, -67.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.058, -67.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.05, -67.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.089, -67.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.108, -67.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.093, -67.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.117, -67.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.129, -67.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.123, -67.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.169, -67.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.15, -67.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.173, -67.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.166, -67.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.173, -67.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.179, -67.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.167, -67.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.183, -67.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.185, -67.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.189, -67.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.232, -67.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.199, -67.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.362, -67.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.209, -67.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.243, -67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.224, -67.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.233, -67.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.228, -67.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.22, -67.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.231, -67.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.257, -67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.243, -67.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.161, -67.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.25, -67.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.269, -67.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.269, -67.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.241, -67.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.274, -67.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.274, -67.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.286, -67.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.788, -66.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.774, -66.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.775, -66.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.785, -66.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.775, -66.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.767, -66.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.75, -66.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.758, -66.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.729, -66.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.742, -66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.739, -66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.72, -66.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.741, -66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.715, -66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.377, -66.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.625, -66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.669, -66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.388, -65.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.382, -65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.397, -65.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.369, -65.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.319, -65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.341, -65.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.319, -65.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.339, -65.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.256, -65.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.279, -65.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.25, -65.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.278, -65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.082, -65.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.076, -65.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.092, -65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.079, -65.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.071, -65.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.043, -65.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.074, -65.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.035, -65.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.094, -65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.057, -65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.03, -65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.997, -65.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.016, -65.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.973, -65.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.015, -65.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.007, -65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.014, -65.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.525, -64.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.541, -64.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.552, -64.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.545, -64.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.568, -64.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.559, -64.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.587, -64.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.57, -64.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.555, -64.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.559, -64.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.552, -64.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.585, -64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.563, -64.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.593, -64.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.564, -64.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.554, -64.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.564, -64.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.545, -64.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.559, -64.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.504, -64.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.577, -64.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.611, -64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.598, -64.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.578, -64.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.58, -64.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.581, -64.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.575, -64.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.582, -64.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.583, -64.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.601, -64.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.612, -64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.604, -64.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.6, -64.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.634, -64.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.573, -64.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.378, -64.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.556, -64.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.577, -64.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.537, -65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.5, -65.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.565, -65.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.508, -65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.591, -65.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.572, -65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.579, -65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.583, -65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.365, -65.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.603, -65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.638, -65.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.69, -65.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.664, -65.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.756, -65.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.738, -65.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.75, -65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.779, -65.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.746, -65.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.802, -65.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.86, -65.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.859, -65.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.802, -65.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.01, -65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.983, -65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.0, -65.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.015, -65.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.985, -65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.808, -65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.724, -65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.035, -65.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.015, -65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.991, -65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.992, -65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.996, -65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.005, -65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.002, -65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.97, -65.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.003, -65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.009, -65.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.004, -65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.944, -65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.005, -65.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.116, -65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.186, -65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.249, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.2, -65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.19, -65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.182, -65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.123, -65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.187, -65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.198, -65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.223, -65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.2, -65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.203, -65.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.209, -65.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.206, -65.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.195, -65.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.208, -65.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.2, -65.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.209, -65.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.31, -65.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.201, -65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.218, -65.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.221, -65.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.222, -65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.216, -65.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.255, -65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.226, -65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.234, -65.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.234, -65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.855, -65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.842, -65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.858, -65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.838, -65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.852, -65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.828, -65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.836, -65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.827, -65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.809, -65.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.821, -65.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.825, -65.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.815, -65.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.806, -65.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.818, -65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.806, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.847, -65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.808, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.801, -65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.79, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.89, -65.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.75, -65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.803, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.769, -65.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.77, -65.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.782, -65.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.919, -65.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.779, -65.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.846, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.962, -65.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.745, -65.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.714, -65.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.715, -65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.715, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.714, -65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.753, -65.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.584, -65.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.705, -65.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.779, -65.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.731, -65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.708, -65.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.7, -65.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.707, -65.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.688, -65.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.706, -65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.713, -65.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.707, -65.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.726, -65.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.707, -65.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.699, -65.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.703, -65.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.747, -65.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.7, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.671, -65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.697, -65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.636, -65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.696, -65.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.682, -65.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.698, -65.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.593, -65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.727, -65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.699, -65.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.596, -65.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.72, -65.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.757, -65.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.732, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.89, -65.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.754, -65.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.754, -65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.789, -65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.764, -65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.758, -65.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.751, -65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.754, -65.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.75, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.751, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.772, -65.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.757, -65.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.755, -65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.736, -65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.763, -65.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.753, -65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.741, -65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.752, -65.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.733, -65.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.741, -65.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.7, -65.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.743, -65.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.704, -65.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.749, -65.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.72, -65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.721, -65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.726, -65.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.709, -65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.712, -65.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.706, -65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.695, -65.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.696, -65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.702, -65.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.692, -65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.644, -65.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.67, -65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.688, -65.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.649, -65.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.651, -65.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.729, -65.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.626, -65.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.673, -65.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.67, -65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.68, -65.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.678, -65.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.688, -65.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.684, -65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.639, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.7, -65.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.692, -65.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.679, -65.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.693, -65.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.696, -65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.693, -65.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.691, -65.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.693, -65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.682, -65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.681, -65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.69, -65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.682, -65.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.717, -65.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.674, -65.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.675, -65.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.683, -65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.666, -65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.564, -65.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.656, -65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.823, -65.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.619, -65.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.631, -65.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.405, -64.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.269, -64.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.345, -64.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.266, -64.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.247, -64.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.227, -64.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.226, -64.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.215, -64.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.141, -64.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.12, -64.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.051, -64.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.113, -64.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.042, -64.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.093, -64.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.074, -64.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.072, -64.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.064, -64.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.061, -64.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.047, -64.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.053, -64.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.062, -64.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.034, -64.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.073, -64.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.052, -64.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.061, -64.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.049, -64.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.026, -64.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.057, -64.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.666, -64.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.952, -64.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.982, -64.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.726, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.719, -65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.717, -65.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.741, -65.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.714, -65.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.698, -65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.712, -65.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.681, -65.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.712, -65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.646, -65.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.712, -65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.718, -65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.723, -65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.719, -65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.72, -65.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.705, -65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.715, -65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.716, -65.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.734, -65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.794, -65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.723, -65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.438, -65.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.688, -65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.694, -65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.677, -65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.698, -65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.689, -65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.646, -65.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.677, -65.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.685, -65.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.684, -65.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.681, -65.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.702, -65.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.648, -65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.618, -65.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.649, -65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.65, -65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.457, -65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.671, -65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.664, -65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.609, -65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.687, -65.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.663, -65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.669, -65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.661, -65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.64, -65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.66, -65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.563, -65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.639, -65.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.648, -65.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.648, -65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.646, -65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.63, -65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.644, -65.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.655, -65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.641, -65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.612, -65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.599, -65.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.629, -65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.631, -65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.635, -65.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.629, -65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.666, -65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.625, -65.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.41, -65.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.621, -65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.502, -65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.498, -65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.49, -65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.498, -65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.472, -65.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.485, -65.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.52, -65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.464, -65.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.488, -65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.466, -65.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.476, -65.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.478, -65.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.472, -65.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.487, -65.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.486, -65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.451, -65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.487, -65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.453, -65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.489, -65.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.505, -65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.49, -65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.373, -65.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.457, -65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.472, -65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.536, -65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.38, -65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.466, -65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.315, -65.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.301, -65.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.332, -65.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.298, -65.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.304, -65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.303, -65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.337, -65.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.305, -65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.308, -65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.311, -65.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.306, -65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.318, -65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.342, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.342, -65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.333, -65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.344, -65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.274, -65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.311, -65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.36, -65.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.344, -65.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.29, -65.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.334, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.278, -65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.274, -65.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.311, -65.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.271, -65.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.305, -65.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.264, -65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.236, -65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.26, -65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.327, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.241, -65.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.387, -65.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.22, -65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.37, -65.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.366, -65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.352, -65.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.375, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.302, -65.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.377, -65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.327, -65.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.273, -65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.328, -65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.444, -65.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.304, -65.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.324, -65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.338, -65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.323, -65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.361, -65.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.344, -65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.338, -65.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.325, -65.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.338, -65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.334, -65.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.339, -65.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.327, -65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.335, -65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.421, -65.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.3, -65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.319, -65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.32, -65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.036, -65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.032, -65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.023, -65.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.032, -65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.02, -65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.029, -65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.03, -65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.027, -65.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.031, -65.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.026, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.962, -65.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.995, -65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.005, -65.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.996, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.005, -65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.992, -65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.0, -65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.987, -65.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.023, -65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.997, -65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.99, -65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.993, -65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.991, -65.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.991, -65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.913, -65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.007, -65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.015, -65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.968, -65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.993, -65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.984, -65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.985, -65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.016, -65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.983, -65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.018, -65.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.38, -65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.778, -65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.791, -65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.784, -65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.79, -65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.782, -65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.824, -65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.759, -65.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.758, -65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.749, -65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.737, -65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.748, -65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.725, -65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.73, -65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.735, -65.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.749, -65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.71, -65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.696, -65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.733, -65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.703, -65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.702, -65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.694, -65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.697, -65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.693, -65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.671, -65.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.69, -65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.685, -65.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.689, -65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.668, -65.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.657, -65.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.643, -65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.655, -65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.646, -65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.631, -65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.64, -65.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.728, -65.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.726, -65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.72, -65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.715, -65.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.717, -65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.725, -65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.692, -65.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.699, -65.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.72, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.715, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.704, -65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.703, -65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.706, -65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.702, -65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.69, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.701, -65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.687, -65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.673, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.685, -65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.709, -65.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.579, -65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.686, -65.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.579, -65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.605, -65.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.158, -65.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.171, -65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.17, -65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.168, -65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.18, -65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.19, -65.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.181, -65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.17, -65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.181, -65.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.189, -65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.185, -65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.19, -65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.175, -65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.184, -65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.107, -65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.183, -65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.183, -65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.175, -65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.182, -65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.223, -65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.177, -65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.243, -65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.164, -65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.137, -65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.303, -65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.182, -65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.154, -65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.16, -65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.14, -65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.104, -65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.102, -65.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.102, -65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.01, -65.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.095, -65.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.117, -65.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.112, -65.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.119, -65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.112, -65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.089, -65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.112, -65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.105, -65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.119, -65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.118, -65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.127, -65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.119, -65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.095, -65.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.116, -65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.112, -65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.115, -65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.114, -65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.114, -65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.118, -65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.116, -65.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.108, -65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.104, -65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.119, -65.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.114, -65.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.134, -65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.122, -65.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.11, -65.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.11, -65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.137, -65.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.097, -65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.113, -65.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.1, -65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.123, -65.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.116, -65.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.15, -65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.119, -65.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.045, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.038, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.014, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.029, -65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.031, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.763, -65.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.985, -65.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.007, -65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.979, -65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.998, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.99, -65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.991, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.002, -65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.986, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.969, -65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.98, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.964, -65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.964, -65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.983, -65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.963, -65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.951, -65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.958, -65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.963, -65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.954, -65.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.945, -65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.952, -65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.951, -65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.957, -65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.95, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.956, -65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.96, -65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.95, -65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.014, -65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.018, -65.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.029, -65.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.019, -65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.994, -65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.036, -65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.018, -65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.027, -65.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.018, -65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.011, -65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.017, -65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.025, -65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.017, -65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.003, -65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.019, -65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.02, -65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.027, -65.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.007, -65.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.021, -65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.05, -65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.022, -65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.012, -65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.019, -65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.006, -65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.015, -65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.925, -65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.029, -65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.003, -65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.013, -65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.013, -65.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.012, -65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.076, -65.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.081, -65.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.073, -66.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.052, -65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.047, -66.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.046, -66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.069, -65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.03, -65.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.029, -66.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.026, -65.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.022, -66.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.934, -66.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.934, -66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.796, -66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.835, -66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.829, -66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.837, -66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.823, -66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.781, -66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.791, -66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.781, -66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.779, -66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.693, -66.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.695, -66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.547, -66.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.616, -66.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.627, -66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.973, -66.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.609, -66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.606, -66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.607, -66.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.594, -66.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.497, -66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.497, -66.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.281, -66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.41, -66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.428, -66.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.252, -66.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.231, -66.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.248, -66.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.225, -66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.212, -66.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.221, -66.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.198, -66.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.211, -66.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.219, -66.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.228, -66.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.218, -66.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.225, -66.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.215, -66.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.2, -66.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.217, -66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.2, -66.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.2, -66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.198, -66.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.183, -66.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.187, -66.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.196, -66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.171, -66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.14, -66.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.106, -66.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.116, -66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.095, -66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.091, -66.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.146, -66.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.957, -66.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.018, -66.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.016, -66.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.019, -66.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.603, -66.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.622, -66.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.645, -66.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.615, -66.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.613, -66.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.611, -66.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.606, -66.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.602, -66.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.59, -66.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.631, -66.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.619, -66.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.619, -66.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.626, -66.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.603, -66.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.606, -66.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.613, -66.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.534, -66.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.577, -66.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.631, -66.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.618, -66.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.58, -66.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.595, -66.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.583, -66.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.593, -66.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.597, -66.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.59, -66.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.585, -66.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.589, -66.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.621, -66.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.589, -66.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.459, -66.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.491, -66.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.462, -66.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.497, -66.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.555, -66.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.496, -66.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.473, -66.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.484, -66.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.454, -66.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.469, -66.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.476, -66.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.417, -66.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.428, -66.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.419, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.39, -66.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.402, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.399, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.4, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.402, -66.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.344, -66.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.383, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.349, -66.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.361, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.394, -66.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.359, -66.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.354, -66.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.353, -66.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.353, -66.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.36, -66.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.35, -66.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.231, -66.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.205, -66.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.199, -66.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.204, -66.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.124, -66.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.155, -66.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.137, -66.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.114, -66.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.1, -66.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.108, -66.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.151, -66.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.125, -66.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.113, -66.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.112, -66.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.123, -66.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.113, -66.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.094, -66.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.113, -66.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.111, -66.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.102, -66.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.736, -66.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.107, -66.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.093, -66.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.112, -66.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.086, -66.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.096, -66.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.081, -66.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.054, -66.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.056, -66.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.846, -66.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.807, -66.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.829, -66.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.807, -66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.847, -66.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.793, -66.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.798, -66.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.831, -66.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.861, -66.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.812, -66.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.809, -66.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.821, -66.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.821, -66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.839, -66.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.838, -66.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.813, -66.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.845, -66.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.841, -66.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.87, -66.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.853, -66.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.879, -66.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.857, -66.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.833, -66.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.864, -66.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.848, -66.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.874, -66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.884, -66.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.869, -66.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.889, -66.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.89, -66.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.909, -66.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.896, -66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.911, -66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.903, -66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.888, -66.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.909, -66.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.593, -66.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.615, -66.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.619, -66.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.597, -66.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.626, -66.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.619, -66.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.609, -66.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.618, -66.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.661, -66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.607, -66.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.612, -66.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.616, -66.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.626, -66.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.625, -66.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.623, -66.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.655, -66.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.641, -66.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.632, -66.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.635, -66.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.634, -66.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.682, -66.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.642, -66.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.641, -66.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.573, -66.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.582, -66.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.595, -66.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.646, -66.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.684, -66.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.647, -66.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.437, -66.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.447, -66.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.469, -66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.474, -66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.467, -66.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.463, -66.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.457, -66.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.478, -66.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.454, -66.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.453, -66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.445, -66.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.456, -66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.436, -66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.439, -66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.449, -66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.425, -66.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.438, -66.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.441, -66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.485, -66.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.441, -66.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.435, -66.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.438, -66.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.415, -66.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.422, -66.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.439, -66.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.418, -66.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.459, -66.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.411, -66.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.403, -66.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.081, -66.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.024, -66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.993, -66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.998, -66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.001, -66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.023, -66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.994, -66.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.996, -66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.987, -66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.972, -66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.981, -66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.981, -66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.972, -66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.945, -66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.963, -66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.948, -66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.962, -66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.976, -66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.959, -66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.96, -66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.952, -66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.941, -66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.949, -66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.928, -66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.472, -65.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.913, -66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.914, -66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.91, -66.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.9, -66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.939, -66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.9, -66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.906, -66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.862, -66.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.88, -66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.418, -65.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.435, -65.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.444, -65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.423, -65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.418, -65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.418, -65.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.413, -65.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.407, -65.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.26, -65.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.372, -65.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.376, -65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.408, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.367, -65.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.389, -65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.41, -65.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.367, -65.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.36, -65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.362, -65.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.355, -65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.382, -65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.348, -65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.379, -65.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.346, -65.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.344, -65.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.341, -65.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.302, -65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.313, -65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.302, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.303, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.242, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.245, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.242, -65.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.243, -65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.248, -65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.258, -65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.249, -65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.245, -65.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.249, -65.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.253, -65.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.251, -65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.253, -65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.241, -65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.252, -65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.253, -65.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.252, -65.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.248, -65.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.255, -65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.252, -65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.259, -65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.234, -65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.241, -65.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.245, -65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.24, -65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.231, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.231, -65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.219, -65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.23, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.209, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.246, -65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.222, -65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.169, -65.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.188, -65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.178, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.173, -65.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.174, -65.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.972, -65.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.031, -65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.033, -65.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.035, -65.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.05, -65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.037, -65.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.049, -65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.04, -65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.045, -65.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.041, -65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.013, -65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.051, -65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.035, -65.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.056, -65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.073, -65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.066, -65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.056, -65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.069, -65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.046, -65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.097, -65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.077, -65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.103, -65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.092, -65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.099, -65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.097, -65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.097, -65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.096, -65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.099, -65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.101, -65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.113, -65.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.101, -65.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.098, -65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.096, -65.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.096, -65.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.095, -65.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.082, -65.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.092, -65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.892, -65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.898, -65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.908, -65.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.885, -65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.897, -65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.897, -65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.895, -65.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.897, -65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.221, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.899, -65.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.9, -65.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.887, -65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.902, -65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.903, -65.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.902, -65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.908, -65.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.902, -65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.901, -65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.897, -65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.897, -65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.88, -65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.889, -65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.896, -65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.909, -65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.9, -65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.87, -65.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.959, -65.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.915, -65.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.903, -65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.905, -65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.905, -65.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.905, -65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.906, -65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.062, -65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.912, -65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.821, -65.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.822, -65.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.944, -65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.829, -65.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.821, -65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.811, -65.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.819, -65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.823, -65.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.823, -65.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.824, -65.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.832, -65.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.824, -65.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.826, -65.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.806, -65.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.841, -65.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.836, -65.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.84, -65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.837, -65.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.805, -65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.836, -65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.822, -65.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.834, -65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.817, -65.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.833, -65.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.818, -65.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.834, -65.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.835, -65.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.838, -65.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.837, -65.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.902, -65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.903, -65.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.009, -65.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.916, -65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.794, -65.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.931, -65.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.92, -65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.961, -65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.919, -65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.973, -65.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.935, -65.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.914, -65.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.93, -65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.913, -65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.907, -65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.903, -65.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.906, -65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.901, -65.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.894, -65.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.954, -65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.881, -65.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.88, -65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.291, -65.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.89, -65.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.826, -65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.856, -65.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.98, -65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.979, -65.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.984, -65.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.981, -65.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.979, -65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.981, -65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.017, -65.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.96, -65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.984, -65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.998, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.989, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.985, -65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.984, -65.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.03, -65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.977, -65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.98, -65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.964, -65.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.977, -65.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.982, -65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.015, -65.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.985, -65.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.957, -65.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.97, -65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.985, -65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.961, -65.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.985, -65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.933, -65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.422, -65.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.423, -65.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.431, -65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.427, -65.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.429, -65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.433, -65.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.499, -65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.475, -65.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.463, -65.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.458, -65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.464, -65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.462, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.46, -65.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.463, -65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.482, -65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.464, -65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.426, -65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.465, -65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.465, -65.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.203, -65.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.491, -65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.487, -65.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.444, -65.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.439, -65.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.429, -65.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.436, -65.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.425, -65.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.435, -65.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.432, -65.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.431, -65.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.394, -65.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.426, -65.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.417, -65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.425, -65.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.436, -65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.421, -65.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.424, -65.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.418, -65.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.421, -65.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.402, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.412, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.391, -65.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.428, -65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.473, -65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.454, -65.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.441, -65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.455, -65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.447, -65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.169, -65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.66, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.438, -65.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.464, -65.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.781, -65.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.457, -65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.484, -65.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.456, -65.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.455, -65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.454, -65.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.433, -65.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.444, -65.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.443, -65.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.397, -65.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.429, -65.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.4, -65.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.4, -65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.418, -65.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.414, -65.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.409, -65.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.439, -65.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.396, -65.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.399, -65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.404, -65.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.395, -65.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.522, -65.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.376, -65.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.384, -65.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.361, -65.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.372, -65.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.185, -65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.36, -65.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.351, -65.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.171, -65.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.176, -65.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.161, -65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.166, -65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.172, -65.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.163, -65.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.171, -65.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.161, -65.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.166, -65.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.158, -65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.147, -65.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.148, -65.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.136, -65.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.14, -65.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.12, -64.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.126, -65.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.125, -64.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.127, -64.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.107, -64.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.052, -64.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.067, -64.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.005, -64.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.013, -64.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.997, -64.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.998, -64.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.975, -64.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.967, -64.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.683, -64.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.69, -64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.688, -64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.678, -64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.695, -64.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.693, -64.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.693, -64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.693, -64.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.722, -65.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.695, -65.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.693, -65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.695, -65.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.698, -65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.695, -65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.69, -65.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.695, -65.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.714, -65.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.708, -65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.695, -65.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.633, -65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.698, -65.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.691, -65.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.69, -65.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.691, -65.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.689, -65.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.686, -65.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.689, -65.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.684, -65.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.749, -65.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.665, -65.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.666, -65.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.659, -65.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.656, -65.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.105, -64.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.118, -64.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.1, -64.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.103, -64.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.093, -64.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.102, -64.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.099, -64.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.082, -64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.093, -64.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.057, -64.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.047, -64.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.049, -64.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.066, -64.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.005, -64.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.97, -64.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.978, -64.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.983, -64.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.894, -64.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.943, -64.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.926, -64.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.952, -64.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.903, -64.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.112, -63.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.138, -63.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.049, -63.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.134, -63.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.04, -63.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.102, -63.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.172, -63.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.088, -63.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.063, -63.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.063, -63.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.016, -63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.027, -63.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.021, -63.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.006, -63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.028, -63.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.971, -63.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.983, -63.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.982, -63.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.98, -63.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.961, -63.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.974, -63.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.934, -63.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.966, -63.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.972, -63.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.986, -63.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.977, -63.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.894, -63.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.449, -63.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.45, -63.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.452, -63.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.437, -63.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.418, -63.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.423, -63.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.419, -63.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.417, -63.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.409, -63.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.397, -63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.43, -63.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.396, -63.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.405, -63.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.401, -63.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.403, -63.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.407, -63.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.406, -63.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.402, -63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.37, -63.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.399, -63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.386, -63.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.397, -63.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.402, -63.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.397, -63.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.324, -63.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.465, -63.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.367, -63.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.379, -63.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.181, -63.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.19, -63.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.219, -63.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.136, -63.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.138, -63.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.13, -63.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.128, -63.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.106, -63.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.098, -63.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.082, -63.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.072, -63.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.97, -63.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.981, -63.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.914, -63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.918, -63.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.925, -63.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.895, -63.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.861, -63.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.805, -63.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.851, -63.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.839, -63.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.75, -63.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.528, -63.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.563, -63.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.568, -63.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.576, -63.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.546, -63.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.573, -63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.57, -63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.571, -63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.591, -63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.575, -63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.569, -63.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.593, -63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.635, -63.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.557, -63.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.565, -63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.589, -63.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.598, -63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.581, -63.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.519, -63.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.603, -63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.611, -63.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.592, -63.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.639, -63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.642, -63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.605, -63.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.604, -63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.839, -63.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.383, -62.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.379, -62.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.373, -62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.372, -62.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.324, -62.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.361, -62.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.319, -62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.357, -62.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.332, -62.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.344, -62.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.126, -62.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.321, -62.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.314, -62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.326, -62.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.293, -62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.269, -62.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.261, -62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.247, -62.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.164, -62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.173, -62.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.165, -62.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.156, -62.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.153, -62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.143, -62.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.15, -62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.168, -62.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.172, -62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.151, -62.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.442, -62.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.339, -62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.359, -62.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.379, -62.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.363, -62.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.34, -62.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.346, -62.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.34, -62.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.347, -62.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.34, -62.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.334, -62.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.341, -62.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.348, -62.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.344, -62.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.242, -62.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.351, -62.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.348, -62.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.346, -62.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.334, -62.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.325, -62.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.344, -62.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.347, -62.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.346, -62.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.962, -62.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.941, -62.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.933, -62.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.909, -62.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.895, -62.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.859, -62.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.829, -62.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.811, -62.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.728, -62.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.756, -62.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.71, -62.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.729, -62.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.711, -62.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.703, -62.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.66, -62.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.655, -62.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.606, -62.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.605, -62.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.582, -62.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.596, -62.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.558, -62.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.496, -62.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.502, -62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.476, -62.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.497, -62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.233, -62.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.29, -62.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.161, -62.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.246, -62.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.175, -62.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.158, -62.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.216, -62.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.103, -62.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.125, -62.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.137, -62.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.149, -62.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.059, -62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.122, -62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.053, -62.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.0, -62.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.015, -62.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.96, -62.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.954, -62.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.936, -62.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.919, -62.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.939, -62.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.914, -62.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.845, -62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.848, -62.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.819, -62.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.81, -62.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.737, -62.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.736, -62.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.748, -62.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.673, -62.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.517, -62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.519, -62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.51, -62.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.518, -62.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.625, -62.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.512, -62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.522, -62.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.526, -62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.533, -62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.532, -62.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.539, -62.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.539, -62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.574, -62.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.545, -62.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.508, -62.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.547, -62.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.569, -62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.55, -62.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.573, -62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.557, -62.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.607, -62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.563, -62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.569, -62.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.564, -62.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.562, -62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.566, -62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.565, -62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.567, -62.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.557, -62.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.569, -62.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.569, -62.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.582, -62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.781, -62.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.574, -62.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.57, -62.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.523, -62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.491, -62.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.498, -62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.487, -62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.508, -62.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.489, -62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.49, -62.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.494, -62.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.495, -62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.512, -62.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.495, -62.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.491, -62.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.465, -62.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.548, -62.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.487, -62.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.443, -62.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.445, -62.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.425, -62.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.467, -62.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.453, -62.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.586, -63.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.619, -63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.567, -63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.577, -63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.559, -63.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.558, -63.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.53, -63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.555, -63.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.489, -63.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.533, -63.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.475, -63.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.481, -63.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.453, -63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.443, -63.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.439, -63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.452, -63.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.427, -63.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.362, -63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.368, -63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.37, -63.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.363, -63.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.428, -63.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.353, -63.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.335, -63.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.306, -63.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.376, -63.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.389, -63.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.393, -63.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.374, -63.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.37, -63.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.373, -63.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.369, -63.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.368, -63.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.409, -63.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.343, -63.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.346, -63.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.418, -63.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.332, -63.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.315, -63.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.32, -63.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.307, -63.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.317, -63.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.337, -63.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.336, -63.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.934, -63.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.012, -63.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.038, -63.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.017, -63.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.014, -63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.007, -63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.954, -63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.0, -63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.932, -63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.968, -63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.907, -63.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.916, -63.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.94, -63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.948, -63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.934, -63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.913, -63.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.92, -63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.89, -63.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.908, -63.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.822, -63.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.851, -63.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.885, -63.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.822, -63.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.455, -63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.444, -63.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.386, -63.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.407, -63.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.374, -63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.074, -63.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.552, -63.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.427, -63.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.364, -63.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.339, -63.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.341, -63.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.042, -63.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.017, -63.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.817, -63.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.853, -63.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.846, -63.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.822, -63.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.836, -63.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.809, -63.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.786, -63.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.804, -63.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.774, -63.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.602, -63.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.723, -63.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.67, -63.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.701, -63.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.667, -63.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.664, -63.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.678, -63.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.619, -63.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.661, -63.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.609, -63.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.641, -63.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.642, -63.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.637, -63.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.654, -63.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.639, -63.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.591, -63.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.599, -63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.593, -63.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.595, -63.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.611, -63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.584, -63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.502, -63.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.503, -63.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.452, -63.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.471, -63.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.44, -63.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.427, -63.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.427, -63.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.351, -63.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.377, -63.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.364, -63.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.357, -63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.21, -63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.315, -63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.806, -63.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.806, -63.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.797, -63.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.801, -63.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.791, -63.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.789, -63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.796, -63.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.777, -63.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.772, -63.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.775, -63.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.767, -63.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.777, -63.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.765, -63.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.857, -63.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.754, -63.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.753, -63.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.742, -63.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.744, -63.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.738, -63.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.705, -63.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.744, -63.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.741, -63.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.733, -63.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.74, -63.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.727, -63.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.754, -63.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.751, -63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.759, -63.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.755, -63.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.285, -63.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.75, -63.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.968, -63.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.98, -63.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.967, -63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.962, -63.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.961, -63.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.928, -63.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.945, -63.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.767, -63.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.905, -63.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.913, -63.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.912, -63.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.907, -63.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.879, -63.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.897, -63.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.901, -63.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.896, -63.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.876, -63.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.874, -63.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.849, -63.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.856, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.815, -63.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.824, -63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.841, -63.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.829, -63.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.805, -63.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.824, -63.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.779, -63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.244, -64.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.212, -64.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.169, -64.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.175, -64.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.145, -64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.166, -64.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.148, -64.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.139, -64.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.135, -64.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.058, -64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.125, -64.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.094, -64.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.099, -64.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.092, -64.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.089, -64.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.912, -64.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.919, -64.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.897, -64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.903, -64.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.816, -64.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.815, -64.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.777, -64.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.735, -64.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.72, -64.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.723, -64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.706, -64.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.78, -64.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.784, -64.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.78, -64.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.781, -64.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.785, -64.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.716, -64.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.783, -64.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.722, -64.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.725, -64.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.699, -64.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.701, -64.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.712, -64.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.7, -64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.7, -64.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.73, -64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.698, -64.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.684, -64.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.631, -64.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.657, -64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.66, -64.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.654, -64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.583, -64.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.585, -64.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.584, -64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.551, -64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.552, -64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.465, -64.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.528, -64.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.515, -64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.494, -64.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 142.508, -64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.111, -64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.094, -64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.104, -64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.091, -64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.074, -64.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.079, -64.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.034, -64.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 141.021, -64.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.984, -64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.993, -64.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.954, -64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.966, -64.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.948, -64.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.956, -64.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.91, -64.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.908, -64.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.893, -64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.88, -64.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.879, -64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.874, -64.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.877, -64.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.866, -64.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.739, -64.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.836, -64.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.802, -64.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.816, -64.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.79, -64.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.777, -64.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.781, -64.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.765, -64.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.775, -64.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.733, -64.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 140.733, -64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.959, -64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.977, -64.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.979, -64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.954, -64.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.939, -64.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.942, -64.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.94, -64.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.926, -64.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.923, -64.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.912, -64.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.911, -64.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.879, -64.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.888, -64.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.867, -64.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.861, -64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.856, -64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.853, -64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.909, -64.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.8, -64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.807, -64.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.775, -64.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.762, -64.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.801, -64.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.724, -64.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.737, -64.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.731, -64.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.734, -64.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.724, -64.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.727, -64.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.694, -64.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.774, -64.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.702, -64.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.696, -64.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.662, -64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.662, -64.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.657, -64.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 139.66, -64.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.62, -64.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.609, -64.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.569, -64.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.574, -64.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.553, -64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.559, -64.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.559, -64.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.544, -64.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.534, -64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.521, -64.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.532, -64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.509, -64.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.497, -64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.489, -64.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.486, -64.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.494, -64.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.476, -64.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.509, -64.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.473, -64.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.425, -64.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.442, -64.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.376, -64.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.384, -64.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.359, -64.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.373, -64.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.354, -64.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.356, -64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.355, -64.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.322, -64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.325, -64.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.325, -64.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 138.265, -64.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.712, -64.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.835, -64.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.816, -64.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.823, -64.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.818, -64.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.815, -64.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.82, -64.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.803, -64.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.801, -64.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.803, -64.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.792, -64.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.803, -64.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.815, -64.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.805, -64.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.825, -64.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.81, -64.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.809, -64.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.806, -64.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.812, -64.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.814, -64.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.828, -64.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.814, -64.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.848, -64.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.832, -64.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.809, -64.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.832, -64.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.806, -64.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.745, -64.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 136.755, -64.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.045, -64.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.022, -64.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.003, -64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.993, -64.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 135.047, -64.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.89, -64.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.895, -64.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.758, -64.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.83, -64.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.707, -64.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.729, -64.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.683, -64.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.697, -64.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.634, -64.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.649, -64.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.661, -64.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.658, -64.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.645, -64.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.664, -64.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.64, -64.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.645, -64.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.64, -64.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.643, -64.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.642, -64.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.668, -64.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.642, -64.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.648, -64.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.644, -64.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.636, -64.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.63, -64.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.629, -64.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.585, -64.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.568, -64.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.59, -64.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.512, -64.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.5, -64.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.381, -64.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.469, -64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.445, -64.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.459, -64.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.279, -64.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.3, -64.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.206, -64.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.23, -64.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.171, -64.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.175, -64.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.132, -64.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.191, -64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.089, -64.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.024, -64.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 134.018, -64.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.961, -64.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.969, -64.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.912, -64.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.925, -64.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.886, -64.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.882, -64.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.876, -64.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 133.852, -64.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.008, -64.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.02, -64.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.982, -64.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.0, -64.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.993, -64.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.004, -64.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.987, -64.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.976, -64.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.97, -64.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.974, -64.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.951, -64.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.736, -64.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.788, -64.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.737, -64.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.738, -64.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.698, -64.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.706, -64.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.773, -64.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.536, -64.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.533, -64.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.547, -64.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.504, -64.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.383, -64.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.438, -64.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.291, -64.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.304, -64.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.377, -64.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.23, -64.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.357, -64.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.362, -64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.357, -64.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.346, -64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.334, -64.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.341, -64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.316, -64.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.327, -64.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.385, -63.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.318, -64.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.331, -64.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.33, -64.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.328, -64.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.345, -64.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.332, -64.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.367, -64.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.333, -64.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.311, -64.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.368, -64.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.331, -64.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.286, -64.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.327, -64.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.285, -64.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.327, -64.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.303, -64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.325, -64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.325, -64.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.324, -64.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.322, -64.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.319, -64.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.328, -64.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.316, -64.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.292, -64.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.313, -64.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.384, -63.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.415, -63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.418, -63.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.417, -63.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.423, -63.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.423, -63.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.421, -63.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.427, -63.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.454, -63.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.452, -63.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.471, -63.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.467, -63.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.484, -63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.472, -63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.452, -63.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.483, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.45, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.489, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.526, -63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.509, -63.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.502, -63.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.512, -63.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.579, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.516, -63.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.525, -63.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.517, -63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.494, -63.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.491, -63.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.481, -63.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.488, -63.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.479, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.477, -63.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.463, -63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.473, -63.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.465, -63.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.469, -63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.626, -63.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.661, -63.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.634, -63.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.622, -63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.633, -63.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.744, -63.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.618, -63.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.642, -63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.394, -63.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.655, -63.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.651, -63.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.645, -63.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.655, -63.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.634, -63.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.678, -63.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.664, -63.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.684, -63.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.637, -63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.695, -63.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.713, -63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.71, -63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.706, -63.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.721, -63.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.724, -63.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.723, -63.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.757, -63.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.75, -63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.978, -63.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.956, -63.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.958, -63.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.957, -63.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.024, -63.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.966, -63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.972, -63.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.977, -63.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.979, -63.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.989, -63.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.985, -63.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.989, -63.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.994, -63.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.999, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.993, -63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.992, -63.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.019, -63.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.036, -63.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.023, -63.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.022, -63.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.024, -63.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.118, -63.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.007, -63.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.025, -63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.009, -63.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.019, -63.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.998, -63.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.015, -63.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.0, -63.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.999, -63.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.007, -63.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.008, -63.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.007, -63.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.005, -63.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.933, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.247, -63.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.213, -63.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.22, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.224, -63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.224, -63.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.226, -63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.246, -63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.239, -63.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.249, -63.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.25, -63.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.257, -63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.251, -63.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.251, -63.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.234, -63.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.254, -63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.261, -63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.274, -63.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.268, -63.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.293, -63.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.254, -63.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.264, -63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.259, -63.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.295, -63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.304, -63.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.303, -63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.321, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.316, -63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.613, -63.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.64, -63.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.678, -63.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.641, -63.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.635, -63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.639, -63.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.653, -63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.635, -63.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.624, -63.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.626, -63.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.62, -63.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.615, -63.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.6, -63.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.614, -63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.609, -63.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.613, -63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.636, -63.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.605, -63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.594, -63.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.591, -63.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.577, -63.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.589, -63.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.564, -63.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.58, -63.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.587, -63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.578, -63.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.612, -63.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.644, -63.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.606, -63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.592, -63.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.5, -63.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.601, -63.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.599, -63.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.799, -63.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.802, -63.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.844, -63.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.827, -63.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.864, -63.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.844, -63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.853, -63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.855, -63.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.834, -63.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.865, -63.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.828, -63.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.844, -63.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.875, -63.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.889, -63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.881, -63.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.866, -63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.881, -63.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.884, -63.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.882, -63.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.886, -63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.885, -63.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.864, -63.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.868, -63.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.88, -63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.875, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.878, -63.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.875, -63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.873, -63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.87, -63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.872, -63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.863, -63.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.869, -63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.88, -63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.912, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.9, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.895, -63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.909, -63.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.923, -63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.956, -63.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.933, -63.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.929, -63.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.945, -63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.953, -63.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.959, -63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.958, -63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.989, -63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.982, -63.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.981, -63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.983, -63.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.972, -63.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.985, -63.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.986, -63.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.992, -63.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.959, -63.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.005, -63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.011, -63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.998, -63.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.015, -63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.027, -63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.022, -63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.85, -63.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.865, -63.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.788, -63.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.852, -63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.865, -63.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.937, -63.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.864, -63.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.864, -63.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.873, -63.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.861, -63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.848, -63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.86, -63.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.825, -63.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.845, -63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.849, -63.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.842, -63.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.867, -63.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.836, -63.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.817, -63.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.828, -63.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.83, -63.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.834, -63.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.825, -63.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.801, -63.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.822, -63.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.823, -63.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.781, -63.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.816, -63.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.662, -63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.66, -63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.663, -63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.659, -63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.635, -63.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.653, -63.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.641, -63.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.646, -63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.677, -63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.645, -63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.715, -63.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.652, -63.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.651, -63.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.656, -63.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.649, -63.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.656, -63.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.668, -63.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.683, -63.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.67, -63.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.672, -63.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.678, -63.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.679, -63.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.76, -63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.719, -63.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.9, -63.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.902, -63.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.922, -63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.919, -63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.961, -63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.925, -63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.943, -63.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.931, -63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.918, -63.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.941, -63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.946, -63.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.943, -63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.068, -63.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.939, -63.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.041, -63.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.957, -63.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.95, -63.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.631, -63.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.951, -63.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.952, -63.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.226, -63.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.191, -63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.192, -63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.192, -63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.192, -63.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.191, -63.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.174, -63.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.178, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.184, -63.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.172, -63.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.139, -63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.17, -63.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.138, -63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.168, -63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.162, -63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.17, -63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.173, -63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.172, -63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.026, -63.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.177, -63.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.106, -63.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.179, -63.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.22, -63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.194, -63.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.167, -63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.206, -63.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.204, -63.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.21, -63.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 132.21, -63.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.115, -63.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.116, -63.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.092, -63.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.091, -63.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.994, -63.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.048, -63.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.871, -63.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.03, -63.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.72, -63.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.94, -63.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.975, -63.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.147, -64.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.939, -63.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.955, -63.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.924, -63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.912, -63.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.9, -63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.907, -63.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.028, -63.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.918, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.893, -63.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.921, -63.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.924, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.95, -63.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.967, -63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.973, -63.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.953, -63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.949, -63.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.976, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.958, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.956, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.002, -63.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.959, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.991, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.96, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.953, -63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.961, -63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.001, -63.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.993, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.991, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.007, -63.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.006, -63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.037, -63.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.067, -63.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.028, -63.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.068, -63.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.082, -63.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.074, -63.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.087, -63.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.077, -63.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.089, -63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.08, -63.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.045, -63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.082, -63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.117, -63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.092, -63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.118, -63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.093, -63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.095, -63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.117, -63.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.124, -63.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.114, -63.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.069, -63.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.235, -63.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.204, -63.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.285, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 131.243, -63.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 130.96, -64.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.499, -66.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.521, -66.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.509, -66.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.541, -66.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.476, -66.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.525, -66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.526, -66.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.524, -66.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.504, -66.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.526, -66.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.535, -66.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.535, -66.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.621, -66.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.556, -66.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.559, -66.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.454, -66.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.576, -66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.57, -66.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.578, -66.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.576, -66.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.589, -66.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.559, -66.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.578, -66.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.569, -66.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.579, -66.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.573, -66.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.547, -66.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.581, -66.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.579, -66.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.561, -66.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.585, -66.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.555, -66.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.558, -66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.572, -66.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.549, -66.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.548, -66.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.55, -66.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.552, -66.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.545, -66.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.53, -66.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.538, -66.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.532, -66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.537, -66.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.551, -66.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.538, -66.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.544, -66.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.542, -66.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.552, -66.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.544, -66.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.526, -66.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.546, -66.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.544, -66.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.229, -66.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.544, -66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.541, -66.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.538, -66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.541, -66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.536, -66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.54, -66.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.537, -66.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.099, -66.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.114, -66.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.088, -66.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.135, -66.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.131, -66.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.16, -66.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.144, -66.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.143, -66.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.162, -66.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.168, -66.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.163, -66.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.227, -66.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.221, -66.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.219, -66.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.223, -66.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.246, -66.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.241, -66.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.267, -66.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.261, -66.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.257, -66.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.251, -66.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.259, -66.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.304, -66.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.295, -66.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.305, -66.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.298, -66.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.313, -66.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.314, -66.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.318, -66.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.324, -66.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.343, -66.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.206, -66.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.376, -66.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.472, -66.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.617, -66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.621, -66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.614, -66.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.65, -66.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.639, -66.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.656, -66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.649, -66.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.668, -66.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.668, -66.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.682, -66.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.677, -66.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.68, -66.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.691, -66.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.686, -66.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.691, -66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.694, -66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.707, -66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.707, -66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.723, -66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.728, -66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.721, -66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.725, -66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.729, -66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.725, -66.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.744, -66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.746, -66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.759, -66.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.787, -66.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.785, -66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.649, -65.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.648, -65.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.638, -65.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.648, -65.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.669, -65.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.657, -65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.651, -65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.67, -65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.668, -65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.678, -65.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.673, -65.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.676, -65.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.673, -65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.674, -65.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.672, -65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.676, -65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.681, -65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.682, -65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.691, -65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.691, -65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.698, -65.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.693, -65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.7, -65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.698, -65.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.696, -65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.64, -65.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.708, -65.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.71, -65.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.72, -65.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.715, -65.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.496, -65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.723, -65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.723, -65.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.752, -65.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.726, -65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.722, -65.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.593, -65.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.835, -65.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.834, -65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.823, -65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.835, -65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.853, -65.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.848, -65.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.863, -65.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.887, -65.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.916, -65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.904, -65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.919, -65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.916, -65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.921, -65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.918, -65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.914, -65.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.919, -65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.921, -65.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.919, -65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.91, -66.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.901, -66.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.89, -66.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.893, -66.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.852, -66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.871, -66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.856, -66.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.867, -66.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.867, -66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.863, -66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.863, -66.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.858, -66.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.861, -66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.833, -66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.809, -66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.827, -66.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.835, -66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.798, -66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.846, -66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.789, -66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.778, -66.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.781, -66.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.773, -66.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.757, -66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.774, -66.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.224, -66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.243, -66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.225, -66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.227, -66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.219, -66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.222, -66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.207, -66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.23, -66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.268, -66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.219, -66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.227, -66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.215, -66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.209, -66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.203, -66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.209, -66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.2, -66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.21, -66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.217, -66.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.21, -66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.214, -66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.21, -66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.203, -66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.208, -66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.197, -66.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.21, -66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.195, -66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.217, -66.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.175, -66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.164, -66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.153, -66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.44, -66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.157, -66.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.143, -66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.116, -66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.118, -66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.116, -66.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.112, -66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.026, -66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.032, -66.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.266, -65.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.268, -65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.25, -65.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.261, -65.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.264, -65.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.271, -65.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.263, -65.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.257, -65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.325, -65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.275, -65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.272, -65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.27, -65.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.268, -65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.268, -65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.267, -65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.256, -65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.263, -65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.264, -65.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.26, -65.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.277, -65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.257, -65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.251, -65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.254, -65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.26, -65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.246, -65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.23, -65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.244, -65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.212, -65.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.222, -65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.24, -65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.221, -65.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.239, -65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.283, -65.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.238, -65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.266, -65.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.237, -65.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.247, -65.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.235, -65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.334, -66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.218, -65.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.222, -65.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.217, -65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.935, -65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.208, -65.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.215, -65.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.237, -66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.244, -66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.231, -66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.252, -66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.215, -66.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.233, -66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.256, -66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.268, -66.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.259, -66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.262, -66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.259, -66.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.251, -66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.258, -66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.255, -66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.25, -66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.262, -66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.271, -66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.272, -66.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.267, -66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.282, -66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.286, -66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.283, -66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.3, -66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.285, -66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.316, -66.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.28, -66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.277, -66.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.276, -66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.274, -66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.221, -66.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.274, -66.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.267, -66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.285, -66.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.259, -66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.26, -66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.742, -66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.744, -66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.748, -66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.733, -66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.747, -66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.758, -66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.751, -66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.746, -66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.749, -66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.743, -66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.724, -66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.74, -66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.728, -66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.739, -66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.752, -66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.754, -66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.762, -66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.759, -66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.761, -66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.769, -66.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.768, -66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.709, -66.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.772, -66.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.774, -66.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.761, -66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.784, -66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.781, -66.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.784, -66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.782, -66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.865, -66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.768, -66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.783, -66.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.784, -66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.694, -66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.691, -66.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.674, -66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.683, -66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.685, -66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.682, -66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.686, -66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.68, -66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.682, -66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.684, -66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.683, -66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.704, -66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.69, -66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.684, -66.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.688, -66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.683, -66.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.693, -66.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.672, -66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.68, -66.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.675, -66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.678, -66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.678, -66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.685, -66.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.692, -66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.696, -66.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.695, -66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.707, -66.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.696, -66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.714, -66.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.7, -66.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.705, -66.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.562, -66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.56, -66.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.534, -66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.541, -66.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.542, -66.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.537, -66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.54, -66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.539, -66.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.525, -66.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.531, -66.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.524, -66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.504, -66.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.517, -66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.501, -66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.503, -66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.498, -66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.479, -66.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.495, -66.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.458, -66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.472, -66.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.451, -66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.454, -66.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.452, -66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.453, -66.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.457, -66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.453, -66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.46, -66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.437, -66.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.451, -66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.436, -66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.45, -66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.446, -66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.45, -66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.463, -66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.454, -66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.45, -66.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.549, -66.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.354, -66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.342, -66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.313, -66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.31, -66.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.34, -66.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.293, -66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.297, -66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.295, -66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.295, -66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.291, -66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.289, -66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.291, -66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.281, -66.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.284, -66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.278, -66.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.252, -66.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.231, -66.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.245, -66.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.252, -66.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.242, -66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.25, -66.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.236, -66.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.097, -66.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.229, -66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.186, -66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.231, -66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.14, -65.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.243, -66.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.231, -66.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.226, -66.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.232, -66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.161, -66.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.22, -66.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.582, -66.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.773, -66.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.776, -66.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.764, -66.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.772, -66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.774, -66.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.771, -66.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.772, -66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.019, -66.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.782, -66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.785, -66.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.778, -66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.773, -66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.788, -66.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.799, -66.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.791, -66.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.794, -66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.783, -66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.783, -66.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.774, -66.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.775, -66.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.763, -66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.79, -66.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.765, -66.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.765, -66.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.746, -66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.745, -66.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.732, -66.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.734, -66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.753, -66.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.733, -66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.793, -66.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.726, -66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.727, -66.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.725, -66.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.733, -66.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.752, -66.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.73, -66.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.751, -66.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.757, -66.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.759, -66.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.769, -66.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.76, -66.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.782, -66.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.808, -66.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.779, -66.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.776, -66.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.793, -66.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.792, -66.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.791, -66.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.796, -66.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.796, -66.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.797, -66.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.815, -66.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.802, -66.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.806, -66.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.803, -66.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.817, -66.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.804, -66.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.805, -66.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.919, -66.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.816, -66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.794, -66.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.805, -66.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.788, -66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.78, -66.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.783, -66.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.683, -66.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.685, -66.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.687, -66.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.682, -66.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.69, -66.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.699, -66.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.691, -66.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.681, -66.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.702, -66.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.699, -66.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.695, -66.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.702, -66.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.702, -66.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.703, -66.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.71, -66.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.718, -66.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.71, -66.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.705, -66.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.701, -66.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.729, -66.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.695, -66.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.7, -66.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.705, -66.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.697, -66.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.688, -66.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.696, -66.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.999, -66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.137, -66.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.114, -66.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.105, -66.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.112, -66.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.109, -66.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.11, -66.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.088, -66.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.123, -66.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.121, -66.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.119, -66.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.122, -66.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.141, -66.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.133, -66.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.137, -66.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.135, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.138, -66.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.135, -66.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.138, -66.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.135, -66.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.122, -66.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.129, -66.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.133, -66.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.128, -66.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.114, -66.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.125, -66.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.126, -66.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.125, -66.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.128, -66.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.124, -66.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.105, -66.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.123, -66.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.106, -66.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.122, -66.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.072, -66.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.067, -66.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.129, -66.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.132, -66.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.129, -66.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.134, -66.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.74, -66.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.07, -66.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.037, -66.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.04, -66.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.037, -66.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.033, -66.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.038, -66.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.053, -66.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.059, -66.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.072, -66.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.063, -66.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.095, -66.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.084, -66.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.099, -66.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.093, -66.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.097, -66.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.098, -66.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.101, -66.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.1, -66.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.105, -66.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.112, -66.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.116, -66.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.113, -66.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.128, -66.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.123, -66.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.122, -66.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.13, -66.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.137, -66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.135, -66.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.151, -66.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.146, -66.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.143, -66.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.145, -66.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.123, -66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.135, -66.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.141, -66.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.024, -66.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.14, -66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.916, -65.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.914, -65.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.904, -65.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.908, -65.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.901, -65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.908, -65.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.916, -65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.916, -65.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.924, -65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.931, -65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.932, -65.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.922, -65.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.937, -65.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.956, -65.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.942, -65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.934, -65.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.938, -65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.95, -65.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.938, -65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.959, -65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.938, -65.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.961, -65.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.939, -65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.017, -65.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.94, -65.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.068, -66.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.003, -65.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.946, -65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.959, -65.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.961, -65.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.992, -65.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.995, -65.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.994, -65.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.996, -65.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.028, -65.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.023, -65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.031, -65.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.031, -65.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.043, -65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.046, -65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.074, -65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.068, -65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.08, -65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.069, -65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.071, -65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.064, -65.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.077, -65.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.078, -65.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.08, -65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.065, -65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.086, -65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.086, -65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.099, -65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.087, -65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.089, -65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.089, -65.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.094, -65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.09, -65.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.117, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.103, -65.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.102, -65.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.15, -65.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.121, -65.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.128, -65.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.132, -65.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.136, -65.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.138, -65.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.045, -65.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.183, -65.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.243, -65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.237, -65.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.232, -65.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.25, -65.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.268, -65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.295, -65.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.272, -65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.306, -65.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.308, -65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.343, -65.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.329, -65.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.341, -65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.333, -65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.31, -65.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.333, -65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.384, -65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.402, -65.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.409, -65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.405, -65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.996, -65.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.0, -65.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.984, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.986, -65.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.978, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.97, -65.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.976, -65.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.976, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.96, -65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.965, -65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.971, -65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.963, -65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.993, -65.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.961, -65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.962, -65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.959, -65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.961, -65.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.906, -65.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.963, -65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.95, -65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.94, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.94, -65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.942, -65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.926, -65.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.941, -65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.895, -65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.94, -65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.84, -65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.946, -65.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.956, -65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.948, -65.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.944, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.947, -65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.965, -65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.947, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.968, -65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.947, -65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.745, -66.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.782, -66.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.781, -66.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.951, -66.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.797, -66.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.799, -66.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.971, -66.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.807, -66.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.78, -66.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.81, -66.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.809, -66.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.814, -66.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.073, -66.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.911, -66.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.819, -66.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.824, -66.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.824, -66.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.823, -66.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.134, -66.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.781, -66.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.794, -66.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.817, -66.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.79, -66.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.933, -66.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.823, -66.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.888, -66.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.822, -66.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.698, -66.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.811, -66.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.833, -66.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.804, -66.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.797, -66.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.801, -66.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.927, -66.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.924, -66.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.987, -66.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.938, -66.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.956, -66.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.978, -66.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.037, -66.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.912, -66.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.664, -66.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.918, -66.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.922, -66.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.59, -66.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.953, -66.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.679, -66.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.919, -66.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.909, -66.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.895, -66.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.906, -66.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.908, -66.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.905, -66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.89, -66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.902, -66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.906, -66.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.911, -66.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.016, -66.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.943, -66.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.958, -66.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.962, -66.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.037, -66.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.98, -66.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.001, -66.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.002, -66.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.13, -66.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.079, -66.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.049, -65.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.036, -65.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.058, -65.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.037, -65.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.977, -65.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.159, -65.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.04, -65.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.085, -65.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.039, -65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.041, -65.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.038, -65.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.084, -65.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.038, -65.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.071, -65.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.039, -65.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.039, -65.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.074, -65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.063, -65.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.019, -65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.069, -65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.086, -65.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.081, -65.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.122, -65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.136, -65.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.946, -65.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.942, -65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.934, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.939, -65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.948, -65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.941, -65.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.937, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.936, -65.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.963, -65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.96, -65.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.961, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.965, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.991, -65.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.987, -65.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.983, -65.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.969, -65.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.991, -65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.992, -65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.037, -65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.005, -65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.0, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.013, -65.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.961, -65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.987, -65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.959, -65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.978, -65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.944, -65.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.98, -65.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.971, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.999, -65.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.973, -65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.956, -65.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.0, -65.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.998, -65.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.187, -65.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.176, -65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.164, -65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.175, -65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.177, -65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.175, -65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.151, -65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.165, -65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.166, -65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.167, -65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.176, -65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.15, -65.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.176, -65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.185, -65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.147, -65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.204, -65.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.195, -65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.158, -65.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.165, -65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.147, -65.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.155, -65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.161, -65.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.154, -65.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.166, -65.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.15, -65.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.139, -65.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.149, -65.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.161, -65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.094, -65.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.15, -65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.234, -65.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.167, -65.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.173, -65.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.172, -65.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.328, -65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.195, -65.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.201, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.206, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.201, -65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.193, -65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.194, -65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.187, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.191, -65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.17, -65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.169, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.156, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.155, -65.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.146, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.153, -65.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.119, -65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.121, -65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.183, -65.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.135, -65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.13, -65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.151, -65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.072, -65.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.139, -65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.132, -65.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.072, -65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.131, -65.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.134, -65.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.078, -65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.111, -65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.112, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.107, -65.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.127, -65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.085, -65.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.065, -65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.066, -65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.662, -66.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.62, -66.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.628, -66.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.763, -66.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.571, -66.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.435, -66.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.494, -66.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.524, -66.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.763, -66.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.536, -66.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.509, -66.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.432, -66.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.507, -66.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.533, -66.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.52, -66.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.632, -66.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.549, -66.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.558, -66.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.562, -66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.561, -66.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.576, -66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.582, -66.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.629, -66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.619, -66.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.635, -66.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.631, -66.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.697, -66.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.713, -66.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.689, -66.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.661, -66.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.66, -66.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.651, -66.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.65, -66.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.63, -66.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.647, -66.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.664, -66.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.661, -66.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.664, -66.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.664, -66.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.655, -66.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.673, -66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.681, -66.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.686, -66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.699, -66.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.687, -66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.674, -66.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.692, -66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.701, -66.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.696, -66.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.692, -66.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.698, -66.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.66, -66.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.68, -66.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.734, -66.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.678, -66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.673, -66.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.672, -66.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.667, -66.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.671, -66.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.671, -66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.671, -66.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.686, -66.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.672, -66.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.693, -66.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.672, -66.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.656, -66.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.673, -66.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.859, -66.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.737, -66.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.706, -66.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.726, -66.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.727, -66.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.729, -66.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.754, -66.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.731, -66.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.75, -66.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.733, -66.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.718, -66.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.734, -66.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.774, -66.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.735, -66.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.738, -66.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.754, -66.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.746, -66.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.748, -66.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.742, -66.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.749, -66.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.72, -66.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.778, -66.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.791, -66.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.783, -66.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.771, -66.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.795, -66.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.807, -66.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.814, -66.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.83, -66.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.821, -66.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.845, -66.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.849, -66.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.978, -66.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.857, -66.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.929, -66.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.003, -66.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.999, -66.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.005, -66.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.016, -66.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.011, -66.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.021, -66.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.012, -66.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.016, -66.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.388, -66.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.025, -66.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.034, -66.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.075, -66.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.052, -66.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.05, -66.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.06, -66.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.057, -66.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.061, -66.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.064, -66.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.078, -66.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.078, -66.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.127, -66.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.084, -66.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.055, -66.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.089, -66.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.094, -66.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.094, -66.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.064, -66.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.095, -66.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.097, -66.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.102, -66.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.125, -66.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.112, -66.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.132, -66.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.113, -66.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.122, -66.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.124, -66.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.123, -66.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.427, -66.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.424, -66.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.426, -66.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.429, -66.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.426, -66.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.425, -66.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.439, -66.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.556, -66.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.516, -66.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.517, -66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.539, -66.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.565, -66.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.545, -66.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.565, -66.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.552, -66.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.591, -66.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.554, -66.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.492, -66.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.539, -66.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.485, -66.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.521, -66.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.41, -66.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.482, -66.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.491, -66.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.435, -66.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.479, -66.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.4, -66.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.473, -66.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.303, -66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.195, -66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.438, -66.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.367, -66.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.868, -65.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.339, -66.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.233, -66.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.349, -66.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.268, -66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.211, -66.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.342, -66.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.081, -66.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.08, -66.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.031, -66.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.03, -66.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.916, -66.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.898, -66.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.826, -66.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.893, -66.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.85, -66.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.89, -66.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.191, -66.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.84, -66.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.958, -66.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.888, -66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.801, -66.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.737, -66.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.581, -66.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.728, -66.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.688, -66.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.687, -66.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.685, -66.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.659, -66.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.686, -66.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.674, -66.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.632, -66.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.645, -66.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.722, -66.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.604, -66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.606, -66.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.844, -66.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.814, -66.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.81, -66.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.797, -66.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.792, -66.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.818, -66.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.789, -66.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.804, -66.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.838, -66.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.806, -66.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.833, -66.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.812, -66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.829, -66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.813, -66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.825, -66.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.811, -66.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.797, -66.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.811, -66.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.809, -66.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.796, -66.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.807, -66.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.801, -66.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.801, -66.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.81, -66.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.798, -66.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.753, -66.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.778, -66.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.776, -66.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.774, -66.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.747, -66.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.773, -66.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.193, -66.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.874, -66.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.771, -66.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.763, -66.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.781, -66.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.759, -66.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.681, -66.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.71, -66.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.705, -66.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.726, -66.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.657, -66.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.746, -66.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.667, -66.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.731, -66.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.738, -66.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.735, -66.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.76, -66.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.735, -66.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.738, -66.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.76, -66.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.701, -66.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.704, -66.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.697, -66.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.713, -66.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.695, -66.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.659, -66.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.679, -66.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.76, -66.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.707, -66.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.692, -66.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.75, -66.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.766, -66.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.714, -66.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.697, -66.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.662, -66.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.699, -66.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.733, -66.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.649, -66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.699, -66.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.606, -66.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.858, -67.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.614, -66.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.628, -66.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.6, -66.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.633, -66.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.659, -66.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.628, -66.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.698, -66.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.628, -66.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.584, -66.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.657, -66.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.626, -66.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.623, -66.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.625, -66.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.689, -66.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.621, -66.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.621, -66.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.647, -66.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.617, -66.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.614, -66.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.616, -66.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.639, -66.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.615, -66.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.617, -66.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.614, -66.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.641, -66.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.612, -66.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.589, -66.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.612, -66.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.091, -66.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.612, -66.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.613, -66.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.668, -66.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.633, -66.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.614, -66.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.512, -66.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.44, -66.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.445, -66.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.42, -66.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.439, -66.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.447, -67.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.418, -67.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.438, -66.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.484, -67.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.456, -67.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.439, -67.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.41, -67.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.458, -67.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.438, -67.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.458, -67.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.486, -67.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.448, -67.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.453, -67.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.527, -67.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.474, -67.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.434, -67.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.45, -67.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.457, -67.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.525, -67.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.45, -67.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.555, -67.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.426, -67.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.457, -67.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.453, -67.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.458, -67.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.488, -67.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.463, -67.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.445, -67.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.637, -67.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.638, -67.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.65, -67.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.639, -67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.632, -67.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.618, -67.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.62, -67.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.59, -67.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.611, -67.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.607, -67.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.609, -67.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.654, -67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.54, -67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.596, -67.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.599, -67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.598, -67.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.609, -67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.594, -67.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.61, -67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.589, -67.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.586, -67.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.646, -67.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.584, -67.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.587, -67.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.495, -67.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.695, -67.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.465, -67.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.481, -67.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.551, -67.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.561, -67.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.559, -67.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.562, -67.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.635, -67.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.583, -67.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.584, -67.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.585, -67.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.578, -67.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.588, -67.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.621, -67.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.606, -67.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.614, -67.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.61, -67.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.633, -67.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.634, -67.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.644, -67.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.636, -67.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.665, -67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.637, -67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.644, -67.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.641, -67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.619, -67.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.642, -67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.643, -67.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.638, -67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.675, -67.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.576, -67.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.636, -67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.587, -67.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.634, -67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.651, -67.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.852, -67.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.842, -67.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.019, -67.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.846, -67.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.951, -67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.972, -67.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.987, -67.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.843, -67.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.853, -67.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.832, -67.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.85, -67.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.831, -67.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.853, -67.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.82, -67.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.861, -67.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.897, -67.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.889, -67.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.785, -67.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.937, -67.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.961, -67.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.001, -67.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.968, -67.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.888, -67.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.997, -67.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.032, -67.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.05, -67.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.158, -67.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.1, -67.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.095, -67.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.096, -67.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.787, -67.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.117, -67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.367, -67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.416, -67.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.371, -67.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.419, -67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.507, -67.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.431, -67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.435, -67.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.461, -67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.439, -67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.357, -67.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.443, -67.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.464, -67.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.439, -67.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.413, -67.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.432, -67.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.4, -67.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.458, -67.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.382, -67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.428, -67.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.433, -67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.339, -67.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.426, -67.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.492, -67.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.445, -67.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.456, -67.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.447, -67.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.447, -67.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.448, -67.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.39, -67.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.474, -67.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.357, -67.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.43, -67.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.445, -67.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.478, -67.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.447, -67.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.428, -67.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.595, -67.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.423, -67.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.541, -67.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.515, -67.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.537, -67.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.528, -67.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.402, -67.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.551, -67.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.548, -67.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.47, -67.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.6, -67.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.573, -67.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.552, -67.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.578, -67.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.505, -67.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.581, -67.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.404, -67.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.584, -67.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.859, -66.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.838, -66.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.831, -66.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.788, -66.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.818, -66.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.828, -66.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.785, -66.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.817, -66.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.783, -66.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.75, -66.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.779, -66.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.766, -66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.759, -66.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.732, -66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.751, -66.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.707, -66.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.724, -66.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.653, -66.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.696, -66.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.723, -66.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.681, -66.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.692, -66.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.702, -66.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.686, -66.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.701, -66.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.692, -66.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.74, -66.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.704, -66.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.696, -66.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.705, -66.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.578, -66.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.665, -66.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.656, -66.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.706, -66.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.591, -66.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.703, -66.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.87, -65.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.914, -65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.925, -65.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.908, -65.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.944, -65.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.907, -65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.971, -65.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.907, -65.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.918, -65.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.904, -65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.813, -65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.903, -65.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.873, -65.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.916, -65.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.968, -65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.94, -65.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.998, -65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.945, -65.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.07, -65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.956, -65.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.972, -65.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.057, -65.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.025, -65.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.021, -65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.956, -65.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.033, -65.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.998, -65.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.076, -65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.044, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.356, -65.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.128, -65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.121, -65.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.166, -65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.129, -65.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.776, -65.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.742, -65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.645, -65.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.71, -65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.67, -65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.685, -65.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.67, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.683, -65.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.694, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.674, -65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.666, -65.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.67, -65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.197, -65.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.554, -65.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.518, -65.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.529, -65.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.603, -65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.395, -65.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.466, -65.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.403, -65.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.374, -65.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.356, -65.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.448, -65.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.324, -65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.273, -65.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.292, -65.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.273, -65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.285, -65.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.246, -65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.261, -65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.278, -65.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.255, -65.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.251, -65.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.233, -65.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.206, -65.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.222, -65.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.294, -65.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.471, -65.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.237, -65.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.218, -65.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.827, -64.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.094, -65.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.041, -65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.024, -65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.668, -66.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.052, -65.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.034, -65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.932, -65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.089, -65.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.029, -65.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.007, -65.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.007, -65.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.001, -65.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.005, -65.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.595, -65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.992, -65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.037, -65.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.989, -65.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.882, -65.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.954, -65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.024, -65.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.937, -65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.937, -65.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.958, -65.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.968, -65.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.95, -65.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.898, -65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.852, -65.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.916, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.895, -65.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.844, -65.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.864, -65.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.822, -65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.861, -65.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.863, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.835, -65.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.848, -65.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.856, -65.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.843, -65.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.875, -65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.841, -65.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.844, -65.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.828, -65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.817, -65.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.826, -65.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.891, -65.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.682, -65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.832, -65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.812, -65.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.993, -65.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.79, -65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.832, -65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.804, -65.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.783, -65.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.776, -65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.779, -65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.317, -65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.858, -65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.828, -65.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.84, -65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.863, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.842, -65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.833, -65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.843, -65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.835, -65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.843, -65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.872, -65.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.846, -65.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.094, -65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.87, -65.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.85, -65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.83, -65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.712, -65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.867, -65.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.85, -65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.924, -65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.871, -65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.846, -65.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.813, -65.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.834, -65.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.88, -65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.93, -65.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.822, -65.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.823, -65.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.844, -65.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.816, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.387, -65.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.845, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.319, -65.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.639, -65.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.614, -65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.605, -65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.602, -65.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.592, -65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.58, -65.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.562, -65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.575, -65.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.603, -65.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.556, -65.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.552, -65.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.526, -65.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.493, -65.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.491, -65.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.488, -65.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.49, -65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.483, -65.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.405, -65.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.456, -65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.434, -65.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.45, -65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.417, -65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.44, -65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.434, -65.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.439, -65.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.442, -65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.439, -65.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.393, -65.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.459, -65.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.442, -65.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.429, -65.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.441, -65.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.394, -65.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.434, -65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.419, -65.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.425, -65.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.385, -65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.423, -65.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.22, -65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.241, -65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.222, -65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.229, -65.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.255, -65.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.24, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.222, -65.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.178, -65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.183, -65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.123, -65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.176, -65.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.155, -65.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.163, -65.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.148, -65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.143, -65.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.127, -65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.173, -65.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.131, -65.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.13, -65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.124, -65.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.129, -65.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.178, -65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.175, -65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.15, -65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.168, -65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.152, -65.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.153, -65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.16, -65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.163, -65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.168, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.218, -65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.207, -65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.218, -65.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.222, -65.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.254, -65.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.233, -65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.294, -65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.272, -65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.285, -65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.286, -65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.223, -65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.303, -65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.025, -65.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.091, -65.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.059, -65.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.088, -65.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.088, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.078, -65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.078, -65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.075, -65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.061, -65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.062, -65.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.051, -65.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.976, -65.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.04, -65.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.951, -65.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.027, -65.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.996, -65.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.004, -65.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.434, -65.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.017, -65.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.998, -65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.96, -65.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.987, -65.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.978, -65.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.984, -65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.006, -65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.97, -65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.005, -65.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.001, -65.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.01, -65.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.019, -65.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.027, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.063, -65.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.035, -65.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.943, -65.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.048, -65.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.778, -65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.78, -65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.748, -65.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.776, -65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.778, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.776, -65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.778, -65.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.775, -65.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.78, -65.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.774, -65.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.719, -65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.773, -65.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.772, -65.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.768, -65.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.796, -65.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.784, -65.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.758, -65.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.748, -65.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.759, -65.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.741, -65.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.738, -65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.731, -65.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.67, -65.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.704, -65.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.67, -65.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.682, -65.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.691, -65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.678, -65.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.676, -64.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.663, -64.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.669, -64.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.647, -64.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.621, -64.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.623, -64.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.56, -64.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.577, -64.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.546, -64.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.553, -64.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.548, -64.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.551, -64.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.593, -64.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.545, -64.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.286, -64.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.303, -64.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.142, -64.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.204, -64.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.338, -64.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.285, -64.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.277, -64.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.274, -64.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.082, -64.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.159, -64.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.223, -64.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.867, -64.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.761, -64.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.177, -64.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.148, -64.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.131, -64.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.03, -64.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.054, -64.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.027, -64.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.035, -64.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.025, -64.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.996, -64.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.935, -64.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.916, -64.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.962, -64.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.92, -64.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.918, -64.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.776, -64.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.802, -64.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.781, -64.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.793, -64.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.863, -64.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.59, -64.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.592, -64.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.585, -64.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.591, -64.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.57, -64.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.564, -64.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.541, -64.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.549, -64.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.554, -64.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.55, -64.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.539, -64.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.113, -64.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.483, -64.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.49, -64.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.465, -64.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.452, -64.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.44, -64.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.437, -64.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.438, -64.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.414, -64.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.303, -64.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.331, -64.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.259, -64.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.284, -64.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.28, -64.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.274, -64.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.27, -64.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.19, -64.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.254, -64.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.176, -64.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.201, -64.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.189, -64.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.31, -64.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.119, -64.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.08, -64.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.487, -64.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.485, -64.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.463, -64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.443, -64.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.524, -63.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.454, -64.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.39, -63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.409, -63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.356, -63.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.381, -63.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.369, -63.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.375, -63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.333, -63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.375, -63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.35, -63.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.335, -63.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.329, -63.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.315, -63.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.284, -63.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.292, -63.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.26, -63.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.283, -63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.233, -63.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.239, -63.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.259, -63.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.185, -63.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.205, -63.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.155, -63.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.181, -63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.165, -63.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.169, -63.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.157, -63.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.184, -64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.139, -63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.525, -64.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.324, -63.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.355, -63.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.395, -63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.4, -63.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.371, -63.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.391, -63.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.392, -63.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.387, -63.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.397, -63.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.385, -63.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.367, -63.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.358, -63.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.305, -63.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.336, -63.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.321, -63.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.331, -63.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.313, -63.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.321, -63.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.32, -63.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.318, -63.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.307, -63.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.335, -63.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.31, -63.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.306, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.314, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.322, -63.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.323, -63.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.408, -63.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.326, -63.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.292, -63.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.332, -63.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.359, -63.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.345, -63.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.091, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.162, -63.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.121, -63.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.14, -63.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.17, -63.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.135, -63.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.122, -63.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.118, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.088, -63.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.11, -63.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.077, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.096, -63.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.105, -63.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.102, -63.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.093, -63.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.137, -63.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.112, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.104, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.092, -63.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.098, -63.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.105, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.11, -63.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.109, -63.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.113, -63.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.096, -63.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.115, -63.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.088, -63.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.119, -63.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.132, -63.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.124, -63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.11, -63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.127, -63.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.935, -63.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.949, -63.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.94, -63.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.947, -63.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.965, -63.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.944, -63.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.944, -63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.941, -63.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.946, -63.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.938, -63.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.927, -63.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.936, -63.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.901, -63.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.967, -63.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.925, -63.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.901, -63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.921, -63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.906, -63.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.92, -63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.799, -63.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.949, -63.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.92, -63.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.953, -63.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.857, -63.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.946, -63.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.927, -63.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.967, -63.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.927, -63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.928, -63.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.949, -63.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.909, -63.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.917, -63.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.79, -63.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.791, -63.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.8, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.767, -63.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.782, -63.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.75, -63.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.777, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.76, -63.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.751, -63.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.748, -63.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.71, -63.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.721, -63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.682, -63.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.698, -63.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.693, -63.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.69, -63.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.678, -63.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.679, -63.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.665, -63.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.652, -63.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.607, -63.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.619, -63.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.611, -63.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.601, -63.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.601, -63.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.582, -63.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.594, -63.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.586, -63.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.585, -63.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.561, -63.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.57, -63.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.568, -63.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.554, -63.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.172, -63.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.056, -63.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.057, -63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.042, -63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.034, -63.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.04, -63.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.018, -63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.068, -63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.037, -63.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.036, -63.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.053, -63.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.03, -63.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.039, -63.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.026, -63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.056, -63.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.04, -63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.049, -63.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.045, -63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.039, -63.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.05, -63.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.01, -63.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.035, -63.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.02, -63.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.02, -63.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.016, -63.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.017, -63.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.018, -63.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.947, -63.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.027, -63.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.028, -63.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.041, -63.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.031, -63.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.104, -63.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.124, -63.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.089, -63.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.145, -63.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.126, -63.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.154, -63.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.302, -62.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.13, -63.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.136, -63.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.118, -63.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.14, -63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.136, -63.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.142, -63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.17, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.143, -63.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.151, -63.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.142, -63.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.131, -63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.125, -63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.103, -63.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.113, -63.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.091, -63.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.102, -63.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.1, -63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.084, -63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.058, -63.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.039, -63.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.034, -63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.016, -63.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.02, -63.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.009, -63.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.97, -63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.996, -63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.977, -63.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.948, -63.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.922, -63.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.939, -63.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.921, -63.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.932, -63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.909, -63.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.918, -63.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.903, -63.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.848, -63.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.85, -63.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.766, -63.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.843, -63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.779, -63.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.766, -63.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.759, -63.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.767, -63.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.742, -63.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.719, -63.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.681, -63.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.621, -63.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.652, -63.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.57, -63.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.627, -63.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.601, -63.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.599, -63.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.653, -63.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.561, -63.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.556, -63.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.578, -63.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.495, -63.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.403, -63.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.428, -63.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.386, -63.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.401, -63.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.379, -63.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.382, -63.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.574, -63.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.588, -63.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.55, -63.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.58, -63.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.523, -63.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.605, -63.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.577, -63.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.61, -63.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.567, -63.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.606, -63.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.588, -63.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.594, -63.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.59, -63.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.604, -63.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.592, -63.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.585, -63.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.592, -63.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.589, -63.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.593, -63.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.609, -63.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.595, -63.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.561, -63.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.596, -63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.565, -63.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.596, -63.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.638, -63.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.545, -63.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.618, -63.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.612, -63.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.65, -63.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.623, -63.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.62, -63.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.66, -63.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.627, -63.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.217, -63.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.592, -63.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.684, -63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.667, -63.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.64, -63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.649, -63.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.62, -63.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.639, -63.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.649, -63.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.599, -63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.622, -63.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.509, -63.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.664, -64.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.624, -63.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.626, -63.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.626, -63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.636, -63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.628, -63.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.82, -63.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.638, -63.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.64, -63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.651, -63.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.644, -63.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.653, -63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.653, -63.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.659, -63.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.656, -63.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.652, -63.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.663, -64.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.679, -63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.685, -63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.68, -63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.674, -63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.683, -63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.689, -63.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.701, -63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.72, -63.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.706, -63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.593, -63.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.878, -63.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.798, -63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.785, -63.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.788, -63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.77, -63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.789, -63.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.793, -64.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.79, -63.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.798, -64.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.795, -64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.798, -64.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.796, -64.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.782, -64.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.795, -64.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.796, -64.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.792, -64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.808, -64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.792, -64.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.791, -64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.786, -64.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.777, -64.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.791, -64.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.772, -64.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.749, -64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.77, -64.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.756, -64.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.768, -64.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.75, -64.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.774, -64.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.769, -64.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.796, -64.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.786, -64.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.81, -64.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.794, -64.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.797, -64.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.797, -64.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.596, -64.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.774, -64.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.809, -64.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.783, -64.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.81, -64.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.045, -63.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.109, -63.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.134, -63.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.082, -63.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.111, -63.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.105, -63.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.117, -63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.099, -63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.079, -63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.082, -63.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.048, -63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.073, -63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.039, -63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.059, -63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.074, -63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.055, -63.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.068, -63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.053, -63.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.038, -63.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.024, -63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.034, -63.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.996, -63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.981, -63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.984, -63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.955, -63.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.959, -63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.922, -63.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.955, -63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.938, -63.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.953, -63.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.899, -63.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.913, -63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.882, -63.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.15, -64.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.894, -63.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.89, -63.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.939, -63.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.88, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.046, -63.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.923, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.87, -63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.993, -63.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.991, -63.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.954, -63.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.957, -63.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.85, -63.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.842, -63.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.871, -63.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.855, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.832, -63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.84, -63.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.831, -63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.805, -63.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.818, -63.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.789, -63.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.785, -63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.735, -63.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.73, -63.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.679, -63.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.718, -63.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.691, -63.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.704, -63.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.687, -63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.692, -63.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.643, -63.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.556, -63.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.577, -63.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.563, -63.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.568, -63.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.555, -63.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.553, -63.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.587, -63.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.513, -63.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.517, -63.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.506, -63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.481, -63.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.968, -63.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.962, -63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.847, -63.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.853, -63.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.854, -63.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.839, -63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.78, -63.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.793, -63.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.765, -63.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.765, -63.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.717, -63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.682, -63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.689, -63.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.674, -63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.673, -63.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.669, -63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.572, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.621, -63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.609, -63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.602, -63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.55, -63.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.532, -63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.518, -63.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.528, -63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.52, -63.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.459, -63.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.477, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.451, -63.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.46, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.91, -64.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.896, -64.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.902, -64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.902, -64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.889, -64.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.86, -64.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.863, -64.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.855, -64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.859, -64.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.785, -64.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.79, -64.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.792, -64.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.771, -64.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.784, -64.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.764, -64.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.751, -64.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.739, -64.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.749, -64.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.681, -64.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.687, -64.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.67, -64.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.68, -64.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.678, -64.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.677, -64.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.666, -64.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.671, -64.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.651, -64.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.64, -64.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.641, -64.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.504, -64.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.574, -64.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.574, -64.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.559, -64.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.567, -64.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.535, -64.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.541, -64.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.565, -64.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.562, -64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.559, -64.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.546, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.549, -64.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.544, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.546, -64.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.541, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.534, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.531, -64.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.527, -64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.476, -64.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.486, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.479, -64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.478, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.458, -64.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.468, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.475, -64.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.447, -64.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.449, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.522, -64.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.397, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.406, -64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.41, -64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.396, -64.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.394, -64.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.399, -64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.39, -64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.381, -64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.382, -64.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.361, -64.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.357, -64.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.36, -64.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.353, -64.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.332, -64.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.34, -64.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.318, -64.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.83, -68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.853, -68.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.846, -68.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.38, -69.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.852, -68.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.848, -68.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.755, -68.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.804, -68.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.822, -68.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.815, -68.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.801, -68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.805, -68.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.788, -68.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.772, -68.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.762, -68.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.744, -68.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.752, -68.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.727, -68.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.734, -68.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.72, -68.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.728, -68.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.729, -68.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.733, -68.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.738, -68.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.736, -68.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.718, -68.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.738, -68.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.745, -68.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.745, -68.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.774, -68.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.747, -68.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.808, -68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.69, -68.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.755, -68.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.714, -68.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.696, -68.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.652, -68.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.662, -68.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.635, -68.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.637, -68.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.633, -68.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.626, -68.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.565, -68.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.591, -68.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.519, -68.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.576, -68.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.588, -68.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.563, -68.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.553, -68.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.54, -68.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.529, -68.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.51, -68.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.462, -68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.47, -68.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.437, -68.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.452, -68.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.416, -68.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.436, -68.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.396, -68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.399, -68.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.411, -68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.384, -68.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.414, -68.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.251, -68.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.256, -68.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.241, -68.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.236, -68.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.257, -68.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.273, -68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.271, -68.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.269, -68.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.277, -68.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.303, -68.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.279, -68.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.297, -68.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.293, -68.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.316, -68.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.304, -68.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.287, -68.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.312, -68.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.307, -68.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.335, -68.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.294, -68.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.31, -68.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.306, -68.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.311, -68.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.335, -68.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.332, -68.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.334, -68.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.346, -68.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.343, -68.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.349, -68.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.361, -68.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.351, -68.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.376, -68.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.37, -68.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.395, -68.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.396, -68.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.68, -69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.648, -69.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.647, -69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.666, -69.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.66, -69.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.655, -69.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.629, -69.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.657, -69.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.675, -69.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.658, -69.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.676, -69.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.665, -69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.663, -69.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.665, -69.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.656, -69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.668, -69.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.662, -69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.676, -69.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.661, -69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.639, -69.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.66, -69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.626, -69.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.662, -69.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.666, -69.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.662, -69.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.646, -69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.697, -69.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.668, -69.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.677, -69.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.67, -69.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.593, -68.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.674, -69.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.675, -69.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.717, -69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.676, -69.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.679, -69.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.689, -69.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.707, -69.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.717, -69.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.691, -69.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.714, -68.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.706, -69.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.706, -69.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.716, -69.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.734, -69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.742, -69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.747, -69.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.744, -69.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.75, -69.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.759, -69.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.789, -69.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.78, -69.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.903, -69.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.817, -69.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.085, -68.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.832, -69.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.093, -65.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.066, -65.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.092, -65.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.069, -65.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.073, -65.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.082, -65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.068, -65.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.033, -65.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.063, -65.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.065, -65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.054, -65.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.989, -65.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.015, -65.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.968, -65.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.0, -65.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.983, -65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.971, -65.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.967, -65.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.966, -65.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.945, -65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.959, -65.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.964, -65.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.952, -65.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.928, -65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.925, -65.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.92, -65.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.904, -65.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.854, -65.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.851, -65.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.836, -65.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.835, -65.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.79, -65.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.811, -65.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.804, -65.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.803, -65.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.728, -65.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.748, -65.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.632, -65.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.583, -65.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.663, -65.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.666, -65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.671, -65.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.652, -65.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.64, -65.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.645, -65.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.302, -64.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.282, -64.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.104, -64.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.266, -64.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.268, -64.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.244, -64.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.272, -64.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.257, -64.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.229, -64.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.239, -64.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.204, -64.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.218, -64.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.193, -64.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.203, -64.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.215, -64.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.358, -64.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.228, -64.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.21, -64.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.144, -64.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.132, -64.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.195, -64.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.185, -64.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.191, -64.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.147, -64.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.173, -64.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.175, -64.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.136, -64.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.143, -64.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.145, -64.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.139, -64.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.222, -64.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.085, -64.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.124, -64.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.953, -64.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.116, -64.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.297, -64.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.349, -64.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.272, -64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.273, -64.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.267, -64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.258, -64.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.131, -64.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.224, -64.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.24, -64.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.217, -64.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.233, -64.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.215, -64.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.22, -64.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.337, -64.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.248, -64.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.243, -64.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.217, -64.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.407, -64.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.307, -64.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.268, -64.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.249, -64.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.277, -64.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.325, -64.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.31, -64.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.323, -64.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.24, -64.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.335, -64.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.425, -64.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.359, -64.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.365, -63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.369, -63.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.381, -63.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.372, -63.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.367, -63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.395, -63.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.38, -63.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.404, -63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.43, -63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.408, -63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.426, -63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.414, -63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.463, -63.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.445, -63.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.42, -63.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.474, -63.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.534, -63.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.526, -63.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.677, -63.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.535, -63.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.56, -63.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.562, -63.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.563, -63.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.681, -63.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.606, -63.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.618, -63.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.64, -63.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.689, -63.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.689, -63.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.737, -63.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.753, -63.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.937, -63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.921, -63.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.911, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.92, -63.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.92, -63.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.92, -63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.9, -63.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.933, -63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.924, -63.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.942, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.928, -63.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.918, -63.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.93, -63.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.938, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.922, -63.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.932, -63.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.944, -63.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.933, -63.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.91, -63.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.941, -63.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.887, -63.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.036, -63.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.927, -63.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.92, -63.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.912, -63.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.918, -63.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.909, -63.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.908, -63.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.915, -63.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.903, -63.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.899, -63.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.86, -63.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.768, -63.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.765, -63.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.739, -63.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.764, -63.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.744, -63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.764, -63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.76, -63.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.768, -63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.772, -63.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.527, -63.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.734, -63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.746, -63.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.76, -63.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.793, -63.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.755, -63.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.777, -63.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.756, -63.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.756, -63.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.761, -63.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.758, -63.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.784, -63.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.759, -63.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.745, -63.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.765, -63.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.763, -63.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.76, -63.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.819, -63.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.772, -63.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.765, -63.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.766, -63.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.755, -63.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.961, -63.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.929, -63.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.96, -63.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.982, -63.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.939, -63.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.928, -63.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.862, -63.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.931, -63.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.925, -63.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.901, -63.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.925, -63.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.934, -63.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.928, -63.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.917, -63.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.952, -63.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.942, -63.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.992, -63.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.999, -63.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.036, -63.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.987, -63.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.017, -63.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.05, -63.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.036, -63.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.09, -63.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.066, -63.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.079, -63.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.12, -63.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.119, -63.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.091, -63.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.137, -63.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.128, -63.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.122, -63.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.139, -63.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.134, -63.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.155, -63.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.095, -63.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.013, -63.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.035, -63.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.099, -63.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.027, -63.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.093, -63.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.044, -63.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.02, -63.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.048, -63.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.065, -63.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.051, -63.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.016, -63.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.079, -63.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.074, -63.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.076, -63.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.082, -63.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.132, -63.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.141, -63.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.137, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.098, -63.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.169, -63.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.17, -63.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.184, -63.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.235, -63.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.203, -63.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.267, -63.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.279, -63.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.288, -63.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.316, -63.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.292, -63.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.296, -63.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.343, -63.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.335, -63.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.387, -63.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.353, -63.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.62, -64.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.668, -64.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.619, -64.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.689, -64.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.707, -64.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.79, -64.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.763, -64.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.794, -64.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.795, -64.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.822, -64.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.819, -64.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.933, -64.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.882, -64.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.901, -64.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.892, -64.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.973, -64.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.946, -64.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.963, -64.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.991, -64.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.025, -64.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.015, -64.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.028, -64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.038, -64.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.121, -64.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.077, -64.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.146, -64.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.082, -64.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.21, -64.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.138, -64.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.148, -64.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.115, -64.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.165, -64.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.211, -64.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.221, -64.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.198, -64.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.304, -64.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.303, -64.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.644, -64.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.645, -64.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.612, -64.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.662, -64.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.649, -64.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.687, -64.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.7, -64.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.722, -64.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.75, -64.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.758, -64.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.665, -64.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.766, -64.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.841, -64.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.818, -64.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.827, -64.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.835, -64.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.843, -64.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.854, -64.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.884, -64.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.885, -64.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.978, -64.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.956, -64.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.039, -64.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.967, -64.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.02, -64.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.059, -64.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.021, -64.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.034, -64.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.049, -64.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.044, -64.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.059, -64.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.087, -64.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.126, -64.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.367, -64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.349, -64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.354, -64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.346, -64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.338, -64.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.352, -64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.366, -64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.355, -64.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.368, -64.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.358, -64.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.37, -64.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.402, -64.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.383, -64.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.373, -64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.386, -64.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.382, -64.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.408, -64.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.375, -64.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.387, -64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.446, -64.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.48, -64.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.412, -64.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.388, -64.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.4, -64.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.37, -64.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.374, -64.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.38, -64.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.401, -64.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.378, -64.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.397, -64.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.377, -64.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.381, -64.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.377, -64.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.094, -64.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.363, -64.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.148, -65.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.081, -65.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.089, -65.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.114, -65.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.104, -65.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.115, -65.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.152, -65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.146, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.153, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.166, -65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.193, -65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.189, -65.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.216, -65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.193, -65.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.24, -65.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.256, -65.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.289, -65.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.298, -65.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.278, -65.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.384, -65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.347, -65.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.334, -65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.346, -65.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.373, -65.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.39, -65.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.379, -65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.362, -65.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.392, -65.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.459, -65.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.393, -65.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.411, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.467, -65.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.457, -65.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.22, -66.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.185, -66.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.221, -66.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.234, -66.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.229, -66.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.223, -66.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.239, -66.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.237, -66.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.241, -66.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.259, -66.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.301, -66.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.265, -66.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.259, -66.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.273, -66.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.256, -66.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.273, -66.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.281, -66.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.331, -66.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.292, -66.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.297, -66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.305, -66.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.318, -66.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.31, -66.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.31, -66.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.314, -66.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.425, -66.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.321, -66.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.316, -66.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.28, -66.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.346, -66.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.313, -66.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.301, -66.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.303, -66.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.077, -66.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.29, -66.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.902, -67.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.992, -67.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.971, -67.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.969, -67.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.935, -67.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.957, -67.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.972, -67.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.949, -67.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.939, -67.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.794, -67.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.851, -67.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.828, -67.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.825, -67.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.805, -67.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.826, -67.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.808, -67.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.787, -67.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.805, -67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.763, -67.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.791, -67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.792, -67.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.812, -67.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.8, -67.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.821, -67.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.796, -67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.779, -67.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.797, -67.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.801, -67.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.808, -67.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.842, -67.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.815, -67.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.635, -67.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.843, -67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.833, -67.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.838, -67.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.84, -67.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.899, -67.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.685, -69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.692, -69.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.711, -69.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.75, -69.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.425, -69.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.814, -69.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.807, -69.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.881, -69.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.867, -69.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.894, -69.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.896, -69.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.985, -69.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.955, -69.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.066, -69.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.013, -69.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.009, -69.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.059, -69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.049, -69.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.124, -69.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.125, -69.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.241, -69.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.181, -69.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.343, -69.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.225, -69.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.348, -69.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.275, -69.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.442, -69.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 176.42, -69.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.73, -69.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.803, -69.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.886, -69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.89, -69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.91, -69.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.913, -69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.923, -69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.92, -69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.956, -69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.938, -69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.961, -69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.968, -69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.97, -69.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 177.982, -69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.07, -69.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.067, -69.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.083, -69.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.087, -69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.102, -69.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.093, -69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.222, -69.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.137, -69.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.14, -69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.15, -69.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.163, -69.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.214, -69.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.243, -69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.265, -69.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.249, -69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.253, -69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.281, -69.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.276, -69.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.282, -69.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 178.304, -69.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.582, -69.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.597, -69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.611, -69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.606, -69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.612, -69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.611, -69.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.626, -69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.615, -69.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.696, -69.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.695, -69.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.777, -69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.788, -69.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.791, -69.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.796, -69.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.823, -69.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.8, -69.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.821, -69.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.808, -69.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.833, -69.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.837, -69.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.866, -69.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.872, -69.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.945, -69.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.949, -69.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.963, -69.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.959, -69.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.967, -69.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 179.965, -69.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.997, -69.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.998, -69.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.87, -69.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.966, -69.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -179.862, -69.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.973, -68.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.129, -68.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.075, -68.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.161, -68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.218, -68.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.313, -68.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.394, -68.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.398, -68.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.444, -68.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.443, -68.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.465, -68.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.467, -68.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.62, -68.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.557, -68.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.634, -68.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.646, -68.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.638, -68.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.68, -68.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.658, -68.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.71, -68.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.708, -68.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.763, -68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.77, -68.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.108, -67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.954, -68.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.891, -68.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.939, -68.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.949, -68.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.917, -68.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.899, -68.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.964, -68.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.017, -68.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.012, -68.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.05, -68.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.064, -68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.08, -68.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.081, -68.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.155, -68.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.106, -68.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.156, -68.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.161, -68.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.222, -68.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.221, -68.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.272, -68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.289, -68.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.318, -68.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.308, -68.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.307, -68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.323, -68.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.443, -68.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.381, -68.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.362, -67.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.409, -68.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.442, -68.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.415, -67.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.678, -66.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.47, -66.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.596, -66.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.464, -66.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.493, -66.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.451, -66.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.466, -66.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.491, -66.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.455, -66.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.471, -66.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.467, -66.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.454, -66.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.474, -66.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.499, -66.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.487, -66.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.489, -66.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.501, -66.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.494, -66.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.51, -66.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.51, -66.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.467, -66.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.514, -66.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.529, -66.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.524, -66.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.545, -66.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.53, -66.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.54, -66.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.529, -66.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.533, -66.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.544, -66.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.552, -66.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.549, -66.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.557, -66.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.578, -66.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.566, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.578, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.573, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.569, -66.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.574, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.568, -66.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.561, -66.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.566, -66.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.563, -66.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.565, -66.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.592, -66.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.566, -66.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.586, -66.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.566, -66.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.565, -66.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.567, -66.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.561, -66.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.571, -66.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.576, -66.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.574, -66.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.596, -66.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.579, -66.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.572, -66.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.594, -66.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.602, -66.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.596, -66.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.598, -66.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.601, -66.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.555, -65.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.579, -65.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.539, -65.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.555, -65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.564, -65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.559, -65.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.558, -65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.521, -65.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.511, -65.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.541, -65.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.507, -65.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.464, -65.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.475, -65.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.451, -65.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.452, -65.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.438, -65.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.42, -65.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.402, -65.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.412, -65.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.312, -65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.296, -65.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.272, -65.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.285, -65.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.24, -65.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.237, -65.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.236, -65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.205, -65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.132, -65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.166, -65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.139, -65.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.076, -65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.068, -65.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.065, -65.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.05, -65.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.768, -65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.734, -65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.636, -65.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.719, -65.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.682, -65.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.679, -65.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.584, -65.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.624, -65.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.578, -65.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.564, -65.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.526, -65.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.546, -65.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.517, -65.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.521, -65.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.509, -65.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.497, -64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.484, -65.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.449, -65.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.455, -64.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.419, -64.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.408, -64.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.39, -64.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.391, -64.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.401, -64.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.368, -64.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.359, -64.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.354, -64.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.389, -64.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.362, -64.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.307, -64.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.334, -64.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.275, -64.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.369, -64.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.34, -64.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.81, -64.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.842, -64.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.825, -64.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.837, -64.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.83, -64.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.835, -64.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.817, -64.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.834, -64.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.847, -64.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.832, -64.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.825, -64.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.825, -64.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.817, -64.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.815, -64.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.804, -64.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.809, -64.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.81, -64.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.801, -64.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.815, -64.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.795, -64.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.73, -64.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.753, -64.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.74, -64.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.72, -64.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.665, -64.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.69, -64.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.694, -64.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.68, -64.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.68, -64.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.664, -64.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.668, -64.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.68, -64.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.6, -64.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.62, -64.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.621, -64.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.602, -64.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.719, -64.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.597, -64.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.58, -64.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.597, -64.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.628, -64.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.601, -64.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.638, -64.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.602, -64.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.408, -64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.379, -64.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.38, -64.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.375, -64.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.374, -64.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.39, -64.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.336, -64.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.361, -64.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.363, -64.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.363, -64.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.459, -64.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.384, -64.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.426, -64.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.43, -64.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.395, -64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.394, -64.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.387, -64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.373, -64.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.384, -64.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.369, -64.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.381, -64.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.392, -64.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.381, -64.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.348, -64.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.384, -64.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.38, -64.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.378, -64.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.38, -64.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.337, -64.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.403, -64.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.384, -64.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.376, -64.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.415, -64.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.51, -64.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.383, -64.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.385, -64.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.32, -64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.308, -64.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.338, -64.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.3, -64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.304, -64.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.287, -64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.292, -64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.282, -64.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.279, -64.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.268, -64.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.235, -64.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.261, -64.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.258, -64.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.24, -64.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.251, -64.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.271, -64.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.266, -64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.272, -64.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.273, -64.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.227, -64.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.271, -64.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.283, -64.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.282, -64.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.259, -64.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.331, -64.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.254, -64.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.264, -64.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.269, -64.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.261, -64.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.134, -64.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.244, -64.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.133, -63.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.14, -63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.149, -63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.139, -63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.137, -63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.141, -63.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.132, -63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.129, -63.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.122, -63.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.127, -63.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.121, -63.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.124, -63.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.111, -63.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.12, -63.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.119, -63.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.118, -63.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.095, -63.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.122, -63.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.102, -63.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.088, -63.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.094, -63.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.096, -63.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.071, -63.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.089, -63.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.103, -63.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.087, -63.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.007, -63.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.213, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.083, -63.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.895, -63.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.085, -63.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.079, -63.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.089, -63.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.077, -63.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.872, -63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.059, -63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.008, -63.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.019, -63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.999, -63.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.036, -63.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.026, -63.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.027, -63.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.032, -63.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.052, -63.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.036, -63.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.032, -63.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.037, -63.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.051, -63.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.037, -63.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.037, -63.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.033, -63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.019, -63.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.024, -63.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.033, -63.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.006, -63.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.019, -63.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.017, -63.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.997, -63.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.139, -63.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.992, -63.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.001, -63.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.997, -63.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.998, -63.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.988, -63.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.985, -63.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.961, -63.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.983, -63.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.974, -63.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.873, -63.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.868, -63.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.871, -63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.865, -63.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.866, -63.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.852, -63.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.866, -63.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.868, -63.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.864, -63.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.871, -63.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.884, -63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.873, -63.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.837, -63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.874, -63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.966, -63.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.838, -63.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.619, -63.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.84, -63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.834, -63.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.823, -63.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.784, -63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.821, -63.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.799, -63.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.819, -63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.841, -63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.818, -63.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.824, -63.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.817, -63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.514, -63.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.805, -63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.816, -63.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.844, -63.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.712, -63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.592, -63.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.585, -63.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.589, -63.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.583, -63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.581, -63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.582, -63.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.574, -63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.594, -63.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.588, -63.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.589, -63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.577, -63.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.579, -63.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.577, -63.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.573, -63.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.576, -63.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.577, -63.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.593, -63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.576, -63.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.56, -63.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.576, -63.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.579, -63.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.567, -63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.579, -63.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.592, -63.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.58, -63.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.463, -63.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.465, -63.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.464, -63.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.466, -63.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.482, -63.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.49, -63.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.452, -63.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.457, -63.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.465, -63.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.449, -63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.42, -63.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.449, -63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.44, -63.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.449, -63.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.469, -63.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.448, -63.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.469, -63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.45, -63.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.482, -63.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.466, -63.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.488, -63.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.471, -63.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.47, -63.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.472, -63.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.471, -63.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.462, -63.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.466, -63.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.471, -63.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.803, -63.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.494, -63.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.437, -63.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.439, -63.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.441, -63.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.444, -63.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.45, -63.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.443, -63.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.438, -63.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.412, -63.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.427, -63.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.414, -63.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.412, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.408, -63.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.398, -63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.405, -63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.409, -63.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.401, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.396, -63.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.393, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.382, -63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.384, -63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.387, -63.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.383, -63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.402, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.377, -63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.382, -63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.376, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.381, -63.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.402, -63.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.385, -63.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.368, -63.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.385, -63.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.393, -63.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.385, -63.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.357, -63.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.385, -63.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.451, -64.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.365, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.374, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.379, -63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.376, -63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.386, -63.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.385, -63.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.382, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.387, -63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.389, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.256, -63.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.394, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.396, -63.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.387, -63.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.419, -63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.421, -63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.426, -63.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.439, -63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.43, -63.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.398, -63.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.424, -63.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.431, -63.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.419, -63.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.408, -63.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.417, -63.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.356, -63.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.409, -63.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.412, -63.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.408, -63.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.378, -63.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.402, -63.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.344, -63.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.401, -63.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.643, -63.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.646, -63.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.753, -63.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.764, -63.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.832, -63.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.809, -63.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.819, -63.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.821, -63.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.88, -63.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.87, -63.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.914, -63.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.886, -63.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.938, -63.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.932, -63.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.962, -63.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.94, -63.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.96, -63.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.941, -63.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.959, -63.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.939, -63.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.928, -63.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.939, -63.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.953, -63.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.914, -63.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.946, -63.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.975, -63.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.95, -63.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.012, -63.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.955, -63.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.036, -63.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.725, -63.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.715, -63.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.721, -63.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.712, -63.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.641, -63.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.655, -63.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.611, -63.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.632, -63.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.678, -63.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.643, -63.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.671, -63.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.66, -63.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.655, -63.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.661, -63.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.663, -63.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.663, -63.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.658, -63.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.667, -63.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.659, -63.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.671, -63.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.682, -63.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.672, -63.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.271, -63.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.688, -63.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.681, -63.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.673, -63.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.681, -63.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.703, -63.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.684, -63.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.672, -63.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.685, -63.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.683, -63.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.535, -26.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.532, -27.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.559, -27.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.554, -27.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.56, -27.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.6, -27.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.562, -27.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.514, -27.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.562, -27.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.514, -27.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.551, -27.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.52, -27.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.552, -27.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.559, -27.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.559, -27.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.565, -27.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.564, -27.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.606, -28.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.575, -28.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.612, -28.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.612, -28.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.631, -28.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.622, -28.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.646, -28.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.642, -28.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.586, -29.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.571, -29.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.609, -29.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.584, -29.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.564, -29.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.617, -29.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.46, -29.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.544, -29.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.443, -29.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.442, -29.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.433, -29.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.436, -29.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.384, -29.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.354, -29.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.381, -29.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.426, -29.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.376, -29.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.298, -30.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.324, -30.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.311, -30.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.277, -30.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.316, -30.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.336, -29.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.31, -30.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.319, -30.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.306, -30.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.251, -30.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.229, -30.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.183, -30.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.224, -30.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.193, -30.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.218, -30.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.276, -30.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.216, -30.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.397, -30.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.181, -30.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.977, -30.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.153, -30.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.176, -30.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.201, -30.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.168, -30.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.143, -30.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.002, -30.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.021, -30.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.059, -30.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.046, -30.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.058, -30.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.047, -30.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.973, -30.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.844, -30.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.962, -30.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.964, -30.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.002, -30.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.96, -30.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.11, -30.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.052, -30.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.05, -30.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.001, -30.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.056, -30.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.012, -30.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.06, -30.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.138, -30.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.043, -30.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.053, -30.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.058, -30.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.045, -30.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.914, -30.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.093, -30.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.104, -30.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.087, -30.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.107, -30.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.057, -30.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.046, -30.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.015, -30.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.026, -30.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.012, -30.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.024, -30.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.016, -30.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.016, -30.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.971, -30.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.01, -30.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.06, -30.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.061, -30.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.039, -30.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.032, -30.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.027, -30.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.083, -30.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.022, -30.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.111, -30.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.093, -30.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.077, -30.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.068, -30.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.11, -30.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.005, -30.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.253, -30.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.075, -30.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.055, -30.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.064, -30.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.079, -30.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.175, -30.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.086, -30.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.08, -30.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.028, -30.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.047, -30.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.044, -30.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.045, -30.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.98, -30.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.042, -30.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.026, -31.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.034, -31.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.041, -31.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.033, -31.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.925, -31.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.01, -31.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.865, -31.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.867, -31.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.869, -31.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.861, -31.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.844, -31.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.857, -31.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.807, -31.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.745, -31.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.761, -31.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.735, -31.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.791, -31.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.715, -31.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.702, -31.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.705, -31.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.437, -32.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.572, -32.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.569, -32.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.542, -32.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.536, -32.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.427, -32.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.528, -32.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.514, -32.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.502, -32.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.457, -32.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.501, -32.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.449, -32.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.494, -32.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.194, -32.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.179, -32.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.142, -32.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.143, -32.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.076, -32.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.069, -32.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.058, -32.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.06, -32.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.043, -32.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.045, -32.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.807, -32.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.846, -32.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.841, -32.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.842, -32.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.82, -32.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.831, -32.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.831, -32.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.827, -32.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.823, -32.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.822, -32.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.591, -33.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.596, -33.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.512, -33.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.573, -33.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.714, -33.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.563, -33.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.559, -33.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.489, -33.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.488, -33.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.447, -33.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.487, -33.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.472, -33.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.476, -33.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.457, -33.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.472, -33.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.494, -33.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.459, -33.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.26, -33.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.333, -33.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.327, -33.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.314, -33.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.314, -33.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.313, -33.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.326, -33.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.297, -33.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.284, -33.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.291, -33.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.01, -34.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.008, -34.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.986, -34.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.999, -34.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.975, -34.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.896, -34.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.888, -34.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.894, -34.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.891, -34.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.886, -34.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.902, -34.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.873, -34.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.89, -34.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.873, -34.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.873, -34.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.88, -34.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.891, -34.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.884, -34.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.814, -35.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.723, -35.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.775, -35.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.702, -35.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.409, -35.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.418, -35.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.396, -35.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.39, -35.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.492, -35.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.384, -35.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.352, -35.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.354, -35.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.174, -35.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.193, -35.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.187, -35.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.186, -35.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.185, -35.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.182, -35.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.187, -35.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.177, -35.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.156, -36.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.146, -36.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.2, -36.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.135, -36.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.14, -36.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.131, -36.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.137, -36.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.167, -36.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.136, -36.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.109, -36.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.101, -36.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.033, -36.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.999, -36.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.982, -36.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.985, -36.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.981, -36.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.983, -36.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.986, -36.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.973, -36.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.986, -37.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.027, -37.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.023, -37.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.03, -37.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.054, -37.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.036, -37.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.039, -37.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.039, -37.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.04, -37.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.04, -37.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.955, -37.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.035, -37.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.026, -37.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.73, -37.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.744, -37.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.672, -37.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.722, -37.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.698, -37.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.654, -37.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.648, -37.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.648, -37.763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.169, -37.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.154, -37.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.037, -37.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.088, -37.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.072, -37.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.108, -37.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.069, -37.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.566, -37.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.567, -37.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.487, -37.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.485, -37.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.48, -37.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.478, -37.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.468, -37.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.472, -37.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.136, -37.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.162, -37.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.093, -37.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.109, -37.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.105, -37.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.106, -37.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.066, -37.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.057, -37.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.985, -37.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.801, -37.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.792, -37.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.766, -37.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.778, -37.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.715, -37.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.336, -37.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.514, -38.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.538, -38.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.501, -38.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.476, -38.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.473, -38.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.472, -38.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.141, -38.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.181, -38.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.171, -38.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.171, -38.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.125, -38.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.134, -38.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.099, -38.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.042, -38.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.06, -38.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.05, -38.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.015, -38.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.035, -38.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.836, -38.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.814, -38.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.784, -38.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.81, -38.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.774, -38.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.744, -38.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.651, -38.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.671, -38.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.685, -38.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.667, -38.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.394, -39.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.377, -39.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.358, -39.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.395, -39.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.321, -39.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.277, -39.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.28, -39.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.259, -39.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.027, -39.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.04, -39.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.0, -39.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.017, -39.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.997, -39.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.678, -39.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.722, -39.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.709, -39.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.713, -39.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.693, -39.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.692, -39.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.662, -39.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.674, -39.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.61, -40.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.624, -40.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.629, -40.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.626, -40.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.634, -40.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.626, -40.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.627, -40.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.629, -40.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.548, -40.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.43, -40.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.394, -40.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.351, -40.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.376, -40.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.274, -40.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.345, -40.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.301, -40.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.301, -40.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.27, -40.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.265, -40.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.257, -40.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.258, -40.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.122, -40.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.046, -40.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.14, -40.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.029, -40.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.05, -40.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.009, -40.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.996, -40.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.974, -40.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.952, -40.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 144.954, -40.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.371, -40.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.37, -40.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.401, -40.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.431, -40.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.432, -40.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.459, -40.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.619, -40.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.681, -40.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.654, -40.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.695, -40.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.66, -40.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.701, -40.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.704, -40.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.744, -40.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.787, -40.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.751, -40.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.014, -41.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.034, -41.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.062, -41.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.066, -41.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.137, -41.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.134, -41.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.173, -41.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.15, -41.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.207, -41.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.158, -41.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.505, -41.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.527, -41.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.582, -41.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.591, -41.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.873, -40.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.957, -40.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.035, -40.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.023, -40.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.03, -40.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.041, -40.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.583, -40.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.622, -40.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.615, -40.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.65, -40.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.793, -40.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.735, -40.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.216, -40.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.219, -40.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.225, -40.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.223, -40.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.235, -40.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.238, -40.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.339, -40.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.302, -40.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.591, -40.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.603, -40.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.606, -40.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.605, -40.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.581, -40.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.634, -40.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.588, -40.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.636, -40.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.447, -40.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.651, -40.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.428, -41.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.495, -41.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -41.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.466, -41.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.432, -41.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -41.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.399, -41.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.462, -41.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.436, -41.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.329, -41.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.352, -41.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.352, -41.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.35, -41.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.36, -41.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.35, -41.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.347, -41.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.35, -41.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.484, -41.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.42, -41.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.445, -41.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.422, -41.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.319, -42.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.376, -42.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.355, -42.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.374, -42.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.373, -42.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.37, -42.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.251, -42.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.369, -42.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.303, -42.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.298, -42.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.349, -42.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.287, -42.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.194, -42.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.281, -42.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.171, -42.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.183, -42.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.381, -42.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.051, -42.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.05, -42.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.058, -43.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.034, -43.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.025, -43.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.997, -43.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.016, -43.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.525, -43.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.518, -43.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.528, -43.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.496, -43.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.444, -43.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.474, -43.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.444, -43.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.452, -43.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.428, -43.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.434, -43.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.401, -43.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.406, -43.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.027, -44.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.079, -44.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.054, -44.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.061, -44.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.988, -44.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.989, -44.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.192, -45.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.127, -45.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.05, -45.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.045, -45.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.01, -46.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.03, -46.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.89, -46.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.932, -46.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.96, -46.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.934, -46.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.049, -46.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.935, -46.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.968, -47.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.979, -47.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.345, -47.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.281, -47.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.476, -48.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.49, -48.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.999, -48.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.006, -48.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.14, -48.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.04, -48.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.193, -49.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.221, -49.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.167, -49.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.23, -49.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.084, -49.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.072, -49.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.026, -49.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.095, -49.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.091, -49.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.128, -49.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.098, -49.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.1, -49.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.231, -49.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.222, -49.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.451, -50.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.456, -50.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.464, -50.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.464, -50.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.892, -50.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.825, -50.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.701, -50.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.773, -50.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.837, -50.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.119, -36.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.122, -36.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.165, -36.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.166, -36.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.276, -36.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.251, -36.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.365, -35.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.329, -35.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.232, -35.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.336, -35.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.376, -35.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.352, -35.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.562, -35.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.531, -35.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.037, -34.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.04, -34.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.295, -33.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.278, -33.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.496, -33.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.565, -33.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.953, -32.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.952, -32.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.019, -32.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.986, -32.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.387, -32.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.39, -32.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.983, -31.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.075, -31.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.098, -31.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.102, -31.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.1, -31.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.154, -31.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.108, -31.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.103, -30.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.128, -30.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.312, -30.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.124, -30.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.133, -30.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.092, -30.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.135, -30.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.274, -30.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.238, -30.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.139, -30.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.19, -30.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.253, -30.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.306, -30.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.281, -30.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.236, -30.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.282, -30.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.361, -29.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.366, -29.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.552, -29.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.537, -29.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.6, -28.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.594, -28.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.658, -28.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.601, -28.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.585, -28.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.605, -28.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.589, -28.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.606, -28.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.617, -26.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.604, -26.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.481, -26.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.418, -26.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.779, -26.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.273, -26.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.389, -26.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.298, -25.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.293, -25.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.345, -23.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.326, -23.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.313, -23.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.301, -23.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.288, -23.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.297, -23.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.16, -23.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.143, -23.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.371, -23.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.084, -23.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.1, -23.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.92, -23.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.959, -23.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.953, -23.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.952, -23.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.855, -22.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.865, -22.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.86, -22.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.853, -22.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.432, -22.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.567, -22.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.567, -22.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.557, -22.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.407, -22.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.4, -22.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.367, -22.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.388, -22.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.294, -21.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.302, -21.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.292, -21.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.259, -21.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.23, -21.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.251, -21.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.253, -21.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.193, -21.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.208, -21.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.199, -21.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.174, -21.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.069, -21.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.081, -21.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.502, -21.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.499, -21.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.291, -21.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.296, -21.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.333, -21.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.322, -21.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.502, -21.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.408, -21.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.444, -21.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.423, -21.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.556, -21.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.554, -21.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.863, -65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.79, -65.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.813, -66.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.393, -62.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.388, -62.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.971, -62.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.979, -62.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.68, -62.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.677, -62.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.513, -27.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.524, -27.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.517, -27.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.504, -27.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.519, -27.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.559, -28.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.56, -28.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.599, -28.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.572, -28.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.61, -28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.581, -28.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.625, -28.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.636, -28.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.667, -28.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.639, -28.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.615, -28.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.639, -28.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.643, -28.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.642, -28.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.519, -29.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.452, -29.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.79, -29.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.48, -29.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.417, -29.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.387, -29.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.392, -29.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.811, -29.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.62, -29.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.578, -29.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.64, -29.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.397, -29.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.401, -29.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.308, -29.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.363, -29.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.622, -29.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.338, -30.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.329, -30.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.23, -30.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.169, -30.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.155, -30.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.156, -30.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.113, -30.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.11, -30.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.092, -30.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.107, -30.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.093, -30.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.101, -30.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.987, -30.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.054, -30.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.05, -30.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.06, -30.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.046, -30.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.021, -30.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.041, -30.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.064, -31.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.037, -31.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.966, -31.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.001, -31.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.001, -31.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.999, -31.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.091, -31.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.997, -31.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.825, -38.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.831, -38.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.805, -38.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.822, -38.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.761, -38.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.925, -38.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.815, -38.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.882, -39.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.909, -39.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.852, -39.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.924, -39.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.96, -39.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.928, -39.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.033, -39.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.047, -39.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.095, -39.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.066, -39.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.079, -39.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.084, -39.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.242, -39.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.234, -39.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.25, -39.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.256, -39.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.275, -39.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.276, -39.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.292, -39.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.282, -39.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.435, -39.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.476, -39.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.449, -39.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.541, -39.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.499, -39.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.538, -39.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.712, -40.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.695, -40.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.474, -40.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.977, -40.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.709, -40.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.708, -40.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.716, -40.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.904, -40.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.901, -40.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.851, -40.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.923, -40.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.927, -40.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.929, -40.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.94, -40.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.933, -40.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.555, -40.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.994, -41.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.953, -40.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.953, -41.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.956, -40.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.187, -41.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.224, -41.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.746, -41.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.797, -41.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.934, -41.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.873, -41.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.448, -41.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.33, -41.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.239, -41.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.245, -41.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.292, -41.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.313, -41.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.315, -41.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.668, -41.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.686, -41.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.711, -41.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.703, -41.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.842, -41.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.805, -41.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.781, -41.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.137, -41.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.185, -41.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.312, -41.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.238, -41.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.233, -41.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.275, -41.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.282, -41.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.286, -41.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.289, -41.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.267, -41.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.297, -41.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.538, -41.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.698, -41.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.752, -41.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.713, -41.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.784, -41.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.887, -41.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.602, -41.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.562, -41.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.43, -42.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.342, -41.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.452, -42.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.454, -42.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.458, -42.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.46, -42.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.103, -42.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.101, -42.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.16, -42.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.173, -42.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.239, -42.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.211, -42.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.232, -42.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.31, -42.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.632, -42.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.69, -42.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.763, -42.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.773, -42.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.855, -42.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.859, -42.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.883, -42.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.419, -42.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.43, -42.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.141, -43.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.492, -43.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.524, -43.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.531, -43.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.527, -43.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.609, -43.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.618, -43.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.106, -43.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.114, -43.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.219, -43.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.207, -43.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.209, -43.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.208, -43.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.791, -43.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.713, -43.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.839, -43.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.782, -43.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.798, -43.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.798, -43.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.86, -43.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.862, -43.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.194, -44.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.239, -44.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.228, -44.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.25, -44.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.306, -44.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.303, -44.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.821, -44.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.651, -44.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.723, -44.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.695, -44.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.749, -44.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.713, -44.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.782, -44.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.759, -44.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.665, -44.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.777, -44.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.242, -45.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.159, -45.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.796, -45.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.191, -45.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.219, -45.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.26, -45.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.267, -45.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.264, -46.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.265, -46.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.283, -46.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.265, -46.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.3, -46.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.292, -46.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.278, -46.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.296, -46.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.32, -47.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.298, -47.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.386, -47.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.326, -47.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.115, -47.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.27, -47.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.348, -47.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.456, -47.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.356, -47.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.283, -47.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.358, -47.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.722, -47.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.38, -47.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.381, -48.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.382, -48.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.38, -48.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.387, -48.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.406, -48.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.389, -48.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.285, -48.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.39, -48.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.401, -48.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.309, -48.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.304, -48.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.304, -48.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.278, -48.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.301, -48.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.252, -48.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.282, -48.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.279, -48.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.279, -48.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.186, -49.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.157, -49.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.123, -49.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.152, -49.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.121, -49.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.121, -49.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.053, -49.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.046, -49.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.035, -49.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.04, -49.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.069, -49.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.027, -49.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.024, -50.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.935, -50.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.885, -50.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.931, -50.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.012, -50.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.92, -50.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.92, -50.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.917, -50.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.698, -51.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.736, -51.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.656, -51.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.727, -51.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.606, -51.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.702, -51.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.713, -51.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.697, -51.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.486, -52.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.477, -51.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.452, -52.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.47, -52.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.492, -52.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.434, -52.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.402, -52.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.403, -52.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.239, -52.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.177, -52.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.969, -52.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.227, -52.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.95, -52.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.137, -52.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.318, -53.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.316, -53.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.299, -53.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.318, -53.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.361, -53.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.362, -53.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.375, -53.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.368, -53.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.385, -53.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.373, -53.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.314, -53.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.422, -53.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.206, -53.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.643, -53.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.877, -53.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.677, -53.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.314, -53.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.425, -54.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.373, -53.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.396, -54.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.391, -54.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.321, -54.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.381, -54.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.325, -54.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.352, -54.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.311, -54.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.369, -54.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.422, -54.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.369, -54.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.482, -54.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.372, -54.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.396, -55.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.429, -55.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.705, -55.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.645, -55.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.452, -55.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.447, -55.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.67, -55.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.246, -55.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.828, -56.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.84, -56.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.853, -56.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.851, -56.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.827, -56.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.857, -56.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.804, -56.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.861, -56.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.641, -57.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.639, -57.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.628, -57.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.619, -57.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.606, -57.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.2, -57.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.269, -57.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.307, -57.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.249, -57.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.225, -58.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.226, -58.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.237, -58.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.209, -58.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.187, -58.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.198, -58.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.221, -58.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.192, -58.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.181, -58.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.18, -58.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.949, -58.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.009, -58.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.961, -58.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.003, -58.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.008, -58.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.998, -58.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.04, -58.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.991, -58.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.853, -59.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.958, -59.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.632, -59.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.697, -59.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.856, -59.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.626, -59.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.656, -59.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.579, -59.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.639, -59.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.567, -59.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.634, -59.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.856, -59.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.614, -59.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.456, -60.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.494, -60.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.443, -60.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.445, -60.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.475, -60.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.558, -60.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.562, -60.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.561, -60.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.564, -60.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.598, -60.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.565, -60.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.596, -60.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.566, -60.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.574, -60.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.759, -60.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.637, -60.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.653, -60.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.575, -60.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.582, -60.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.578, -60.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.578, -60.47 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.58, -60.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.54, -60.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.545, -60.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.531, -60.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.389, -60.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.553, -60.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.566, -60.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.593, -60.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.576, -60.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.652, -60.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.733, -60.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.736, -60.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.741, -60.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.726, -60.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.791, -60.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.77, -60.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.799, -60.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.794, -60.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.789, -60.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.811, -60.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.803, -60.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.802, -60.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.807, -60.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.067, -60.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.877, -60.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.855, -60.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.865, -60.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.861, -60.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.876, -60.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.894, -60.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.893, -60.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.886, -60.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.883, -60.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.004, -60.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.017, -60.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.006, -60.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.991, -60.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.045, -60.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.879, -60.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.985, -60.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.01, -60.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.008, -60.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.983, -60.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.02, -60.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.005, -60.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.015, -60.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.004, -60.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.949, -60.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.613, -60.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.612, -60.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.564, -60.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.57, -60.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.536, -60.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.564, -60.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.514, -60.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.533, -60.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.419, -60.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.427, -60.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.433, -60.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.426, -60.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.409, -60.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.46, -60.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.428, -60.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.464, -60.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.428, -60.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.408, -60.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.424, -60.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.425, -60.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.324, -60.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.426, -60.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.415, -60.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.403, -60.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.413, -60.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.238, -60.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.245, -60.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.323, -60.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.232, -60.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.234, -60.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.225, -60.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.218, -60.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.216, -60.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.182, -60.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.201, -60.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.172, -60.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.188, -60.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.157, -60.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.163, -60.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.985, -60.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.141, -60.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.163, -60.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.228, -60.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.151, -60.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.164, -60.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.176, -60.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.164, -60.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.203, -60.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.161, -60.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.17, -60.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.155, -60.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.144, -60.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.15, -60.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.128, -60.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.141, -60.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.118, -60.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.109, -60.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.111, -60.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.049, -60.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.11, -60.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.06, -60.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.11, -60.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.113, -60.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.113, -60.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.125, -60.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.117, -60.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.1, -60.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.049, -60.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.05, -60.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.048, -60.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.042, -60.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.047, -60.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.041, -60.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.052, -60.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.02, -60.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.053, -60.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.084, -61.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.053, -60.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.073, -60.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.087, -60.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.081, -60.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.061, -60.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.104, -60.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.09, -60.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.076, -60.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.181, -60.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.166, -60.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.177, -60.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.167, -61.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.165, -61.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.172, -60.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.165, -60.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.159, -60.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.16, -60.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.124, -60.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.154, -60.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.021, -61.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.04, -61.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.05, -61.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.048, -61.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.047, -61.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.073, -61.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.097, -61.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.077, -60.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.025, -61.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.066, -61.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.045, -61.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.023, -61.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.045, -61.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.034, -61.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.047, -61.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.04, -61.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.049, -61.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.03, -61.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.054, -61.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.11, -61.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.059, -61.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.934, -61.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.939, -61.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.936, -61.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.933, -61.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.964, -61.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.819, -61.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.93, -61.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.12, -61.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.068, -61.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.988, -61.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.051, -61.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.96, -61.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.971, -61.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.962, -61.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.023, -61.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.0, -61.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.945, -61.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.976, -61.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.926, -61.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.972, -61.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.978, -61.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.918, -61.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.943, -61.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.933, -61.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.946, -61.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.958, -61.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.946, -61.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.954, -61.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.947, -61.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.957, -61.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.944, -61.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.944, -61.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.883, -61.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.942, -61.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.784, -61.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.88, -61.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.898, -61.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.899, -61.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.899, -61.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.777, -61.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.91, -61.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.897, -61.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.276, -61.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.897, -61.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.897, -61.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.873, -61.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.896, -61.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.989, -61.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.818, -61.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.819, -61.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.205, -61.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.786, -61.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.815, -61.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.766, -61.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.811, -61.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.946, -61.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.808, -61.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.506, -61.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.649, -61.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.649, -61.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.64, -61.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.645, -61.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.638, -61.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.649, -61.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.541, -61.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.629, -61.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.619, -61.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.741, -61.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.622, -61.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.614, -61.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.592, -61.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.602, -61.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.668, -61.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.61, -61.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.596, -61.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.628, -61.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.627, -61.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.612, -61.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.591, -61.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.656, -61.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.632, -61.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.636, -61.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.633, -61.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.619, -61.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.631, -61.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.653, -61.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.63, -61.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.576, -61.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.572, -61.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.539, -61.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.572, -61.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.559, -61.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.934, -61.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.024, -61.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.581, -61.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.547, -61.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.567, -61.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.536, -61.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.538, -61.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.575, -61.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.527, -61.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.514, -61.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.519, -61.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.588, -61.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.513, -61.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.517, -61.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.371, -61.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.4, -61.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.385, -61.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.399, -61.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.407, -61.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.403, -61.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.527, -61.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.421, -61.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.518, -61.468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.431, -61.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.524, -61.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.494, -61.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.555, -61.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.484, -61.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.492, -61.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.493, -61.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.473, -61.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.476, -61.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.443, -61.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.475, -61.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.508, -61.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.434, -61.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.466, -61.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.409, -61.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.183, -61.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.393, -61.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.451, -61.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.411, -61.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.462, -61.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.419, -61.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.39, -61.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.417, -61.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.379, -61.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.464, -61.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.411, -61.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.377, -61.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.456, -61.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.375, -61.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.351, -61.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.374, -61.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.643, -61.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.388, -61.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.263, -61.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.39, -61.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.376, -61.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.371, -61.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.371, -61.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.441, -61.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.452, -61.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.444, -61.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.484, -61.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.459, -61.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.479, -61.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.597, -61.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.661, -61.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.602, -61.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.604, -61.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.603, -61.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.643, -61.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.605, -61.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.623, -62.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.607, -61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.586, -61.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.607, -61.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.63, -61.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.611, -61.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.632, -61.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.612, -61.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.604, -61.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.618, -61.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.972, -61.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.914, -61.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.934, -61.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.885, -61.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.939, -61.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.883, -61.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.827, -61.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.83, -61.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.881, -61.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.64, -62.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.649, -62.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.646, -62.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.656, -62.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.7, -62.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.675, -62.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.691, -62.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.708, -62.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.689, -62.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.708, -62.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.713, -62.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.706, -62.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.6, -62.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.722, -62.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.703, -62.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.717, -62.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.677, -62.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.721, -62.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.694, -62.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.711, -62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.705, -62.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.717, -62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.715, -62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.692, -62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.724, -62.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.719, -62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.647, -62.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.725, -62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.724, -62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.683, -62.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.726, -62.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.756, -62.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.793, -62.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.728, -62.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.8, -62.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.797, -62.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.792, -62.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.797, -62.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.989, -61.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.828, -62.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.797, -62.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.778, -62.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.798, -62.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.796, -62.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.794, -62.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.728, -62.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.78, -62.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.791, -62.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.777, -62.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.789, -62.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.759, -62.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.245, -26.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.593, -26.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.532, -26.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.573, -26.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.64, -27.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.64, -27.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.649, -27.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.644, -27.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.639, -27.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.645, -27.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.653, -27.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.648, -27.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.702, -27.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.69, -27.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.69, -27.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.689, -27.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.684, -27.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.686, -27.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.641, -27.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.68, -27.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.553, -27.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.543, -27.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.529, -27.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.531, -27.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.511, -27.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.516, -27.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.522, -27.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.495, -27.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.488, -27.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.487, -27.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.482, -27.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.467, -27.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.469, -27.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.452, -28.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.454, -27.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.561, -27.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.558, -27.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.559, -27.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.563, -27.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.487, -27.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.563, -27.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.464, -27.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.473, -27.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.469, -27.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.467, -27.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.49, -27.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.464, -27.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.446, -28.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.461, -27.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.473, -28.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.458, -28.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.513, -28.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.516, -28.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.522, -28.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.519, -28.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.35, -27.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.537, -28.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.534, -28.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.52, -28.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.542, -28.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.733, -28.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.694, -28.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.715, -28.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.696, -28.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.719, -28.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.706, -28.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.669, -28.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.689, -28.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.714, -28.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.572, -29.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.669, -29.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.695, -29.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.666, -29.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.555, -29.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.543, -29.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.515, -29.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.522, -29.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.555, -29.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.525, -29.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.439, -30.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.437, -30.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.491, -30.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.415, -30.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.386, -30.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.399, -30.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.408, -30.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.385, -30.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.112, -30.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.121, -30.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.101, -30.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.099, -30.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.072, -30.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.083, -30.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.055, -30.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.073, -30.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.035, -30.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.033, -30.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.035, -30.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.034, -30.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.038, -30.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.987, -30.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.047, -30.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.07, -30.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.062, -30.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.012, -30.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.082, -30.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.081, -30.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.082, -30.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.082, -30.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.088, -30.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.083, -30.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.078, -30.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.083, -30.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.131, -31.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.16, -31.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.136, -31.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.163, -31.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.188, -31.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.166, -31.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.213, -31.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.167, -31.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.162, -31.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.164, -31.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.021, -31.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.982, -31.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.031, -31.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.782, -31.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.972, -31.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.936, -31.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.972, -31.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.924, -31.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.868, -31.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.856, -31.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.852, -31.759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.849, -31.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.85, -31.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.775, -31.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.849, -31.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.85, -31.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.874, -31.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.873, -31.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.897, -31.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.872, -31.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.89, -31.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.859, -31.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.765, -31.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.811, -31.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.816, -31.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.634, -31.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.647, -31.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.651, -31.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.643, -31.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.671, -31.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.66, -31.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.701, -32.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.699, -32.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.735, -32.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.701, -32.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.7, -32.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.705, -32.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.897, -32.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.708, -32.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.622, -32.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.641, -32.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.623, -32.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.624, -32.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.51, -32.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.487, -32.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.503, -32.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.48, -32.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.483, -32.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.459, -32.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.42, -32.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.449, -32.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.141, -32.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.956, -32.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.258, -32.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.259, -32.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.234, -32.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.228, -32.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.04, -32.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.062, -32.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.043, -32.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.063, -32.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.037, -32.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.002, -32.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.021, -32.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.75, -32.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.032, -32.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.015, -32.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.721, -33.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.744, -33.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.685, -33.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.742, -33.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.732, -33.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.712, -33.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.703, -33.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.05, -34.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.043, -34.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.877, -35.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.924, -35.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.936, -34.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.897, -35.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.882, -35.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.884, -35.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.876, -35.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.61, -35.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.553, -35.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.529, -35.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.534, -35.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.525, -35.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.536, -35.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.5, -35.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.548, -35.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.494, -35.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.252, -35.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.33, -35.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.332, -35.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.318, -35.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.258, -35.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.248, -35.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.262, -35.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.252, -35.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.314, -35.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.116, -35.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.2, -35.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.24, -35.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.324, -35.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.252, -35.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.254, -35.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.252, -35.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.222, -35.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.249, -35.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.239, -35.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.219, -35.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.247, -35.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.12, -36.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.201, -36.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.2, -36.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.196, -36.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.163, -36.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.193, -36.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.138, -36.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.169, -36.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.077, -36.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.111, -36.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.084, -36.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.068, -36.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.068, -36.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.067, -36.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.054, -36.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.019, -36.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.993, -36.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.017, -36.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.956, -36.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.978, -36.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.006, -36.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.005, -36.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.937, -36.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.942, -36.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.942, -37.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.96, -37.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.984, -37.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.963, -37.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.956, -37.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.023, -37.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.03, -37.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.024, -37.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.065, -37.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.096, -37.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.031, -37.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.033, -37.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.986, -37.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.017, -37.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.953, -37.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.966, -37.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.01, -37.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.013, -37.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.922, -37.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.921, -37.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.905, -37.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.894, -37.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.841, -37.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.863, -37.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.659, -37.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.646, -37.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.638, -37.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.618, -37.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.61, -37.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.61, -37.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.565, -37.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.567, -37.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.721, -37.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.223, -37.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.224, -37.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.182, -37.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.167, -37.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.154, -37.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.166, -37.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.923, -37.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.922, -37.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.92, -37.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.919, -37.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.876, -37.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.875, -37.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.849, -37.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.861, -37.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.792, -37.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.817, -37.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.817, -37.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.814, -37.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.535, -37.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.543, -37.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.532, -37.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.214, -38.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.21, -38.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.193, -38.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.204, -38.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.051, -38.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.073, -38.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.048, -38.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.067, -38.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.044, -38.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.061, -38.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.061, -38.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.085, -38.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.06, -38.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.058, -38.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.06, -38.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.199, -38.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.193, -38.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.277, -38.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.208, -38.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.206, -38.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.159, -38.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.213, -38.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.208, -39.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.203, -39.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.253, -39.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.226, -39.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.199, -39.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.983, -39.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.186, -39.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.995, -39.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.992, -39.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.953, -39.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.949, -39.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.027, -39.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.88, -39.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.881, -39.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.805, -39.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.772, -39.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.763, -39.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.763, -39.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.732, -39.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.734, -39.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.733, -39.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.731, -39.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.522, -39.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.55, -39.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.486, -39.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.539, -39.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.537, -39.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.421, -40.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.413, -40.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.363, -40.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.405, -40.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.388, -40.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.371, -40.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.301, -40.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.342, -40.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.349, -40.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.397, -40.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.384, -40.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.378, -40.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.385, -40.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.378, -40.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.382, -40.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.384, -40.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.379, -40.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.372, -40.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.376, -40.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.36, -40.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.365, -40.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.395, -40.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.367, -40.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.465, -40.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.465, -40.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.473, -40.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.485, -40.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.487, -40.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.77, -40.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.755, -40.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.693, -40.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.703, -40.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.796, -40.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.797, -40.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.886, -40.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.883, -40.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.912, -40.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.861, -40.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.803, -40.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.84, -40.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.61, -40.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.615, -40.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.596, -40.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.597, -40.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.585, -40.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.596, -40.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.609, -40.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.607, -40.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.612, -40.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.61, -40.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.493, -40.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.497, -40.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.494, -40.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.496, -40.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.472, -40.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.472, -40.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.485, -40.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.447, -40.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.438, -40.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.439, -40.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.533, -40.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.125, -40.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.102, -40.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.121, -40.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.088, -40.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.094, -40.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.076, -40.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.888, -41.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.891, -40.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.941, -41.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.848, -40.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.858, -40.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.863, -40.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.853, -40.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.813, -41.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.791, -41.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.794, -41.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.789, -41.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.781, -41.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.784, -41.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.804, -41.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.783, -41.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.999, -40.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.989, -40.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.995, -40.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.994, -40.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.991, -40.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.995, -40.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.006, -40.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.996, -40.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.033, -40.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.995, -40.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.994, -40.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.964, -40.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.99, -40.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.976, -40.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.988, -40.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.913, -40.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.981, -40.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.943, -40.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.944, -40.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.988, -40.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.944, -40.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.013, -40.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.944, -40.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.081, -40.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.142, -40.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.16, -40.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.159, -40.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.181, -40.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.186, -40.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.256, -40.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.207, -40.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.259, -40.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.224, -40.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.604, -40.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.601, -40.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.653, -40.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.631, -40.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.659, -40.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.66, -40.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.697, -40.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.683, -40.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.703, -40.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.701, -40.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.728, -40.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.209, -40.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.204, -40.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.249, -40.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.199, -40.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.241, -40.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.176, -40.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.262, -40.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.339, -40.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.343, -40.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.358, -40.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.357, -40.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.371, -41.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.354, -41.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.202, -41.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.335, -41.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.336, -41.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.324, -41.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.332, -41.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.311, -41.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.343, -41.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.447, -41.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.352, -41.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.363, -41.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.358, -41.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.457, -41.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.367, -41.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.172, -41.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.35, -41.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.32, -41.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.352, -41.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.362, -41.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.374, -41.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.402, -41.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.381, -41.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.401, -41.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.398, -41.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.454, -42.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.463, -42.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.514, -42.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.475, -42.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.601, -42.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.49, -42.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.399, -42.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.498, -42.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.368, -42.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.505, -42.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.375, -42.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.397, -42.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.395, -42.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.38, -42.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.393, -42.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.414, -42.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.373, -42.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.168, -42.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.166, -42.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.175, -42.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.151, -42.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.105, -42.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.133, -42.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.029, -42.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.105, -42.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.087, -42.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.105, -42.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.134, -43.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.106, -43.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.101, -43.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.106, -43.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.17, -43.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.107, -43.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.062, -43.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.138, -43.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.11, -43.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.226, -43.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.198, -43.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.233, -43.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.204, -43.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.21, -43.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.211, -43.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.219, -43.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.216, -43.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.141, -43.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.14, -43.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.177, -43.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.14, -43.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.155, -43.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.124, -43.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.119, -43.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.121, -43.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.104, -43.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.115, -43.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.947, -44.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.945, -44.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.947, -44.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.978, -44.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.945, -44.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.929, -44.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.947, -44.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.918, -44.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.747, -44.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.756, -44.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.725, -44.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.709, -44.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.717, -44.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.718, -44.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.71, -44.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.519, -44.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.598, -44.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.593, -44.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.594, -44.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.547, -44.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.598, -44.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.604, -44.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.603, -44.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.609, -44.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.607, -44.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.594, -44.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.59, -44.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.584, -44.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.588, -44.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.605, -44.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.587, -44.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.586, -45.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.585, -45.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.585, -45.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.609, -45.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.561, -45.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.54, -45.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.557, -45.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.551, -45.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.576, -45.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.594, -45.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.567, -45.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.573, -45.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.61, -45.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.624, -45.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.632, -45.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.637, -45.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.961, -45.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.896, -45.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.919, -45.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.914, -45.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.937, -45.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.915, -45.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.925, -45.927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.928, -45.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.929, -45.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.906, -45.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.929, -45.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.923, -45.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.872, -46.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.875, -46.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.885, -46.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.882, -46.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.888, -46.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.942, -46.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.886, -46.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.88, -46.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.887, -46.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.014, -46.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.827, -46.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.818, -46.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.826, -46.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.829, -46.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.83, -46.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.855, -46.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.846, -46.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.017, -46.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.101, -46.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.037, -46.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.12, -46.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.143, -46.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.156, -46.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.172, -46.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.168, -46.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.334, -46.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.345, -46.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.427, -46.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.394, -46.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.426, -46.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.427, -46.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.413, -46.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.433, -46.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.44, -46.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.605, -46.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.603, -46.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.636, -46.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.589, -46.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.607, -46.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.606, -46.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.608, -46.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.62, -46.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.854, -46.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.843, -46.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.872, -46.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.846, -46.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.845, -46.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.845, -46.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.71, -46.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.825, -46.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.831, -46.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.78, -47.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.825, -47.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.909, -47.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.968, -47.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.921, -47.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.972, -47.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.013, -47.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.028, -47.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.031, -47.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.03, -47.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.083, -47.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.081, -47.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.132, -47.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.105, -47.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.316, -47.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.448, -47.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.563, -47.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.523, -47.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.583, -47.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.573, -47.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.599, -47.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.953, -47.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.952, -47.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.907, -47.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.036, -47.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.018, -47.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.03, -47.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.068, -47.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.1, -47.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.095, -47.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.108, -47.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.103, -47.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.462, -47.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.486, -47.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.494, -47.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.495, -47.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.532, -47.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.532, -47.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.593, -47.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.55, -47.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.906, -47.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.942, -47.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.838, -47.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.951, -47.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.026, -47.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.444, -47.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.457, -47.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.476, -47.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.475, -47.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.879, -48.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.874, -48.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.924, -48.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.927, -48.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.958, -48.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.947, -48.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.46, -48.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.465, -48.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.53, -48.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.506, -48.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.571, -48.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.57, -48.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.638, -48.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.639, -48.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.652, -48.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.66, -48.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.135, -48.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.131, -48.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.164, -48.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.166, -48.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.226, -48.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.223, -48.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.282, -48.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.287, -48.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.657, -48.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.663, -48.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.675, -48.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.817, -48.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.684, -48.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.733, -48.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.916, -48.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.932, -48.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.956, -48.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.958, -48.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.034, -48.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.988, -48.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.048, -49.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.031, -49.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.059, -48.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.05, -49.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.061, -49.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.063, -49.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.468, -49.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.467, -49.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.495, -49.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.497, -49.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.558, -49.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.565, -49.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.584, -49.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.577, -49.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.01, -49.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.025, -49.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.075, -49.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.075, -49.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.115, -49.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.104, -49.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.158, -49.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.161, -49.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.188, -49.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.174, -49.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 154.966, -49.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.524, -49.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.54, -49.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.652, -49.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 155.623, -49.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.14, -50.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.155, -50.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.157, -50.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.129, -50.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.209, -50.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.223, -50.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.742, -50.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.712, -50.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.759, -50.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.792, -50.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.84, -50.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.804, -50.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.9, -50.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 156.875, -50.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.208, -50.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.18, -50.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.148, -50.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.186, -50.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.226, -50.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.225, -50.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.269, -50.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.23, -50.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.255, -51.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.26, -51.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.528, -51.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.521, -51.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.518, -51.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.524, -51.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.54, -51.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.56, -51.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.549, -51.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.562, -51.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.56, -51.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.563, -51.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.603, -51.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.603, -51.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.805, -51.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.799, -51.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.79, -51.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.81, -51.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.771, -51.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.812, -51.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.815, -51.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 157.819, -51.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.111, -51.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.204, -51.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.156, -51.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.208, -51.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.217, -51.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.212, -51.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.498, -51.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.527, -51.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.604, -51.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.586, -51.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.595, -51.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.657, -51.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.656, -51.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.646, -51.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.662, -51.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.994, -52.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.989, -52.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.845, -52.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.026, -52.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 158.998, -52.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.103, -52.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.038, -52.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.218, -52.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.192, -52.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.198, -52.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.199, -52.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.236, -52.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.228, -52.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.204, -52.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.23, -52.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.464, -53.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.457, -53.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.511, -53.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.909, -53.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.921, -53.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.943, -53.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.945, -53.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.994, -53.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.988, -53.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.984, -53.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 159.989, -53.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.029, -53.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.013, -53.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.308, -53.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.373, -53.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.362, -53.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.449, -53.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.395, -53.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.397, -53.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.504, -53.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.444, -53.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.963, -53.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 160.986, -53.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.13, -53.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.124, -53.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.132, -53.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.127, -53.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.18, -53.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.181, -53.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.303, -53.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.232, -53.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.234, -53.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.236, -53.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.237, -53.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.937, -53.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.852, -53.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.859, -53.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.924, -53.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.912, -53.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.913, -53.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 161.918, -53.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.026, -53.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.028, -53.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.351, -53.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.406, -53.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.45, -53.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.45, -53.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.544, -53.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.491, -53.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.482, -53.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.52, -53.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.518, -53.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.572, -53.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.543, -53.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.69, -53.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.656, -53.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.692, -53.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.663, -53.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.664, -53.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.698, -53.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.683, -53.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.637, -53.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.78, -53.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.782, -53.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.806, -53.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.787, -53.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.788, -53.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.788, -53.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.791, -53.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.795, -53.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.809, -53.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.802, -53.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.81, -53.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.697, -53.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.807, -53.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.901, -53.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.939, -53.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.875, -53.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.93, -53.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.933, -53.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.932, -53.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.277, -54.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.255, -54.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.245, -54.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.265, -54.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.293, -54.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.269, -54.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.296, -54.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.316, -54.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.345, -54.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.338, -54.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.436, -54.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.406, -54.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.406, -54.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.408, -54.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.455, -54.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.41, -54.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.448, -54.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.442, -54.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.446, -54.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.446, -54.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.435, -54.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.466, -54.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.448, -54.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.432, -54.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.425, -54.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.432, -54.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.428, -54.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.432, -54.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.471, -54.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.463, -54.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.731, -54.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.73, -54.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.702, -55.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.738, -55.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.712, -55.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.776, -55.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.784, -55.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.784, -55.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.062, -55.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.065, -55.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.076, -55.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.07, -55.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.145, -55.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.115, -55.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.089, -55.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.121, -55.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.123, -55.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.185, -55.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.181, -55.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.175, -55.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.191, -55.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.488, -55.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.553, -55.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.557, -55.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.594, -55.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.569, -55.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.137, -56.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.141, -56.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.218, -56.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.215, -56.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.22, -56.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.219, -56.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.222, -56.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.235, -56.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.298, -56.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.272, -56.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.312, -56.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.631, -56.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.606, -56.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.59, -56.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.613, -56.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.572, -56.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.603, -56.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.606, -56.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.935, -56.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.94, -56.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.955, -56.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.951, -56.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.955, -56.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.957, -56.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.015, -56.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.008, -56.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.963, -56.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.047, -56.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.042, -56.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.149, -57.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.17, -57.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.155, -57.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.174, -57.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.226, -57.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.217, -57.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.241, -57.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.233, -57.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.671, -57.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.658, -57.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.676, -57.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.668, -57.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.019, -57.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.723, -57.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.714, -57.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.695, -57.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.724, -57.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.721, -57.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.735, -57.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.775, -57.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.764, -57.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.322, -57.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.35, -57.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.352, -57.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.395, -57.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.414, -57.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.447, -57.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.443, -57.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.902, -57.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.907, -57.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.879, -57.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.945, -57.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.019, -57.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.972, -57.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.054, -57.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.022, -57.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.076, -57.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.036, -57.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.099, -57.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.054, -57.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.103, -57.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.08, -57.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.1, -57.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.135, -57.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.124, -57.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.155, -57.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.156, -57.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.187, -57.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.175, -57.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.564, -57.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.561, -57.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.602, -57.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.609, -57.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.616, -57.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.591, -57.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.651, -57.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.589, -57.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.866, -57.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.91, -57.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.892, -57.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.904, -57.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.913, -57.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.946, -57.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.947, -57.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.993, -57.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.985, -57.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.002, -57.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.01, -57.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.001, -57.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.013, -57.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.459, -57.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.468, -57.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.505, -57.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.497, -57.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.629, -57.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.603, -57.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.966, -58.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.009, -58.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.048, -58.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.02, -58.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.047, -58.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.026, -58.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.024, -58.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.05, -58.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.057, -58.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.054, -58.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.05, -58.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.056, -58.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.109, -58.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.107, -58.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.236, -58.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.111, -58.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.147, -58.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.112, -58.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.109, -58.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.113, -58.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.276, -58.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.312, -58.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.416, -58.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.318, -58.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.35, -58.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.328, -58.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.298, -58.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.342, -58.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.383, -58.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.349, -58.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.937, -59.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.961, -59.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.988, -59.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.956, -59.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.803, -59.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.931, -59.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.879, -59.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.888, -59.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.866, -59.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.865, -59.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.675, -60.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.68, -60.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.634, -60.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.656, -60.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.656, -60.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.656, -60.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.689, -60.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.667, -60.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.602, -60.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.677, -60.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.596, -60.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.294, -60.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.295, -60.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.278, -60.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.276, -60.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.109, -61.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.231, -61.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.246, -61.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.248, -61.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.253, -61.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.25, -61.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.255, -61.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.255, -61.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.267, -61.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.265, -61.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.268, -61.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.259, -61.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.269, -61.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.169, -61.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.176, -61.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.177, -61.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.169, -61.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.178, -61.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.164, -61.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.18, -62.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.189, -62.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.178, -62.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.192, -62.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.228, -62.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.216, -62.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.212, -62.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.204, -62.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.215, -62.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.22, -62.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.278, -62.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.232, -62.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.257, -62.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.247, -62.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.269, -62.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.254, -62.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.372, -62.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.368, -62.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.349, -62.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.368, -62.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.264, -62.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.365, -62.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.36, -62.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.364, -62.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.528, -62.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.533, -62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.525, -62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.535, -62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.559, -62.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.518, -62.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.548, -62.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.541, -62.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.555, -62.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.587, -62.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.556, -62.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.607, -62.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.556, -62.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.541, -62.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.553, -62.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.679, -62.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.678, -62.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.672, -62.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.685, -62.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.665, -62.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.689, -62.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.544, -62.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.691, -62.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.731, -62.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.725, -62.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.784, -62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.726, -62.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.721, -62.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.725, -62.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.678, -62.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.724, -62.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.539, -62.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.706, -62.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.714, -62.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.682, -62.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.702, -62.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.747, -62.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.7, -62.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.686, -62.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.689, -62.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.654, -62.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.678, -62.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.763, -62.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.732, -62.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.723, -62.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.737, -62.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.761, -62.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.737, -62.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.742, -62.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.936, -63.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.882, -63.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.895, -63.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.931, -63.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.891, -63.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.904, -63.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.895, -63.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.89, -63.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.897, -63.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.866, -63.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.9, -63.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.9, -63.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.889, -63.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.897, -63.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.903, -63.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.104, -63.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.1, -63.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.097, -63.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.104, -63.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.108, -63.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.11, -63.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.112, -63.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.113, -63.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.178, -63.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.201, -63.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.166, -63.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.205, -63.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.162, -63.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.21, -63.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.219, -63.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.216, -63.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.483, -64.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.243, -63.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.237, -63.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.191, -63.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.241, -63.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.193, -63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.247, -63.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.246, -63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.25, -63.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.252, -63.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.25, -63.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.368, -64.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.369, -64.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.361, -64.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.374, -64.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.358, -64.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.401, -64.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.399, -64.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.392, -64.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.405, -64.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.27, -64.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.271, -64.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.256, -64.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.27, -64.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.289, -64.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.269, -64.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.267, -64.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.27, -64.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.277, -64.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.273, -64.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.297, -64.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.195, -64.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.313, -64.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.316, -64.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.358, -64.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.327, -64.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.332, -64.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.356, -64.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.35, -64.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.39, -64.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.389, -64.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.17, -64.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.185, -64.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.182, -64.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.179, -64.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.187, -64.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.141, -64.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.127, -64.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.275, -64.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.142, -64.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.147, -64.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.155, -64.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.146, -64.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.169, -64.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.932, -64.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.229, -64.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.217, -64.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.253, -64.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.231, -64.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.282, -64.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.239, -64.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.258, -64.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.244, -64.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.31, -64.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.249, -64.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.289, -64.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.258, -64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.261, -64.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.258, -64.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.251, -64.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.256, -64.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.225, -64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.255, -64.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.043, -64.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.036, -64.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.027, -64.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.994, -64.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.955, -64.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.96, -64.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.866, -64.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.914, -64.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.2, -64.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.202, -64.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.203, -64.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.205, -64.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.263, -64.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.27, -64.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.27, -64.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.3, -64.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.326, -64.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.316, -64.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.32, -64.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.364, -64.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.356, -64.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.371, -64.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.372, -64.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.366, -64.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.386, -64.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.385, -64.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.39, -64.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.397, -64.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.397, -64.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.395, -64.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.399, -64.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.548, -65.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.54, -64.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.525, -65.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.047, -65.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.046, -65.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.014, -65.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.006, -65.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.993, -65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.997, -65.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.983, -65.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.99, -65.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.159, -65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.979, -65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.974, -65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.98, -65.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.968, -65.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.949, -65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.941, -65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.961, -65.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.024, -65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.935, -65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.515, -65.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.529, -65.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.528, -65.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.512, -65.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.462, -65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.463, -65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.347, -65.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.328, -65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.33, -65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.326, -65.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.301, -65.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.326, -65.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.256, -65.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.33, -65.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.323, -65.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.351, -65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.324, -65.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.36, -65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.342, -65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.374, -65.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.37, -65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.387, -65.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.397, -65.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.398, -65.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.452, -65.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.434, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.442, -65.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.437, -65.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.403, -65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.404, -65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.408, -65.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.391, -65.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.296, -65.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.355, -65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.296, -65.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.302, -65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.258, -65.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.266, -65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.397, -65.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.211, -65.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.621, -65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.613, -65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.564, -65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.574, -65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.577, -65.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.637, -65.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.571, -65.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.596, -65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.611, -65.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.603, -65.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.61, -65.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.611, -65.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.599, -65.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.684, -65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.661, -65.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.678, -65.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.625, -65.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.584, -65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.606, -65.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.64, -65.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.642, -65.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.678, -65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.659, -65.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.968, -65.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.819, -65.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.838, -65.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.823, -65.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.872, -65.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.823, -65.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.843, -65.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.819, -65.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.791, -65.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.807, -65.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.799, -65.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.796, -65.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.797, -65.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.787, -65.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.778, -65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.783, -65.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.285, -65.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.277, -65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.226, -65.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.235, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.13, -65.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.3, -65.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.283, -65.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.292, -65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.302, -65.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.282, -65.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.284, -65.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.118, -65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.269, -65.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.282, -65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.312, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.28, -65.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.251, -65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.256, -65.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.275, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.078, -65.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.069, -65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.061, -65.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.056, -65.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.993, -65.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.022, -65.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.986, -65.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.309, -65.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.357, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.298, -65.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.352, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.331, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.346, -65.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.338, -65.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.312, -65.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.337, -65.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.357, -65.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.336, -65.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.357, -65.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.356, -65.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.335, -65.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.326, -65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.394, -65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.306, -65.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.315, -65.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.314, -65.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.292, -65.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.027, -65.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.01, -65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.005, -65.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.009, -65.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.931, -65.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.987, -65.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.033, -65.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.984, -65.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.99, -65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.928, -65.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.778, -65.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.937, -65.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.924, -65.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.884, -65.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.895, -65.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.896, -65.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.887, -65.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.892, -65.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.888, -65.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.866, -65.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.879, -65.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.872, -65.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.872, -65.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.883, -65.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.871, -65.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.87, -65.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.919, -65.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.902, -65.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.904, -65.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.902, -65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.87, -65.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.877, -65.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.876, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.872, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.721, -65.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.792, -65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.791, -65.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.737, -65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.781, -65.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.646, -65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.705, -65.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.767, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.694, -65.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.764, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.718, -65.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.748, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.7, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.729, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.719, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.728, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.736, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.727, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.098, -65.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.086, -65.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.0, -65.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.071, -65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.977, -65.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.99, -65.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.988, -65.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.84, -65.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.838, -65.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.815, -65.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.841, -65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.842, -65.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.832, -65.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.829, -65.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.831, -65.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.826, -65.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.831, -65.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.825, -65.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.94, -65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.788, -65.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.814, -65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.788, -65.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.809, -65.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.819, -65.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.807, -65.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.799, -65.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.805, -65.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.786, -65.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.784, -65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.757, -65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.783, -65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.781, -65.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.793, -65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.715, -65.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.75, -65.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.749, -65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.735, -65.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.749, -65.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.68, -65.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.763, -65.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.749, -65.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.737, -65.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.752, -65.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.74, -65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.727, -65.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.739, -65.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.76, -65.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.779, -65.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.799, -65.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.832, -65.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.838, -65.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.837, -65.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.855, -65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.841, -65.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.816, -65.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.847, -65.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.863, -65.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.901, -65.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.885, -65.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.885, -65.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.789, -65.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.756, -65.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.729, -65.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.755, -65.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.695, -65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.704, -65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.716, -65.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.749, -65.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.698, -65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.655, -65.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.647, -65.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.688, -65.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.644, -65.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.646, -65.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.634, -65.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.638, -65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.633, -65.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.611, -65.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.623, -65.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.638, -65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.598, -65.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.623, -65.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.655, -65.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.644, -65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.671, -65.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.646, -65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.637, -65.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.644, -65.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.647, -65.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.644, -65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.778, -65.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.566, -65.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.537, -65.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.538, -65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.539, -65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.534, -65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.608, -65.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.605, -65.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.534, -65.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.565, -65.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.615, -65.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.634, -65.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.612, -65.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.597, -65.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.616, -65.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.606, -65.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.599, -65.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.565, -65.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.595, -65.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.635, -65.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.588, -65.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.604, -65.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.591, -65.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.588, -65.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.598, -65.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.59, -65.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.802, -65.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.793, -65.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.805, -65.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.805, -65.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.826, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.724, -65.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.759, -65.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.741, -65.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.76, -65.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.767, -65.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.769, -65.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.792, -65.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.786, -65.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.883, -65.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.832, -65.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.815, -65.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.837, -65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.756, -65.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.849, -65.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.813, -65.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.796, -65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.814, -65.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.793, -65.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.69, -65.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.783, -65.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.719, -65.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.862, -65.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.706, -65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.857, -65.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.756, -65.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.858, -65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.893, -65.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.859, -65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.82, -65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.855, -65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.914, -65.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.854, -65.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.882, -65.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.866, -65.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.876, -65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.875, -65.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.857, -65.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.859, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.859, -65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.858, -65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.876, -65.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.837, -65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.857, -65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.039, -65.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.854, -65.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.966, -65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.004, -65.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.728, -65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.732, -65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.75, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.728, -65.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.773, -65.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.726, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.73, -65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.776, -65.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.711, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.708, -65.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.742, -65.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.702, -65.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.721, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.693, -65.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.691, -65.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.691, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.684, -65.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.69, -65.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.666, -65.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.663, -65.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.664, -65.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.662, -65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.589, -65.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.6, -65.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.202, -65.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.271, -65.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.296, -65.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.268, -65.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.27, -65.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.23, -65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.278, -65.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.925, -65.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.215, -65.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.226, -65.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.674, -65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.688, -65.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.657, -65.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.697, -65.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.624, -65.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.597, -65.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.605, -65.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.31, -64.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.289, -64.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.268, -64.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.31, -64.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.327, -64.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.336, -64.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.329, -64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.384, -64.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.33, -64.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.26, -64.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.353, -64.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.304, -64.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.323, -64.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.774, -65.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.793, -65.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.423, -65.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.459, -65.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.635, -65.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.4, -65.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.382, -65.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.505, -65.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.495, -65.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.901, -66.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.859, -66.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.886, -66.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.874, -66.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.873, -66.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.023, -67.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.121, -67.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.135, -67.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.145, -67.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.137, -67.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.134, -67.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.169, -67.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.156, -67.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 162.528, -66.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.396, -67.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.277, -67.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.38, -67.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 163.279, -67.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.389, -66.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.253, -66.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.306, -66.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.316, -66.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.32, -66.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.349, -66.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.609, -66.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.619, -66.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.643, -66.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.63, -66.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.614, -66.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.653, -66.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.809, -67.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.691, -66.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.665, -66.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.677, -66.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.668, -66.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.674, -66.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.668, -66.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.665, -66.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.672, -66.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.687, -66.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.692, -66.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.696, -66.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.702, -66.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.693, -66.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 164.698, -66.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.063, -66.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.1, -66.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.176, -66.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.137, -66.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.374, -66.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.336, -66.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.339, -66.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.338, -66.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.34, -66.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.771, -66.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.317, -66.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.332, -66.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.34, -66.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.331, -66.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.341, -66.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.331, -66.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.376, -66.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.325, -66.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.338, -66.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.374, -66.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.34, -66.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.363, -66.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.34, -66.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.337, -66.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.343, -66.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.346, -66.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.344, -66.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.356, -66.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.347, -66.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.816, -66.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.506, -66.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.505, -66.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.493, -66.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.514, -66.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.355, -66.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.362, -66.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.359, -66.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.36, -66.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.359, -66.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.362, -66.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.366, -66.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.362, -66.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.362, -66.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.364, -66.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.357, -66.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.366, -66.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.368, -66.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.388, -66.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.378, -66.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.371, -66.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.379, -66.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.36, -66.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.375, -66.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.384, -66.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.397, -66.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.385, -66.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.469, -66.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.423, -66.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.41, -66.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.423, -66.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.422, -66.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.817, -66.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.496, -66.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.506, -66.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.529, -66.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.513, -66.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.567, -66.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.514, -66.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.524, -66.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.476, -66.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.509, -66.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.499, -66.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.505, -66.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.465, -66.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.492, -66.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.493, -66.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.433, -66.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.489, -66.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.48, -66.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.471, -66.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.481, -66.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.482, -66.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.477, -66.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.717, -66.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.687, -66.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.7, -66.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.699, -66.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.769, -66.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.708, -66.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.721, -66.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.713, -66.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.85, -66.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.881, -66.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.885, -66.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.897, -66.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.886, -66.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.898, -66.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.922, -66.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.965, -66.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.027, -66.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 165.996, -66.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.026, -66.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.03, -66.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.01, -66.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.053, -66.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.096, -66.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.077, -66.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.145, -66.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.121, -66.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.137, -66.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.142, -66.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.144, -66.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.163, -66.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.158, -66.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.172, -66.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.55, -66.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.562, -66.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.617, -66.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.621, -66.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.7, -66.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.695, -66.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.828, -66.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.765, -66.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.966, -67.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.989, -67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.005, -67.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.998, -67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.022, -67.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.0, -67.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.992, -67.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.0, -67.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.011, -67.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.999, -67.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.991, -67.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.977, -67.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.986, -67.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.975, -67.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.984, -67.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.941, -67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.001, -67.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.983, -67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.016, -67.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.984, -67.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.931, -67.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.984, -67.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.961, -67.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.989, -67.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.993, -67.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.993, -67.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.075, -67.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.998, -67.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.953, -67.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.007, -67.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.003, -67.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.011, -67.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.033, -67.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.023, -67.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.037, -67.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.096, -67.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.049, -67.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.056, -67.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.073, -67.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.057, -67.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.071, -67.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.077, -67.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.076, -67.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.063, -67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.103, -67.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.079, -67.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.061, -67.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.081, -67.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.041, -67.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.046, -67.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.028, -67.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.052, -67.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.057, -67.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.052, -67.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.078, -67.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.053, -67.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.052, -67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.054, -67.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.05, -67.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.001, -67.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.904, -67.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.824, -67.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.882, -67.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.883, -67.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.906, -67.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.932, -67.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.984, -67.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.933, -67.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.935, -67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.245, -67.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.546, -67.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.937, -67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.939, -67.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.958, -67.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.948, -67.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.0, -67.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.95, -67.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.956, -67.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.956, -67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.006, -67.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.959, -67.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.918, -67.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.93, -67.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.878, -67.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.929, -67.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.891, -67.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.927, -67.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.912, -67.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.927, -67.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.975, -67.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.927, -67.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.99, -67.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.86, -67.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.984, -67.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.927, -67.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.907, -67.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.924, -67.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.894, -67.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.923, -67.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.957, -67.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.92, -67.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.793, -67.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.913, -67.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.801, -67.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 166.912, -67.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.189, -67.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.267, -67.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.294, -67.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.465, -67.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.444, -67.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.451, -67.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.446, -67.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.437, -67.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.448, -67.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.435, -67.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.438, -67.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.447, -67.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.441, -67.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.577, -67.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.449, -67.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 167.454, -67.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.028, -67.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.725, -67.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.751, -67.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.95, -67.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.938, -67.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.145, -67.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.108, -67.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.073, -67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.091, -67.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.076, -67.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.087, -67.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.076, -67.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.072, -67.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.154, -67.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.068, -67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.074, -67.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.096, -67.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.079, -67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.071, -67.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.1, -67.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.065, -67.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.068, -67.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.078, -67.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.067, -67.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.05, -67.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.066, -67.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.053, -67.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.061, -67.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.05, -67.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.04, -67.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.954, -67.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.001, -67.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.008, -67.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.002, -67.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.992, -67.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.002, -67.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.0, -67.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.029, -67.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.995, -67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.002, -67.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.99, -67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.003, -67.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.018, -67.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.008, -67.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.009, -67.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.011, -67.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.962, -67.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.015, -67.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.016, -67.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.019, -67.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.019, -67.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.923, -67.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.268, -67.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.181, -67.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.181, -67.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.166, -67.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.183, -67.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.203, -67.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.204, -67.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.382, -67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.28, -67.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.552, -67.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.531, -67.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.567, -67.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.532, -67.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.536, -67.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.536, -67.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.506, -67.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.54, -67.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.54, -67.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.508, -67.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.541, -67.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.586, -67.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.535, -67.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.544, -67.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.551, -67.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.545, -67.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.576, -67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.56, -67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.559, -67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.562, -67.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.563, -67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.572, -67.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.57, -67.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.504, -67.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.548, -67.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.574, -67.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.561, -67.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.53, -67.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.496, -67.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.524, -67.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.512, -67.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.517, -67.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.515, -67.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.512, -67.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.599, -67.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.424, -67.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.428, -67.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.412, -67.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.424, -67.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.434, -67.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.423, -67.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.448, -67.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.42, -67.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.434, -67.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.412, -67.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.409, -67.576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.413, -67.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.411, -67.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.437, -67.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.411, -67.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.402, -67.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.451, -67.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.412, -67.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.425, -67.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.418, -67.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.68, -67.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.644, -67.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.523, -67.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.676, -67.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.68, -67.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.74, -67.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.702, -67.563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.699, -67.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.714, -67.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.603, -67.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.609, -67.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.593, -67.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.581, -67.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.589, -67.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.568, -67.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.589, -67.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.587, -67.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.622, -67.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.583, -67.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.582, -67.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.578, -67.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.593, -67.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.577, -67.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.579, -67.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.576, -67.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.601, -67.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.573, -67.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.594, -67.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.566, -67.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.563, -67.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.554, -67.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.528, -67.571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.546, -67.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.629, -67.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.6, -67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.601, -67.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.594, -67.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.621, -67.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.616, -67.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.479, -67.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.481, -67.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.479, -67.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.479, -67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.494, -67.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.5, -67.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.472, -67.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.502, -67.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.473, -67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.496, -67.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.472, -67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.47, -67.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.469, -67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.406, -67.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.473, -67.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.45, -67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.433, -67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.437, -67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.438, -67.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.423, -67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.1, -67.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.509, -67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.416, -67.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.517, -67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.503, -67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.472, -67.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.499, -67.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.513, -67.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.509, -67.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.582, -67.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.518, -67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.467, -67.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.519, -67.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.471, -67.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.471, -67.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.473, -67.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.479, -67.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.523, -67.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.481, -67.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.475, -67.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.46, -67.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.471, -67.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.472, -67.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.448, -67.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.47, -67.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.47, -67.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.452, -67.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.467, -67.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.461, -67.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.444, -67.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.458, -67.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.447, -67.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.451, -67.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.443, -67.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.425, -67.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.438, -67.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.516, -67.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.596, -67.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.74, -67.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.691, -67.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.662, -67.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.699, -67.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.704, -67.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.735, -67.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.727, -67.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.72, -67.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.739, -67.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.687, -67.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.881, -67.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.811, -67.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.789, -67.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.786, -67.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.781, -67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.785, -67.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.815, -67.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.778, -67.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.775, -67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.763, -67.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.774, -67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.799, -67.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.772, -67.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.819, -67.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.769, -67.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.79, -67.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.781, -67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.722, -67.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.781, -67.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.784, -67.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.793, -67.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.787, -67.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.864, -67.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.895, -67.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.944, -67.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.914, -67.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.922, -67.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.943, -67.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.936, -67.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.942, -67.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.846, -67.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.837, -67.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.841, -67.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.83, -67.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.22, -67.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.788, -67.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.825, -67.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.825, -67.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.822, -67.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.828, -68.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.816, -67.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.821, -68.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.822, -67.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.821, -68.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.821, -68.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.841, -68.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.796, -68.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.825, -68.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.822, -68.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.803, -68.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.822, -68.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.761, -68.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.766, -68.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.766, -68.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.762, -68.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.772, -68.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.758, -68.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.755, -68.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.657, -68.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.664, -68.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.647, -68.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.662, -68.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.705, -68.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.681, -68.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.668, -68.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.685, -68.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.659, -68.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.677, -68.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.671, -68.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.695, -68.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.67, -68.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.672, -68.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.661, -68.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.667, -68.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.673, -68.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.686, -68.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.674, -68.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.682, -68.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.664, -68.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.644, -68.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.645, -68.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.604, -68.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.604, -68.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.565, -68.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.566, -68.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.544, -68.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.532, -68.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.289, -67.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.439, -68.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.442, -68.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.506, -68.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.457, -68.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.489, -68.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.455, -68.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.454, -68.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.456, -68.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.458, -68.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.46, -68.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.456, -68.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.458, -68.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.465, -68.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.451, -68.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.459, -68.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.465, -68.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.46, -68.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.448, -68.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.448, -68.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.36, -68.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.407, -68.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.417, -68.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.421, -68.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.418, -68.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.419, -68.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.42, -68.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.424, -68.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.416, -68.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.376, -68.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.409, -68.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.365, -68.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.392, -68.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.399, -68.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.393, -68.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.399, -68.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.393, -68.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.379, -68.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.393, -68.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.387, -68.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.38, -68.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.384, -68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.38, -68.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.405, -68.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.378, -68.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.438, -68.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.346, -68.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.377, -68.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.37, -68.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.373, -68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.372, -68.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.539, -68.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.538, -68.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.568, -68.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.575, -68.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.617, -68.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.614, -68.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.66, -68.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.661, -68.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.651, -68.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.613, -68.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.482, -68.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.591, -68.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.594, -68.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.559, -68.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.64, -68.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.599, -68.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.558, -68.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.574, -68.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.589, -68.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.555, -68.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.561, -68.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.565, -68.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.567, -68.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.549, -68.435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.572, -68.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.565, -68.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.013, -68.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.006, -68.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.07, -68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.038, -68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.03, -68.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.026, -68.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.033, -68.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.035, -68.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.023, -68.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.031, -68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.042, -68.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.027, -68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.041, -68.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.031, -68.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.026, -68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.023, -68.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.025, -68.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.0, -68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.024, -68.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.04, -68.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.024, -68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.016, -68.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.015, -68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.003, -68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.014, -68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.026, -68.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.013, -68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.991, -68.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.012, -68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.022, -68.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.01, -68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.022, -68.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.011, -68.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.994, -68.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.007, -68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.033, -68.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.948, -68.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.006, -68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.975, -68.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.986, -68.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.023, -68.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.01, -68.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.978, -68.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.011, -68.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.0, -68.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.996, -68.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.964, -68.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.984, -68.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.964, -68.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.981, -68.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.954, -68.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.005, -68.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.981, -68.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.987, -68.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.98, -68.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.932, -68.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.957, -68.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.96, -68.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.957, -68.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.959, -68.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.961, -68.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.956, -68.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.928, -68.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.974, -68.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.98, -68.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.929, -68.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.936, -68.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.014, -68.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.882, -68.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.939, -68.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.933, -68.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.949, -68.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.985, -68.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.998, -68.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.996, -68.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.98, -68.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.987, -68.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.917, -68.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.951, -68.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.952, -68.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.939, -68.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.908, -68.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.923, -68.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.914, -68.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.902, -68.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.905, -68.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.914, -68.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.912, -68.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.914, -68.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.915, -68.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.915, -68.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.918, -68.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.916, -68.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.902, -68.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.915, -68.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.906, -68.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.883, -68.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.9, -68.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.881, -68.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.893, -68.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.893, -68.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.891, -68.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.92, -68.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.89, -68.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.92, -68.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.927, -68.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.956, -68.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.957, -68.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.063, -68.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.016, -68.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.13, -68.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.218, -68.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.235, -68.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.257, -68.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.217, -68.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.221, -68.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.209, -68.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.133, -68.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.199, -68.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.221, -68.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.196, -68.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.22, -68.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.192, -68.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.192, -68.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.19, -68.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.21, -68.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.189, -68.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.181, -68.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.172, -68.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.113, -68.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.151, -68.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.145, -68.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.145, -68.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.891, -68.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.913, -68.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.928, -68.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.921, -68.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.926, -68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.104, -68.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.959, -68.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.954, -68.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.97, -68.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.97, -68.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.848, -68.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.881, -68.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.873, -68.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.87, -68.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.872, -68.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.845, -68.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.869, -68.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.868, -68.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.865, -68.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.862, -68.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.865, -68.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.895, -68.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.844, -68.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.869, -68.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.874, -68.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.878, -68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.881, -68.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.88, -68.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.098, -68.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.895, -68.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 168.906, -68.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.055, -68.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.139, -68.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.101, -68.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.151, -68.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.152, -68.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.202, -68.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.197, -68.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.263, -67.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.399, -67.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.413, -67.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.436, -67.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.452, -67.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.475, -67.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.55, -67.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.566, -67.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.658, -67.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.654, -67.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.668, -67.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.683, -67.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.694, -67.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.719, -67.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.805, -67.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.818, -67.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.882, -67.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.791, -67.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.763, -67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.8, -67.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.808, -67.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.774, -67.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.82, -67.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.824, -67.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.007, -67.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.836, -67.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.808, -67.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.898, -67.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.805, -67.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.785, -67.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.771, -67.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.757, -67.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.768, -67.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.733, -67.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.754, -67.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.755, -67.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.744, -67.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.806, -67.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.771, -67.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.733, -67.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.731, -67.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.343, -67.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.741, -67.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.731, -67.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.728, -67.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.711, -67.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.749, -67.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.726, -67.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.029, -67.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.033, -67.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.057, -67.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.057, -67.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.148, -67.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.092, -67.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.417, -66.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.452, -66.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.504, -66.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.477, -66.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.509, -66.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.484, -66.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.505, -66.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.485, -66.844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.484, -66.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.482, -66.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.452, -66.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.462, -66.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.46, -66.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.459, -66.766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.464, -66.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.45, -66.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.431, -66.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 172.432, -66.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.315, -66.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.451, -66.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.286, -66.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.389, -66.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.439, -66.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 171.31, -66.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.739, -65.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.732, -65.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.686, -65.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.731, -65.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.7, -65.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.668, -65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.664, -65.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.666, -65.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.656, -65.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.603, -65.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.607, -65.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.597, -65.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.57, -65.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.599, -65.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.565, -65.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.591, -65.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.563, -65.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.546, -65.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.604, -65.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.515, -65.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.722, -65.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.712, -65.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.811, -65.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.882, -65.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.747, -65.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.762, -65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.748, -65.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.747, -65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.741, -65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.73, -65.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.746, -65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.744, -65.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.746, -65.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.751, -65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.731, -65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.748, -65.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.745, -65.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.749, -65.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.744, -65.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.753, -65.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.743, -65.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.73, -65.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.742, -65.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.539, -65.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.772, -65.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.798, -65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.748, -65.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.76, -65.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.807, -65.653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.816, -65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.81, -65.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.654, -65.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.8, -65.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.81, -65.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.557, -65.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.565, -65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.553, -65.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.544, -65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.549, -65.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.541, -65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.531, -65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.532, -65.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.55, -65.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.502, -65.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.538, -65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.49, -65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.54, -65.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.478, -65.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.469, -65.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.465, -65.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.496, -65.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.464, -65.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.561, -65.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.417, -65.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.43, -65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.168, -65.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.459, -65.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.444, -65.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.428, -65.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.423, -65.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.427, -65.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.478, -65.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.221, -65.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.427, -65.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.425, -65.523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.585, -65.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.476, -65.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.342, -65.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.293, -65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.299, -65.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.272, -65.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.193, -65.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.215, -65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.252, -65.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.215, -65.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.268, -65.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.217, -65.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.208, -65.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.215, -65.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.219, -65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.21, -65.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.225, -65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.235, -65.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.24, -65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.251, -65.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.247, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.309, -65.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.268, -65.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.254, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.246, -65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.262, -65.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.265, -65.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.54, -65.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.173, -65.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.171, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.136, -65.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.164, -65.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.004, -65.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.033, -65.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.088, -65.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.977, -65.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.466, -65.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.019, -65.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.988, -65.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.008, -65.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.99, -65.455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.98, -65.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.99, -65.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.998, -65.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.005, -65.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.996, -65.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.01, -65.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.953, -65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.979, -65.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.958, -65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.897, -65.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.955, -65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.853, -65.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 170.001, -65.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.952, -65.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.82, -65.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.819, -65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.799, -65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.817, -65.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.797, -65.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.804, -65.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.82, -65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.801, -65.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.858, -65.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.692, -65.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.772, -65.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.791, -65.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.784, -65.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.787, -65.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.79, -65.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.785, -65.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.78, -65.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.781, -65.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.811, -65.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.9, -65.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.908, -65.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.909, -65.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.923, -65.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 169.922, -65.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.179, -26.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.201, -26.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.188, -26.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.186, -26.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.19, -26.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.18, -26.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.178, -26.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.224, -26.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.195, -26.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.163, -26.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.159, -26.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.153, -26.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.21, -26.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.147, -26.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.191, -26.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.165, -26.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.169, -26.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.166, -26.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.171, -26.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.206, -26.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.2, -26.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.208, -26.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.21, -26.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.365, -26.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.355, -26.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.381, -26.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.385, -26.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.393, -26.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.392, -26.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.398, -26.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.452, -26.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.436, -26.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.634, -27.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.558, -27.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.564, -27.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.56, -27.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.563, -27.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.562, -27.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.566, -27.469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.558, -27.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.542, -27.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.556, -27.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.475, -27.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.477, -27.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.476, -28.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.495, -28.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.468, -28.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.5, -28.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.506, -28.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.504, -28.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.535, -28.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.565, -28.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.549, -28.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.662, -28.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.675, -28.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.686, -28.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.68, -28.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.662, -28.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.681, -28.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.696, -28.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.689, -28.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.532, -29.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.534, -29.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.534, -29.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.527, -29.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.513, -29.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.522, -29.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.543, -29.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.508, -29.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.506, -29.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.487, -29.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.498, -29.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.367, -29.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.402, -29.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.403, -29.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.397, -29.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.391, -29.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.386, -29.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.249, -30.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.319, -30.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.321, -30.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.31, -30.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.29, -30.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.303, -30.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.12, -30.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.291, -30.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.231, -30.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.211, -30.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.198, -30.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.204, -30.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.206, -30.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.2, -30.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.284, -30.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.192, -30.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.056, -30.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.06, -30.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.216, -30.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.066, -30.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.068, -30.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.069, -30.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.074, -30.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.116, -30.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.075, -30.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.132, -30.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.131, -30.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.133, -30.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.131, -30.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.125, -30.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.129, -30.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.141, -31.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.104, -31.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.138, -31.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.102, -31.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.09, -31.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.097, -31.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.07, -31.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.082, -31.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.935, -31.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.962, -31.429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.952, -31.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.956, -31.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.957, -31.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.952, -31.483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.952, -31.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.942, -31.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.931, -31.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.934, -31.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.929, -31.574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.927, -31.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.911, -31.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.913, -31.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 153.068, -31.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.825, -31.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.887, -31.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.9, -31.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.881, -31.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.79, -31.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.875, -31.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.821, -31.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.871, -31.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.806, -31.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.859, -31.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.654, -32.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.679, -32.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.67, -32.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.669, -32.171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.655, -32.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.668, -32.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.472, -32.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.667, -32.192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.496, -32.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.671, -32.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.955, -32.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.684, -32.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.54, -32.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.504, -32.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.658, -32.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.499, -32.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.52, -32.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.476, -32.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.469, -32.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.445, -32.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.234, -32.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.407, -32.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.309, -32.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.369, -32.608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.16, -32.77 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.122, -32.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.116, -32.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.09, -32.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.091, -32.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.053, -32.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 152.071, -32.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.921, -33.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.937, -32.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.944, -33.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.916, -32.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.904, -33.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.874, -33.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.885, -33.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.607, -33.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.607, -33.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.562, -33.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.595, -33.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.571, -33.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.559, -33.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.542, -33.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.554, -33.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.549, -33.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.531, -33.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.428, -33.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.435, -33.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.47, -33.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.433, -33.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.421, -33.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.429, -33.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.457, -33.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.437, -33.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.433, -33.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.416, -33.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.402, -33.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.343, -33.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.4, -33.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.387, -33.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.38, -33.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.378, -33.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.371, -33.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.377, -33.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.356, -33.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.332, -33.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.334, -33.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.063, -34.236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.063, -34.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.058, -34.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.048, -34.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.08, -34.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.032, -34.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.013, -34.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.005, -34.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.964, -34.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.967, -34.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.982, -34.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.017, -34.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.938, -34.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.901, -34.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.027, -34.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.856, -34.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.034, -34.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.954, -34.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.039, -34.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.214, -34.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.048, -34.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.918, -35.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.914, -35.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.89, -35.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.903, -35.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 151.11, -35.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.434, -35.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.827, -35.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.856, -35.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.825, -35.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.841, -35.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.461, -35.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.55, -35.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.527, -35.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.498, -35.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.529, -35.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.508, -35.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.515, -35.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.516, -35.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.509, -35.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.496, -35.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.499, -35.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.2, -35.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.501, -35.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.499, -35.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.437, -35.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.57, -35.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.472, -35.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.447, -35.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.466, -35.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.467, -35.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.466, -35.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.464, -35.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.309, -35.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.292, -35.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.277, -35.855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.28, -35.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.277, -35.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.263, -35.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.237, -35.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.254, -35.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.054, -36.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.197, -36.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.199, -36.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.192, -36.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.191, -36.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.187, -36.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.164, -36.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.169, -36.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.14, -36.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.167, -36.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.158, -36.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.16, -36.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.287, -36.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.153, -36.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.14, -36.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.152, -36.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.144, -36.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.154, -36.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.112, -36.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.145, -36.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.155, -36.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.157, -36.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.156, -36.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.028, -37.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.062, -37.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.039, -37.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.031, -37.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.022, -37.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.029, -37.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.02, -37.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.024, -37.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.916, -37.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.995, -37.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.02, -37.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.945, -37.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.054, -37.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.006, -37.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.013, -37.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 150.012, -37.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.856, -37.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.863, -37.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.845, -37.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.852, -37.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.859, -37.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.851, -37.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.761, -37.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.752, -37.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.764, -37.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.676, -38.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.728, -38.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.718, -38.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.718, -38.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.687, -38.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.69, -38.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.542, -38.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.448, -38.238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.406, -38.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.409, -38.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.39, -38.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.394, -38.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.419, -38.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.39, -38.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.371, -38.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.306, -38.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.299, -38.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.288, -38.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.7, -38.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.267, -38.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.101, -38.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.117, -38.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.167, -38.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.114, -38.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.258, -38.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.106, -38.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.136, -38.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.105, -38.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.057, -38.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.084, -38.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.084, -38.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.149, -38.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.082, -38.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.118, -38.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.081, -38.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.071, -38.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.074, -38.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.067, -38.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.071, -38.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.848, -38.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.063, -38.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.094, -38.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.125, -38.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.013, -38.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.044, -38.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.109, -38.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.115, -38.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.111, -38.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.975, -38.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.097, -38.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.067, -38.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.081, -38.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.065, -38.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.039, -38.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.042, -38.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.112, -37.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.042, -37.896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.038, -37.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.042, -37.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.046, -37.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.044, -37.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.834, -37.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.024, -37.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.0, -37.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.978, -37.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.976, -37.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.975, -37.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.922, -37.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.926, -37.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.873, -37.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.913, -37.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.319, -37.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.313, -37.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.289, -37.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.29, -37.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.239, -37.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.239, -37.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.212, -37.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.19, -37.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.126, -37.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.16, -37.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.144, -37.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.96, -37.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.914, -37.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.884, -37.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.895, -37.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.88, -37.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.887, -37.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.536, -38.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.577, -38.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.568, -38.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.583, -38.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.521, -38.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.514, -38.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.51, -38.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.723, -38.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.428, -38.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.315, -38.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.227, -38.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.301, -38.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.342, -38.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.291, -38.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.304, -38.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.272, -38.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.268, -38.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.265, -38.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.032, -38.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.051, -38.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.034, -38.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.88, -38.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.995, -38.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.917, -38.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.987, -38.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.921, -38.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.841, -38.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.838, -38.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.823, -38.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.832, -38.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.778, -38.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.804, -38.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.682, -38.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.79, -38.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.795, -38.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.551, -39.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.549, -39.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.491, -39.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.492, -39.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.541, -39.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.489, -39.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.465, -39.186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.439, -39.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.427, -39.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.424, -39.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.448, -39.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.401, -39.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.136, -39.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.149, -39.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.117, -39.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.126, -39.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.126, -39.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.124, -39.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.062, -39.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.028, -39.531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.035, -39.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.009, -39.545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.849, -39.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.984, -39.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.984, -39.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.785, -39.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.767, -39.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.76, -39.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.741, -39.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.735, -39.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.739, -39.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.714, -39.686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.683, -39.789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.692, -39.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.688, -39.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.688, -39.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.674, -39.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.678, -39.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.702, -39.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.683, -39.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.715, -39.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.691, -39.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.706, -39.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.587, -40.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.588, -40.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.62, -39.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.602, -40.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.582, -40.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.556, -40.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.553, -40.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.544, -40.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.551, -40.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.456, -40.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.452, -40.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.44, -40.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.422, -40.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.434, -40.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.419, -40.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.386, -40.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.387, -40.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.389, -40.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.385, -40.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.353, -40.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.372, -40.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.372, -40.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.362, -40.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.384, -40.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.34, -40.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.34, -40.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.334, -40.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.339, -40.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.273, -40.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.313, -40.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.114, -40.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.115, -40.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.1, -40.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.098, -40.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.101, -40.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.096, -40.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.072, -40.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.086, -40.5 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.399, -40.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.335, -40.707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.338, -40.715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.388, -40.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.396, -40.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.4, -40.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.585, -40.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.598, -40.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.608, -40.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.648, -40.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.638, -40.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.652, -40.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.653, -40.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.807, -40.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.768, -40.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.796, -40.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.779, -40.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.781, -40.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.787, -40.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.821, -40.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.789, -40.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.826, -40.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.834, -40.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.656, -40.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.79, -40.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.858, -40.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.852, -40.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.927, -40.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.951, -41.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.958, -40.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.945, -40.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.983, -41.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.979, -41.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.987, -41.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 145.958, -41.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.35, -41.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.403, -41.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.508, -41.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.447, -41.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.508, -41.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.543, -41.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.562, -41.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.562, -41.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.583, -41.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.577, -41.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.772, -40.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.795, -40.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.661, -40.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 146.988, -40.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.025, -40.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.02, -40.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.006, -40.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.025, -40.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.163, -40.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.164, -40.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.199, -40.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.205, -40.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.215, -40.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.216, -40.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.387, -40.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.314, -40.735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.888, -40.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.883, -40.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.877, -40.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.907, -40.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.921, -40.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 147.929, -40.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.012, -40.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.008, -40.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.438, -40.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.472, -40.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.488, -40.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.479, -40.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.505, -40.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.491, -40.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.553, -40.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.554, -40.768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.716, -40.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.716, -40.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.769, -40.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.743, -40.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.743, -40.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.757, -40.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.751, -40.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.753, -40.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.771, -40.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.789, -40.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.777, -40.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.923, -41.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.866, -41.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.939, -41.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.882, -41.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.807, -41.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.886, -41.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.114, -41.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.09, -41.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.155, -41.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.127, -41.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.132, -41.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.184, -41.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.173, -41.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.169, -41.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.182, -41.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.182, -41.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.378, -42.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.377, -42.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.386, -42.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.385, -42.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.405, -42.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.406, -42.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.578, -42.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.466, -42.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.511, -42.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.46, -42.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.451, -42.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.448, -42.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.439, -42.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.442, -42.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.451, -42.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.282, -42.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.25, -42.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.26, -42.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 149.236, -42.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.943, -42.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.952, -42.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.924, -42.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.924, -42.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.913, -42.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.913, -42.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.904, -42.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.907, -42.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.892, -42.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.891, -42.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.62, -43.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.621, -43.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.603, -43.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.595, -43.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.451, -43.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.537, -43.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.473, -43.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.257, -43.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.297, -43.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.281, -43.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.284, -43.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.281, -43.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.276, -43.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.28, -43.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.271, -43.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.256, -43.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.267, -43.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.258, -43.464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 148.259, -43.465 ] } } +] +} diff --git a/data/humpbackWhale.jpg b/data/humpbackWhale.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb89e09be738a0eb4d4b7586e41caeae84cec120 GIT binary patch literal 58951 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�3l6UNF&qK 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
    1. +AM; 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

      nc_V{B0~m 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 z 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 z�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


      K)~QSLJW<2MBiY#ur( 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 InBa}|ckILP90c^Z0oV}%Hf-c*uJ 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 literal 0 HcmV?d00001 diff --git a/data/spermWhale.geojson b/data/spermWhale.geojson new file mode 100644 index 0000000..559ee7e --- /dev/null +++ b/data/spermWhale.geojson @@ -0,0 +1,13469 @@ +{ +"type": "FeatureCollection", +"name": "spermWhale", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.029, 27.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.937, 28.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.067, 28.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.152, 28.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.546, 28.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.095, 28.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.925, 28.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.13, 28.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.258, 28.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.339, 28.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.438, 28.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.505, 28.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.466, 28.451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.405, 28.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.473, 28.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.427, 28.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.348, 28.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.274, 28.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.362, 28.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.396, 28.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.253, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.228, 28.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.215, 28.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.306, 28.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.386, 28.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.447, 28.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.477, 28.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.538, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.455, 28.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.504, 28.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.381, 28.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.477, 28.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.505, 28.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.508, 28.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.475, 28.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.139, 28.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.073, 28.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.071, 28.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.086, 28.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.133, 28.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.264, 28.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.434, 28.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.426, 28.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.447, 28.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.534, 28.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.318, 28.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.379, 28.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.412, 28.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.364, 28.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.362, 28.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.374, 28.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.472, 28.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.284, 28.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.146, 28.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.327, 27.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.756, 28.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.023, 28.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.093, 28.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.95, 28.513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.545, 28.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.597, 28.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.515, 28.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.506, 28.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.521, 28.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.517, 28.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.484, 28.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.537, 27.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.514, 27.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.096, 27.461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.922, 27.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.003, 27.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.95, 27.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.467, 27.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.812, 27.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.795, 27.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.743, 28.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.847, 28.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.989, 27.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.877, 27.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.101, 28.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.526, 28.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.47, 28.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.333, 28.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.39, 28.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.351, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.416, 28.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.581, 28.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.571, 28.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.347, 28.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.412, 28.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.334, 28.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.254, 28.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.054, 27.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.188, 27.934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.209, 27.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.271, 27.84 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.261, 27.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.287, 27.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.36, 28.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.511, 27.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.545, 27.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.522, 28.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.294, 28.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.45, 28.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.362, 28.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.454, 28.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.058, 27.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.325, 27.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.47, 27.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.56, 27.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.312, 27.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.405, 27.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.541, 27.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.538, 27.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.475, 27.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.563, 27.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.423, 27.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.098, 27.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.47, 27.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.377, 27.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5, 27.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.443, 27.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.663, 27.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.614, 27.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.401, 27.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.403, 28.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.457, 28.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.559, 28.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.469, 28.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.266, 28.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.404, 28.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.379, 28.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.371, 28.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.384, 28.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.528, 28.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.473, 28.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.532, 28.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.458, 28.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.448, 28.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.52, 28.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.766, 28.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.575, 28.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.461, 28.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.502, 28.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.533, 28.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.579, 28.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.566, 28.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.547, 28.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.554, 28.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.51, 28.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.518, 28.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.517, 28.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.54, 28.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.496, 28.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.538, 28.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.492, 28.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.475, 28.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.705, 28.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.63, 28.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.401, 28.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.472, 28.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.495, 28.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.522, 28.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.523, 28.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.437, 28.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.267, 28.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.515, 28.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.64, 28.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.47, 28.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.538, 28.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.522, 28.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.603, 28.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.588, 28.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.522, 28.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.571, 28.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.557, 27.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.598, 27.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.477, 28.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.447, 28.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.429, 28.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.424, 28.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.471, 28.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.471, 28.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.523, 28.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.512, 28.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.519, 28.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.514, 28.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.557, 28.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.544, 27.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.51, 28.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.528, 28.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.569, 27.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.498, 27.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.52, 27.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.565, 27.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.559, 27.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.476, 28.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.538, 28.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.576, 28.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.352, 27.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.441, 28.51 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.56, 28.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.566, 28.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.543, 28.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.539, 28.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.558, 28.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.519, 28.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.553, 28.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.504, 28.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.488, 28.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.545, 28.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.546, 28.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.511, 28.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.412, 28.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.447, 28.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.604, 28.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.252, 28.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.242, 28.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.291, 28.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.327, 28.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.353, 28.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.455, 28.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.474, 28.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.513, 28.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.509, 28.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.507, 28.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.434, 28.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.518, 28.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.547, 28.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.43, 28.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.466, 28.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.014, 28.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.939, 27.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.939, 27.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.755, 27.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.663, 27.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.808, 27.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.843, 27.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.965, 27.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.882, 27.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.943, 27.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.97, 27.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.153, 27.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.219, 27.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.18, 27.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.433, 27.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.618, 27.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.418, 27.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.449, 27.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.009, 28.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.391, 28.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.438, 28.135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.381, 28.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.386, 28.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.451, 28.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.363, 28.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.36, 28.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.304, 28.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.452, 28.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.408, 28.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.392, 28.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.111, 28.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.377, 28.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.61, 28.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.387, 28.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.545, 28.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.411, 28.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.502, 28.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.524, 28.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.342, 28.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.516, 28.264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.379, 28.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.389, 28.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.466, 28.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.486, 28.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.566, 28.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.787, 28.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.518, 28.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.601, 28.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.498, 28.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.503, 28.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.526, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.545, 28.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.482, 28.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.498, 28.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.472, 27.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.587, 27.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.544, 27.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.514, 27.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.317, 27.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.166, 27.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.735, 27.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.044, 27.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.896, 27.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.863, 27.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.86, 27.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.829, 27.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.706, 27.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.458, 27.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.017, 28.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.881, 28.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.866, 28.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.547, 27.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.163, 28.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.146, 28.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.231, 28.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.416, 28.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.28, 28.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.288, 28.22 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.162, 28.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.12, 28.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.059, 27.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.295, 28.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.448, 28.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.582, 28.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.542, 28.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.161, 28.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.029, 27.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.926, 27.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.994, 27.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.216, 27.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.274, 27.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.369, 27.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.215, 27.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.459, 27.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.458, 27.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.438, 27.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.076, 28.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.05, 28.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.075, 28.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.976, 28.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.951, 27.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.852, 27.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.85, 28.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.835, 28.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.953, 28.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.995, 27.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.243, 27.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.156, 27.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.143, 27.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.067, 28.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.259, 28.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.141, 27.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.361, 28.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.345, 28.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.33, 28.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.894, 28.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.333, 28.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.084, 28.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.322, 28.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.341, 28.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.417, 28.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.363, 28.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.362, 28.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.366, 28.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.494, 28.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.454, 28.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.432, 28.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.379, 28.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.519, 28.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.46, 28.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.449, 28.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.481, 28.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.464, 28.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.526, 28.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.523, 28.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.48, 28.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.307, 28.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.178, 28.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.909, 28.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.89, 28.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.425, 28.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.452, 28.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.485, 28.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.546, 28.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.493, 28.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.498, 28.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.484, 28.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.493, 28.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.54, 28.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.468, 28.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.517, 28.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.527, 27.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.547, 27.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.509, 27.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.442, 27.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.383, 27.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.338, 27.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.209, 27.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.961, 28.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.074, 28.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.089, 28.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.84, 27.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.089, 28.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.941, 28.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.957, 28.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.027, 28.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.035, 28.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.302, 28.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.459, 28.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.432, 28.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.61, 28.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.51, 28.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.435, 28.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.48, 28.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.83, 28.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.516, 28.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.482, 28.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.924, 27.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.325, 28.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.746, 27.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.748, 27.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.762, 27.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.773, 27.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.793, 27.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.926, 27.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.858, 27.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.872, 27.825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.173, 28.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.109, 28.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.078, 28.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.096, 28.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.099, 28.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.131, 28.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.236, 28.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.399, 28.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.226, 28.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.615, 28.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.389, 28.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.346, 28.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.386, 28.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.319, 28.339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.369, 28.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.362, 28.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.407, 28.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.39, 28.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.302, 28.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.224, 28.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.221, 28.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.243, 28.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2, 28.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.135, 28.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.195, 28.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.254, 28.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.473, 28.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.479, 28.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.476, 28.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.392, 28.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.385, 28.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.317, 28.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.72, 27.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.552, 27.874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.536, 27.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.559, 27.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.495, 27.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.509, 27.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.488, 27.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.041, 28.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.401, 28.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.553, 27.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.498, 28.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.482, 28.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.494, 28.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.507, 27.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.653, 28.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.445, 28.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.549, 27.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.576, 27.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.378, 28.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.494, 28.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.436, 28.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.373, 28.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.438, 28.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.241, 28.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.507, 28.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.397, 28.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.406, 28.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.354, 28.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.053, 28.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.992, 28.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.056, 28.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.019, 28.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.836, 28.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.855, 27.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.082, 27.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.483, 27.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.941, 28.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.436, 27.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.248, 27.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.429, 27.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.472, 27.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.536, 27.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.406, 27.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.772, 27.804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.346, 27.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.278, 27.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.07, 27.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.902, 27.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.243, 28.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.46, 28.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.318, 28.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.524, 28.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.418, 28.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.425, 28.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.414, 28.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.449, 28.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.432, 28.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.635, 28.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.563, 28.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5, 28.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.537, 28.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.474, 28.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.532, 28.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.442, 28.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.689, 28.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.493, 28.405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.306, 28.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.068, 28.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.512, 28.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.728, 28.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.385, 28.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.374, 28.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.273, 28.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.146, 28.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.565, 28.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.892, 28.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.384, 28.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.182, 28.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.312, 28.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.451, 28.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.346, 28.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.37, 28.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.321, 28.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.319, 28.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.184, 28.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.238, 28.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.26, 28.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.303, 28.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.285, 28.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.322, 28.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.377, 28.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.391, 28.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.25, 28.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.401, 28.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.728, 28.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.373, 28.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.516, 28.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.362, 28.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.435, 28.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.436, 28.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.45, 28.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.446, 28.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.306, 28.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.355, 28.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.619, 28.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.458, 28.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.436, 28.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.403, 28.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.587, 28.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.55, 28.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.371, 28.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.377, 28.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.224, 28.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.405, 28.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.068, 28.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.303, 28.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.858, 28.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.183, 28.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.612, 28.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.636, 28.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.223, 28.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.175, 28.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.293, 28.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.195, 28.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.205, 28.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.39, 28.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.337, 28.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.496, 28.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.232, 28.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.359, 28.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.403, 28.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.967, 27.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2, 28.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.222, 28.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.319, 28.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.383, 27.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.364, 28.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.29, 28.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.449, 28.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.285, 28.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.695, 28.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.389, 28.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4, 28.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.256, 28.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.327, 28.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.113, 28.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.229, 28.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.358, 28.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.475, 28.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.461, 28.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.297, 28.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5, 28.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.637, 28.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.329, 28.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.479, 28.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.391, 28.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.508, 28.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.361, 28.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.484, 28.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.429, 28.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.476, 28.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.523, 28.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.461, 28.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.44, 28.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.487, 28.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.409, 28.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.427, 28.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.281, 28.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.575, 28.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.526, 28.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.514, 28.534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.567, 28.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.553, 28.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.597, 28.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.73, 28.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.323, 28.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.31, 28.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.564, 28.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.84, 28.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.57, 28.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.593, 28.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.855, 28.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.137, 28.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.336, 28.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.139, 28.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.067, 28.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.088, 28.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.072, 28.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.099, 28.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.986, 28.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.107, 28.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.799, 28.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.448, 27.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.556, 27.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.752, 27.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.491, 27.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.361, 27.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.319, 27.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.434, 27.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.373, 27.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.417, 27.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.219, 28.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.393, 28.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.356, 28.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.986, 28.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.377, 28.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.342, 28.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.245, 28.279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.313, 28.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.31, 28.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.321, 28.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.904, 28.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.398, 28.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.419, 28.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.396, 28.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.324, 28.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.252, 28.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.202, 28.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.093, 28.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.03, 28.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.213, 28.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.496, 28.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.425, 28.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.456, 28.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.392, 28.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.448, 28.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.436, 28.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.17, 28.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.15, 28.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.124, 28.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.005, 28.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.941, 28.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.828, 27.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.724, 27.925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.617, 27.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.482, 27.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.451, 27.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.375, 27.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.362, 27.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.372, 27.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.478, 27.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.428, 27.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.464, 27.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5, 27.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.817, 27.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.87, 27.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.842, 28.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.984, 28.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.011, 28.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.993, 28.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.979, 28.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.485, 28.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.591, 27.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.591, 27.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.519, 27.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.506, 27.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.474, 27.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.409, 27.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.499, 27.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.421, 27.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.395, 27.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.585, 27.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.341, 27.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.583, 28.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.616, 28.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.593, 27.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.641, 27.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.665, 27.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.735, 27.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.666, 28.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.677, 28.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.699, 28.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.702, 28.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.632, 28.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.715, 28.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.947, 28.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.728, 28.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.695, 28.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.706, 28.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.824, 28.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.968, 27.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.764, 27.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.762, 27.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.571, 27.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.708, 27.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.649, 27.826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.698, 28.032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.698, 28.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.696, 28.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.763, 28.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.808, 28.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.852, 28.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.987, 28.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.957, 28.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.933, 28.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.141, 28.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.095, 28.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.001, 28.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.078, 28.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.131, 28.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.558, 28.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.176, 28.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.18, 28.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.203, 28.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1, 28.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.895, 28.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.003, 28.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.021, 28.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.071, 28.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.896, 27.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.964, 27.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.779, 27.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.896, 27.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.873, 28.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.958, 27.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.816, 28.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.756, 28.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.662, 28.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.842, 28.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.834, 28.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.748, 28.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.922, 28.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.764, 28.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.788, 28.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.746, 28.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.296, 28.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.384, 28.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.51, 28.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.61, 28.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.634, 28.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.154, 28.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.632, 27.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.466, 27.859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.538, 27.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.463, 27.729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.79, 27.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.46, 27.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.501, 28.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.44, 27.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.335, 27.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.316, 27.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.435, 27.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.421, 27.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.48, 27.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.498, 27.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.381, 27.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.714, 27.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.782, 27.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.635, 28.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.734, 28.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.129, 27.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.811, 28.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.874, 28.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.943, 28.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.964, 28.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.059, 28.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.018, 28.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.022, 28.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.111, 28.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.823, 28.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.723, 28.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.748, 27.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.679, 28.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.685, 28.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.339, 28.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.669, 27.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.558, 28.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.518, 27.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.414, 27.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.346, 27.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.347, 27.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.952, 28.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.099, 28.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.909, 28.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.028, 28.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.014, 28.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.989, 28.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.785, 28.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.694, 28.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.432, 27.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.606, 27.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.451, 27.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.372, 27.786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.367, 27.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.396, 27.88 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.258, 27.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.405, 27.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.571, 27.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.669, 27.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.704, 27.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.712, 27.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.75, 27.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.808, 27.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.89, 27.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.762, 27.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.843, 28.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.036, 28.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.086, 28.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.97, 28.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.447, 27.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.515, 28.001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.46, 27.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.47, 27.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.453, 27.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.519, 27.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.577, 27.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.625, 27.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.692, 27.887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.696, 28.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.19, 28.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.26, 28.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.176, 28.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.276, 28.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.986, 28.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.391, 28.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.383, 28.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.283, 28.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.372, 28.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.335, 28.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.365, 28.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.371, 28.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.394, 28.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.391, 28.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.323, 28.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.521, 28.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.453, 28.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.447, 28.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.588, 28.38 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.463, 28.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.458, 28.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.466, 28.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.418, 28.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.248, 28.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.478, 28.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.456, 28.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.416, 28.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.201, 28.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.365, 28.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.346, 28.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.336, 28.259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.428, 28.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.348, 28.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.41, 28.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.362, 28.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.38, 28.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.495, 28.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.311, 28.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.291, 28.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.356, 28.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.33, 28.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.366, 28.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.364, 28.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.384, 28.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.606, 28.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.354, 28.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.341, 28.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.349, 28.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.345, 28.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.96, 28.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.69, 28.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.01, 28.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.065, 28.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.973, 28.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.071, 28.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.266, 28.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.268, 28.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.413, 28.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.255, 28.252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.346, 28.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.327, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.268, 28.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.344, 28.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.283, 28.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.913, 28.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.145, 28.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.185, 28.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.864, 28.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.217, 28.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.266, 28.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.212, 28.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.278, 28.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.186, 28.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.035, 28.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.169, 28.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.137, 28.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.221, 28.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.202, 28.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.279, 28.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.088, 28.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.058, 28.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.109, 28.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.228, 28.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.207, 28.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.178, 28.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.306, 28.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.163, 28.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.349, 29.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.557, 28.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.189, 28.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.232, 28.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.366, 28.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.286, 28.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.303, 28.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.275, 28.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.298, 28.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.214, 28.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.297, 28.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.326, 28.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.296, 28.323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.254, 28.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.186, 28.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.219, 28.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.748, 28.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.159, 28.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.184, 28.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.227, 28.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.252, 28.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.343, 28.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.486, 28.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.419, 28.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.445, 28.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.342, 28.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.453, 28.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.438, 28.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.326, 28.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.311, 28.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.331, 28.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.329, 28.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.379, 28.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.35, 28.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.258, 28.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.42, 28.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.438, 28.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.288, 28.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.273, 28.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.159, 28.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.057, 28.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.147, 28.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.155, 28.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.23, 28.217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.288, 28.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.255, 28.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.049, 28.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.174, 28.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.204, 28.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.404, 28.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.485, 28.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.387, 28.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.392, 28.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.281, 28.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.437, 28.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.477, 28.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.44, 28.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.494, 28.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.29, 28.348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.268, 28.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.402, 28.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.475, 28.411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.592, 28.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.498, 28.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.679, 28.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.521, 28.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.518, 28.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.271, 29.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4, 28.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.332, 28.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.431, 28.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.409, 28.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.111, 28.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.546, 28.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.533, 28.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.476, 28.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.433, 28.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.124, 28.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.587, 28.443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.024, 28.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.867, 28.561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.093, 28.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.566, 28.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.387, 28.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.471, 28.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.38, 28.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.072, 28.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.502, 28.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.528, 28.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.683, 28.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.479, 28.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.383, 28.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.806, 28.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.585, 28.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.666, 28.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.486, 28.552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.821, 27.684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.56, 28.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.61, 28.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.709, 28.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.449, 28.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -109.926, 26.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.566, 28.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.574, 28.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.63, 28.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.355, 28.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.553, 28.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.587, 28.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.404, 28.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.758, 28.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.799, 28.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.766, 28.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.754, 28.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.712, 29.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.066, 29.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.952, 29.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.924, 29.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.925, 29.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.894, 29.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.852, 29.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.92, 28.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.842, 29.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.845, 29.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.798, 29.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.857, 29.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.863, 29.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.86, 29.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.79, 29.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.787, 29.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.931, 29.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.873, 29.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.763, 29.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.975, 29.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.452, 29.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.948, 29.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.066, 29.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.742, 29.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.827, 29.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.983, 29.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.947, 29.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.145, 29.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.849, 29.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.868, 29.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.774, 29.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.743, 29.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.656, 29.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.432, 28.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.209, 29.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.943, 29.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.951, 29.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.765, 28.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.767, 29.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.041, 29.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.006, 29.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.919, 29.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.876, 29.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.693, 29.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.773, 29.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.891, 29.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.743, 29.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.783, 29.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.569, 29.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.78, 28.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.819, 29.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.65, 29.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.833, 29.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.863, 29.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.346, 29.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.651, 29.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.664, 29.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.745, 29.145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.707, 29.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.635, 29.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.747, 29.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.824, 29.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.707, 28.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.777, 29.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.56, 29.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.903, 29.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.048, 29.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.607, 29.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.423, 29.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.063, 29.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.992, 29.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.959, 29.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.968, 29.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.969, 29.126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.85, 28.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.829, 29.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.754, 29.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.875, 29.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.841, 29.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.764, 29.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.896, 29.168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.865, 29.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.868, 29.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.92, 29.151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.853, 29.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.83, 29.071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.846, 29.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.84, 29.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.766, 29.183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.786, 29.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.14, 28.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.982, 28.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.974, 29.029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.736, 29.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.846, 29.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.902, 28.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.955, 29.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.889, 29.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.902, 29.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.883, 29.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.856, 29.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.378, 28.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.903, 29.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.95, 29.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.912, 29.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.827, 29.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.025, 29.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.866, 28.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.988, 29.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0, 29.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.839, 28.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.733, 29.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.864, 29.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.785, 29.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.663, 29.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.602, 29.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.642, 29.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.222, 29.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.561, 29.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.961, 29.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.008, 29.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.965, 29.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.961, 29.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.906, 29.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.429, 28.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.497, 28.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.48, 28.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.455, 28.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.625, 28.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.466, 28.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.406, 28.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.355, 28.369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.404, 28.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.432, 28.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.472, 28.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.507, 28.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.494, 28.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.462, 28.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.324, 28.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.384, 28.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.139, 28.2248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.067, 28.0694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0637, 28.0657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0492, 28.0637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0455, 28.0643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0257, 28.0508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0278, 28.0525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0011, 28.0416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0009, 28.0435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9802, 28.0136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9776, 28.0111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9621, 27.9933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9607, 27.9905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9349, 27.9685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9335, 27.9674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9051, 27.9551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8689, 27.9667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8651, 27.9677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8415, 27.9744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8379, 27.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8123, 27.9682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8101, 27.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8084, 27.9945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8084, 27.9972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7851, 28.0239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7827, 28.0238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7871, 28.0197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7852, 28.0225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7864, 27.9973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7845, 27.9962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7817, 27.9722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7842, 27.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.801, 27.9335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8011, 27.9329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.798, 27.9078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7979, 27.9042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.791, 27.8815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.789, 27.8773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7794, 27.8668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7765, 27.8669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2028, 28.1987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0403, 28.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0754, 28.1364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0716, 28.1549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0726, 28.1557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0489, 28.1674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.049, 28.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0409, 28.1795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0366, 28.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0181, 28.1785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0089, 28.1882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0154, 28.2359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0349, 28.2036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0493, 28.2034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0539, 28.2028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0744, 28.2024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0772, 28.2061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0835, 28.2176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.082, 28.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0824, 28.2289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0882, 28.2368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0991, 28.2458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1022, 28.2469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1087, 28.2517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1105, 28.2547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1213, 28.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1274, 28.2763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1278, 28.2767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1298, 28.2821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1404, 28.2887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1408, 28.2952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1396, 28.2921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1356, 28.2895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1362, 28.2887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1305, 28.2836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1188, 28.2698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1146, 28.2665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1113, 28.2585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0997, 28.2446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.095, 28.2384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0898, 28.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0873, 28.2216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0855, 28.2084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0862, 28.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0989, 28.2001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1018, 28.1984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.126, 28.2039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1283, 28.2025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1736, 28.2116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1622, 28.2087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1747, 28.2175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1786, 28.2193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1946, 28.2304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1974, 28.2326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1993, 28.2464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2038, 28.2487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2221, 28.2646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2272, 28.2684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2484, 28.2914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2609, 28.3143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2645, 28.3175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2808, 28.3329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2836, 28.3347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3049, 28.3432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3101, 28.3443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.333, 28.3503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3361, 28.3522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3514, 28.3607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3542, 28.3632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3728, 28.3763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3764, 28.3787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3881, 28.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3929, 28.3834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4166, 28.3852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4209, 28.3882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4369, 28.4046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4402, 28.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4569, 28.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4696, 28.4489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4742, 28.4489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4621, 28.4493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4515, 28.4389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4501, 28.4379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4601, 28.4457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4734, 28.4629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4897, 28.4865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5072, 28.5141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5186, 28.5372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.536, 28.5617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5286, 28.5787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5322, 28.5683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5182, 28.5493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5055, 28.5265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4931, 28.5137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4708, 28.4799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4589, 28.4714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4401, 28.4417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4346, 28.4201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4226, 28.3943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3869, 28.3693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3703, 28.3458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3631, 28.3388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.369, 28.3413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3686, 28.3489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.378, 28.3604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.368, 28.3738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3717, 28.3797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3573, 28.3654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3531, 28.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3514, 28.3583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3475, 28.3489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3484, 28.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3533, 28.3487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.351, 28.3513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3621, 28.3431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3594, 28.3352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3581, 28.3355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3594, 28.3313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3572, 28.3245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3586, 28.3242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3618, 28.3244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3625, 28.3235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3678, 28.3296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3749, 28.3367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3825, 28.3423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3949, 28.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3887, 28.3411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3742, 28.3349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3588, 28.3162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3537, 28.2932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3403, 28.2808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3211, 28.2868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3025, 28.2912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.283, 28.2944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2676, 28.2923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2526, 28.2888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2405, 28.2819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2345, 28.2676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2259, 28.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2154, 28.2516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2246, 28.2588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2399, 28.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2587, 28.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2787, 28.3024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2929, 28.3125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3182, 28.3206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3038, 28.2944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2864, 28.2734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2647, 28.2519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3957, 28.2601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4699, 28.2928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4747, 28.2927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5502, 28.3166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.556, 28.3058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5553, 28.3035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.505, 28.2656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5053, 28.2844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4941, 28.2887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4929, 28.3102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5142, 28.3428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4992, 28.3302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5009, 28.3235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5008, 28.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4949, 28.3161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5025, 28.3029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4943, 28.2588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5063, 28.2721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5139, 28.3034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5011, 28.3072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4877, 28.4597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2325, 28.2002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1991, 28.1807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1927, 28.1697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1918, 28.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1663, 28.1411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1449, 28.1179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1428, 28.1201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1305, 28.1108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1042, 28.0878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1006, 28.0851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0974, 28.0732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0938, 28.0684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0799, 28.0766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0786, 28.0766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0687, 28.0913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0651, 28.0893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.072, 28.1067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0738, 28.1098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0741, 28.1335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0729, 28.1348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0677, 28.1553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0474, 28.1517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0459, 28.1519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0221, 28.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0207, 28.1567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9994, 28.1577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9966, 28.1578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0192, 28.1634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0386, 28.1657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0632, 28.1832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0649, 28.1855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0654, 28.2028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0656, 28.2034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0533, 28.2033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0592, 28.2078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0736, 28.2258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0756, 28.2271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0964, 28.2456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1006, 28.2489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1211, 28.257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1218, 28.2573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1392, 28.2651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1488, 28.2806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.151, 28.2819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1463, 28.2952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.141, 28.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.139, 28.2915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1408, 28.2829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1147, 28.2551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0998, 28.2278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.091, 28.2089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1039, 28.2016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1302, 28.2047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1427, 28.1982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1665, 28.2101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1809, 28.2329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2048, 28.2412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2345, 28.2809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2621, 28.3106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2824, 28.3356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.313, 28.3476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3481, 28.3657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3727, 28.3727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3853, 28.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4156, 28.3843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4459, 28.4039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4645, 28.4304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4782, 28.4541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4687, 28.4516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4587, 28.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4501, 28.4387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4595, 28.4431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4819, 28.4712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5115, 28.5083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.559, 28.5684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5446, 28.5666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5349, 28.553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5175, 28.5334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5079, 28.5217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4832, 28.5014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.441, 28.4665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4352, 28.4492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4229, 28.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4118, 28.3902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3904, 28.3766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3714, 28.3361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3864, 28.3354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3737, 28.3309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3778, 28.3419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3645, 28.3455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3629, 28.3333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3565, 28.3411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3524, 28.3491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3612, 28.3444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.365, 28.3365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3608, 28.3366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3597, 28.3391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.366, 28.3428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3692, 28.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.379, 28.3494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3779, 28.3522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3802, 28.3528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3825, 28.3537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4019, 28.3564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3962, 28.3597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3872, 28.3487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3845, 28.3409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3799, 28.3329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.368, 28.3043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3682, 28.2754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3367, 28.2753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.308, 28.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2801, 28.2754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2558, 28.2635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2371, 28.2572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2302, 28.2522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2199, 28.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2089, 28.2324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2069, 28.2205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2243, 28.2122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2262, 28.2012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2132, 28.2057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0722, 28.1137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0769, 28.1353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0763, 28.1378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0732, 28.1589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0703, 28.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0483, 28.1523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0463, 28.1534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0221, 28.1576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0203, 28.1594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0079, 28.1597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0047, 28.1603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9993, 28.1675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0302, 28.1708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0351, 28.1707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0618, 28.1742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0761, 28.1896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0688, 28.1963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.06, 28.1995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0554, 28.2004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0522, 28.2047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0737, 28.2184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0902, 28.2387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0946, 28.2403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1009, 28.2503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1251, 28.2622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1262, 28.2683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1288, 28.2658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1297, 28.2675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4023, 28.2589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5058, 28.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.509, 28.2869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5387, 28.2921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5414, 28.2933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4885, 28.2675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4893, 28.2676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5369, 28.4438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4856, 28.4591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4643, 28.4289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4604, 28.4107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.456, 28.3876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4548, 28.3836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5377, 27.8327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5025, 27.7414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.483, 27.7133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3624, 27.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3525, 27.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2878, 27.5616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1375, 27.5013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.061, 27.4606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9797, 27.4617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8469, 27.7531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.81, 27.7744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7066, 27.7955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6682, 27.7972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5334, 27.8167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4918, 27.8529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3656, 27.8452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3537, 27.8806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3543, 27.8844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4481, 27.9597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4757, 28.0254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0743, 28.0718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1365, 28.0907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1825, 28.1771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4611, 28.4001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3244, 28.2108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2139, 28.1218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.075, 28.0124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3034, 28.2771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3377, 28.2901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3691, 28.3098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4009, 28.3362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4539, 28.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4962, 28.4148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5328, 28.4234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5488, 28.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5512, 28.4771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5928, 28.5059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6264, 28.5406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.627, 28.5449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2084, 28.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.204, 28.2095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1856, 28.1567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1844, 28.1307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1709, 28.0966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1503, 28.0705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1213, 28.0534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0763, 28.0141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0059, 27.9815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9704, 27.9751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9531, 27.9541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9557, 27.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9759, 27.9115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9769, 27.9082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9848, 27.8827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9869, 27.8791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2443, 27.8318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3162, 27.8956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3356, 27.9046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4296, 28.0108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.428, 28.0327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4287, 28.0356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4429, 28.0834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.527, 27.8895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5181, 27.8928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5202, 27.8927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5415, 27.8709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5278, 27.8837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.529, 27.8847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5328, 27.9067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5489, 27.9316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5588, 27.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.574, 27.9632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5753, 27.9607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5786, 27.9756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.58, 28.0049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5113, 28.0519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5011, 28.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4677, 28.1233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4628, 28.1318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3955, 28.0229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3208, 27.9356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.285, 27.9132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2495, 27.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.248, 27.8972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5032, 27.8769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.501, 27.8753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4998, 27.8605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4584, 27.8154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4212, 27.8028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4175, 27.8141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4171, 27.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4205, 27.8956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4295, 27.9171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4472, 27.9224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4485, 27.9227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4733, 27.9373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4979, 27.9524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5067, 27.9741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5259, 27.9893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4282, 27.7043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.403, 27.6907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3844, 27.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4648, 27.7405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4865, 27.8065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4952, 27.8023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4972, 27.8026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4683, 27.7644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4352, 27.7986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4259, 27.8198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4204, 27.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4232, 27.7736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4057, 27.7579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4061, 27.7569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.386, 27.7398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3864, 27.7923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5593, 27.9194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5586, 27.9172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5709, 27.8832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5755, 27.8997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5698, 27.9322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4785, 28.0562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4293, 28.0814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4709, 28.0767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4724, 28.0731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4734, 28.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4981, 27.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.501, 27.9644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5185, 27.9495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5431, 27.9765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5315, 27.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.531, 27.9929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4976, 28.0314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4779, 28.0581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4497, 28.1083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4388, 28.1374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4277, 28.1595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4277, 28.1629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4465, 28.1848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4764, 28.1811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3938, 28.0882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3926, 28.0862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4326, 28.0648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4621, 28.0523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4831, 28.0354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4754, 28.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4767, 28.0461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.486, 28.0915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4814, 28.1366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4873, 28.1674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.489, 28.1928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5016, 28.2235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5147, 28.2591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4983, 28.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5141, 27.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.533, 27.9694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5262, 27.9814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5123, 28.0002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5124, 28.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4751, 28.1022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4388, 28.1277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4272, 28.1484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4147, 28.2214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4022, 28.2504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3992, 28.2442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4218, 28.2653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4528, 28.2666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4837, 28.2703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5109, 28.2738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.502, 28.2639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4888, 28.2544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5114, 28.2774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.518, 28.2821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5308, 28.2961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5306, 28.2955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5366, 28.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5479, 28.3241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5236, 28.2988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5353, 28.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5343, 28.3149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5372, 28.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5172, 28.2179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5055, 28.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4936, 28.1948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.536, 28.1878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5372, 28.1893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5407, 28.2117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5377, 28.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5489, 28.2351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5505, 28.2955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5259, 28.2667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5046, 28.2594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4993, 28.2329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4981, 28.2316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4855, 28.2163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4852, 28.2145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.49, 28.2415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5115, 28.2394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5133, 28.2404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5454, 28.2565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4805, 28.2272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4784, 28.2258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4832, 28.2333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4845, 28.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5074, 28.2141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.466, 28.1282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4596, 28.1623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4691, 28.1031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4844, 28.0868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4672, 28.1488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4673, 28.1503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3821, 28.2737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3668, 28.2652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.273, 28.1919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2023, 28.1158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1777, 28.0826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1526, 28.0181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1852, 28.0108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2191, 28.0069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2502, 28.0048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2541, 28.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5121, 28.2248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4818, 28.2324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5237, 28.2526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.542, 28.2563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5412, 28.2545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5596, 28.2489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5753, 28.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5568, 28.2323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5608, 28.2357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.555, 28.2138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5538, 28.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5525, 28.1841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5739, 27.9567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5713, 27.9592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5599, 27.9933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5657, 28.0239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5548, 28.0422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5537, 28.0439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.571, 28.0644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5711, 28.0668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5925, 28.0919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.588, 28.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5877, 28.1366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5469, 28.2287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5036, 28.2686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5021, 28.2704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5202, 28.2735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5109, 28.1923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5099, 28.1906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5014, 28.1785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.511, 28.1634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5084, 28.1629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5123, 28.1472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5193, 28.1347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5304, 28.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5005, 28.1563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4717, 28.1373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4801, 28.1166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.503, 28.1479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5032, 28.1503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.55, 28.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.55, 28.0918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5524, 28.0767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5477, 28.0746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5214, 28.1059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5262, 28.1232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5264, 28.1236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4993, 28.1135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5124, 28.1139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.544, 27.9273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5195, 27.9145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5018, 27.8953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4755, 27.9177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4731, 27.9359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4784, 27.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.487, 28.0094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5057, 28.0261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5052, 28.0267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5062, 28.0625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5044, 28.0613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4598, 28.0612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4616, 28.0632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5581, 27.8624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5414, 27.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.533, 27.9601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5085, 28.0255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4652, 28.0451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4557, 28.0571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.458, 28.0578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4827, 28.0676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5053, 28.3592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.503, 28.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4902, 28.3276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4768, 28.3014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4794, 28.2777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5006, 28.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5218, 28.2793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5146, 28.2879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5013, 28.2982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.482, 28.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4625, 28.3478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.489, 28.3447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4961, 28.3249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5466, 28.3303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5332, 28.2781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.532, 28.2792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5283, 28.2748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5273, 28.2731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4892, 28.2683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4904, 28.2671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5112, 28.2608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5132, 28.2606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5366, 28.2774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5506, 28.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5525, 28.2739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5523, 28.273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5197, 28.2486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.519, 28.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4665, 28.0768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4723, 28.0575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4712, 28.0546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4736, 28.0333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5053, 27.9708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4986, 27.9423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4861, 27.9606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4916, 27.9863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4591, 28.0972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3257, 28.2491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3164, 28.2352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.332, 28.2209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.311, 28.2187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3095, 28.2184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2646, 28.2218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2659, 28.2232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4426, 28.3072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.443, 28.3085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4664, 28.3237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4921, 28.3172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.493, 28.3157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4572, 28.2823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.459, 28.2865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4711, 28.3043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5601, 28.1627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5907, 28.1661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5708, 28.1784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5618, 28.1902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5605, 28.1909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5417, 28.2001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5197, 28.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5026, 28.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5032, 28.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5011, 28.2385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4965, 28.2562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5108, 28.2837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0859, 28.1882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.04, 28.0845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0365, 28.0838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0202, 28.0822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0184, 28.0799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9864, 28.0653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.985, 28.0607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.968, 28.0442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9667, 28.0416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9476, 28.0255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9462, 28.0224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9387, 28.0084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9373, 28.0046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.934, 27.9848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9342, 27.9837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9363, 27.9645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9386, 27.9628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9482, 27.9451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9392, 27.9308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.938, 27.9298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9232, 27.9236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9214, 27.9212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9072, 27.9066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.907, 27.9051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8877, 27.9001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8859, 27.8996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8519, 27.8991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8494, 27.8985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8291, 27.8886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8031, 27.8824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7755, 27.8905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.774, 27.8913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7763, 27.9007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7785, 27.9022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7912, 27.9264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8055, 27.9369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8126, 27.9366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8083, 27.9579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7949, 27.9769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7811, 27.9616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7825, 27.9584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7984, 27.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8001, 27.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.806, 27.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8092, 27.9302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8191, 27.9079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.821, 27.9057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8246, 27.8825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8277, 27.8807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8368, 27.8541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8391, 27.8518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8448, 27.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8474, 27.8298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8567, 27.8119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8587, 27.8108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8737, 27.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8757, 27.7939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8927, 27.7795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8932, 27.7802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8966, 27.7625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8947, 27.7625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9081, 27.7519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9089, 27.7549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9232, 27.7675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9237, 27.7695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9299, 27.7831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9305, 27.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9506, 27.7962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.952, 27.7958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9765, 27.8017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9796, 27.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.007, 27.8087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.01, 27.8101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0374, 27.8138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0398, 27.8131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0659, 27.8144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0683, 27.8149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0845, 27.8188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0855, 27.8196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1029, 27.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1042, 27.8277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1181, 27.8406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.121, 27.8425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.143, 27.8497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1457, 27.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1676, 27.8538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1683, 27.8539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1934, 27.8626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1973, 27.8633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2217, 27.8621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2251, 27.8621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2511, 27.8643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2535, 27.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2683, 27.8604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2725, 27.8613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2932, 27.8696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2958, 27.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3103, 27.8808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3129, 27.8822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3305, 27.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3329, 27.8918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3467, 27.8986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3486, 27.9002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3591, 27.9091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3612, 27.9112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3685, 27.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3717, 27.9186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3908, 27.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3928, 27.9326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4114, 27.9461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4125, 27.9471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4295, 27.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4288, 27.9425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4482, 27.9366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4493, 27.9344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4584, 27.9199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4589, 27.9165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4656, 27.9007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4814, 27.8831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4821, 27.8832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4791, 27.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4777, 27.9012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4817, 27.9094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4807, 27.9116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4686, 27.9241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4666, 27.9275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4612, 27.9282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4586, 27.9273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4448, 27.9352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4444, 27.9361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4414, 27.9526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4405, 27.9552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4401, 27.9746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4409, 27.9771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4441, 27.9821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4437, 27.9818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4326, 27.9836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4328, 27.9822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4195, 27.9872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4164, 27.9883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4031, 27.9941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4017, 27.9946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3911, 28.0081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3896, 28.0096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3827, 28.0206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3831, 28.0203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3853, 28.0381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3863, 28.0382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3971, 28.0545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3989, 28.0544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4014, 28.0672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4031, 28.0671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4023, 28.0798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4033, 28.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4048, 28.0989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4061, 28.1028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4142, 28.1201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4164, 28.1225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4247, 28.1173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4371, 28.1134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4401, 28.1175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.457, 28.1227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4586, 28.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4716, 28.1386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4522, 28.1402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4472, 28.1424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4369, 28.1401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4314, 28.1435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4036, 28.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4009, 28.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.389, 28.1822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3893, 28.1902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3882, 28.2133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3878, 28.2197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3929, 28.2458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3918, 28.2659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3927, 28.2729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3848, 28.2883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3889, 28.3062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3929, 28.3095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3997, 28.3158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3999, 28.3176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4067, 28.3308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4113, 28.3285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4221, 28.3324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4265, 28.3306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4382, 28.3342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4376, 28.3359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4243, 28.3362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4246, 28.3381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4253, 28.3358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4223, 28.3357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4089, 28.3412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3889, 28.3435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.383, 28.3452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3791, 28.3376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3766, 28.3421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3679, 28.3351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3652, 28.3331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3572, 28.3261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3568, 28.3246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3577, 28.3203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3582, 28.3176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3584, 28.3154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3577, 28.3144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3705, 28.3128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3716, 28.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3769, 28.3166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3786, 28.3181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3818, 28.3324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3836, 28.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3895, 28.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3902, 28.3335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3941, 28.3342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3936, 28.3339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3878, 28.3364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3881, 28.3347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3897, 28.3332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.392, 28.3323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.395, 28.3332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3951, 28.3315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4028, 28.3327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4048, 28.3312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.413, 28.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4154, 28.3334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.417, 28.3338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4142, 28.3332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4094, 28.3433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4116, 28.3419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4083, 28.3434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4072, 28.3421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3986, 28.3418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3975, 28.3414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.384, 28.3371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.368, 28.3466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.369, 28.3472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3574, 28.3595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3617, 28.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3811, 28.3591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3838, 28.3586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.398, 28.3685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3997, 28.3711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4108, 28.3773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4131, 28.3787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4101, 28.3807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4111, 28.3776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4201, 28.3766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4273, 28.3784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.436, 28.3872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.441, 28.3899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4444, 28.3877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4422, 28.3771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4454, 28.3751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4418, 28.3755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4413, 28.3749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4396, 28.3732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4411, 28.3707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4315, 28.3686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4186, 28.3677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4093, 28.3644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4082, 28.3641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.403, 28.3502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4026, 28.3481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3963, 28.3349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3956, 28.3322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3978, 28.3189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3982, 28.3154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4034, 28.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4047, 28.2951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3983, 28.2786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.397, 28.2755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3922, 28.2632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3895, 28.2612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3866, 28.2549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3827, 28.2536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3714, 28.2474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.357, 28.2525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3656, 28.2588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3665, 28.2623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3681, 28.2718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3703, 28.2734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3757, 28.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3781, 28.2811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3914, 28.2871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3933, 28.2895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4003, 28.2974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4099, 28.3017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4266, 28.3076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4275, 28.3075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4326, 28.3093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4323, 28.3102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4259, 28.3122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4244, 28.3115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4245, 28.3086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4217, 28.3062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4191, 28.2989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4078, 28.2889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4066, 28.2886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3989, 28.2881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3979, 28.2872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3915, 28.2763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3892, 28.2758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3808, 28.2776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3779, 28.2786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3672, 28.2898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3666, 28.2921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3655, 28.2962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3639, 28.2964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3558, 28.2993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3527, 28.3009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3489, 28.3139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.35, 28.3154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3555, 28.3293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3562, 28.3329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3623, 28.3466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.363, 28.3489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3774, 28.3514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3836, 28.3503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3848, 28.3512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3953, 28.3604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3984, 28.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4023, 28.3637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4047, 28.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4201, 28.3647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4234, 28.3646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4297, 28.3615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4311, 28.3592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.44, 28.3613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4371, 28.3638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4374, 28.3613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4342, 28.3519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4351, 28.3479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4341, 28.3316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4367, 28.3277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4317, 28.3088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.435, 28.3063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4483, 28.2862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4495, 28.2812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4561, 28.2646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4612, 28.2641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4743, 28.2724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4774, 28.2742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4881, 28.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4915, 28.2906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5023, 28.3036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5045, 28.3056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5294, 28.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.528, 28.3014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5403, 28.2932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5428, 28.2921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.556, 28.2923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5573, 28.2941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5559, 28.3133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5555, 28.3147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5427, 28.3057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5421, 28.3059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5276, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5255, 28.3013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5128, 28.2896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5102, 28.2877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4944, 28.2723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4913, 28.2705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4707, 28.2647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4677, 28.2606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4678, 28.2665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4671, 28.2677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4563, 28.2746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4534, 28.272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4372, 28.2676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4348, 28.2645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.428, 28.2441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4265, 28.2388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4144, 28.2231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4116, 28.2206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3904, 28.2113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3875, 28.2108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3761, 28.1989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3727, 28.1982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3685, 28.2025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3669, 28.2036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3752, 28.2127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3776, 28.2146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3872, 28.2226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3894, 28.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3869, 28.2282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3863, 28.2291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3792, 28.2413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3791, 28.2414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.376, 28.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3747, 28.2369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3726, 28.2472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3723, 28.2473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3861, 28.2591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3882, 28.2601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3979, 28.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3994, 28.2545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4034, 28.2586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4055, 28.2607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.42, 28.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4214, 28.2671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4269, 28.2712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.431, 28.2638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4386, 28.2818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4416, 28.2815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4592, 28.2863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4634, 28.2856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4814, 28.2894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.485, 28.2903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5051, 28.2915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5089, 28.2933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.533, 28.3023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5548, 28.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5586, 28.3142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5682, 28.2995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5676, 28.2966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5567, 28.2772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5553, 28.2749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5391, 28.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5267, 28.2475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5246, 28.2502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5273, 28.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5275, 28.2593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5287, 28.2764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5281, 28.2791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5217, 28.2954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5207, 28.2981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5152, 28.3121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5142, 28.3146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5075, 28.3354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5076, 28.3388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5154, 28.3543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.523, 28.3697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5437, 28.3888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5456, 28.3886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5463, 28.3795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5449, 28.3786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5362, 28.3607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5328, 28.3582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5224, 28.3436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5196, 28.3416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5213, 28.3408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5179, 28.3358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5001, 28.3244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4931, 28.3102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4945, 28.3072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5052, 28.2892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5029, 28.2775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5027, 28.2756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5026, 28.2622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5018, 28.2603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4949, 28.2596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4949, 28.2605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4924, 28.2699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4926, 28.2696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4742, 28.2701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4724, 28.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4795, 28.2631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4815, 28.2623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4892, 28.2618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4928, 28.2599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5081, 28.2691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.511, 28.2697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.523, 28.2807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5224, 28.2833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5354, 28.2959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5364, 28.298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5192, 28.3089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5178, 28.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.507, 28.3041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.506, 28.3033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5049, 28.3161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5059, 28.3188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5093, 28.3334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5099, 28.3362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5114, 28.3561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5142, 28.3711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5154, 28.3748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5201, 28.3937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5221, 28.3982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5272, 28.4239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.529, 28.4287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.533, 28.4492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.533, 28.4537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5368, 28.4762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5356, 28.4806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5379, 28.4869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5278, 28.4822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5122, 28.4766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.505, 28.4742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4879, 28.4599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4752, 28.4438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4706, 28.4272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4586, 28.4123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4547, 28.3854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4558, 28.3613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.463, 28.3427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4732, 28.3216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4889, 28.3013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5046, 28.2779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5182, 28.2467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5215, 28.2264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5288, 28.1951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5302, 28.1594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5229, 28.1396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4984, 28.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4909, 28.0845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4813, 28.0548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4851, 28.0185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4878, 27.9964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5029, 27.9607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5404, 27.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5591, 27.9219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5515, 27.8853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5435, 27.8683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5394, 27.8366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5273, 27.8069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5136, 27.7709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5012, 27.7342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4769, 27.7109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4391, 27.7072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4018, 27.6883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3694, 27.6701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3485, 27.6411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.349, 27.6112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3304, 27.5829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3002, 27.5607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2555, 27.5531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2261, 27.5334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1911, 27.5105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1562, 27.4954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1276, 27.4813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0871, 27.4605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0488, 27.4423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0076, 27.4406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9704, 27.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9405, 27.4679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.916, 27.4934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8941, 27.5241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8917, 27.5638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9119, 27.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9166, 27.6111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9542, 27.6252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9924, 27.6217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.008, 27.6017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9986, 27.5725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9754, 27.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9544, 27.6213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9233, 27.6469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8939, 27.6772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8722, 27.7196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8568, 27.7472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8286, 27.7697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.792, 27.7877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7352, 27.7936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6921, 27.7972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6698, 27.7963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6223, 27.7996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5768, 27.8096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5418, 27.8252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4924, 27.8307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4507, 27.8355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4032, 27.8358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3664, 27.8422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3586, 27.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3806, 27.9061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4116, 27.9307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4359, 27.9548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4471, 27.9703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4634, 28.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4829, 28.0279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4899, 28.0597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4973, 28.0746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5137, 28.1035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5495, 28.0926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.585, 28.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6013, 28.0766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6287, 28.0951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6494, 28.0951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6896, 28.0888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7203, 28.0763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7685, 28.0812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7986, 28.0828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8328, 28.0891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.873, 28.0894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9071, 28.0961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9328, 28.0953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9696, 28.0942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.006, 28.0882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0407, 28.0795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0728, 28.0793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1115, 28.0863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1369, 28.1123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1412, 28.1536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1584, 28.1681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1836, 28.1912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1953, 28.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2112, 28.2149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2205, 28.2295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2107, 28.2351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1877, 28.2376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.197, 28.2455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2213, 28.2555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.236, 28.2731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.265, 28.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3011, 28.3087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3341, 28.3243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3726, 28.3423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4061, 28.3664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4341, 28.3796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4709, 28.3941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5043, 28.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.528, 28.4379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5499, 28.4521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5341, 28.4333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5012, 28.4149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4819, 28.4033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.451, 28.3981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4205, 28.3796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3912, 28.3631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3572, 28.3408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3283, 28.3283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3033, 28.2936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2858, 28.2601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2742, 28.2328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3082, 28.2245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3553, 28.2265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3497, 28.2424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3429, 28.2379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.316, 28.2133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2916, 28.2069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2603, 28.1911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2467, 28.1773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2341, 28.1497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2195, 28.1361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2122, 28.1088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1858, 28.0924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1595, 28.0717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1343, 28.0554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1034, 28.0338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0793, 28.0117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0631, 27.9849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0434, 27.9651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.039, 27.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.065, 27.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.099, 27.9476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.136, 27.9558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1711, 27.9485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1951, 27.9458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2029, 27.9738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.189, 27.9816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1828, 27.9921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1782, 27.9972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1715, 28.0041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1671, 28.0165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1699, 28.0292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.166, 28.0287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1807, 28.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1875, 28.0627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2042, 28.0901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2207, 28.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2318, 28.1279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2537, 28.1453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2731, 28.1684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2827, 28.1946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2793, 28.2963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9754, 27.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9776, 27.9425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.978, 27.9252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.979, 27.9236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9878, 27.8965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9905, 27.8942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0093, 27.8754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0157, 27.8716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.038, 27.8647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0404, 27.8655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0587, 27.8837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0616, 27.8868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0899, 27.9049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0935, 27.9071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1102, 27.9122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1261, 27.9223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1556, 27.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1573, 27.9417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1868, 27.9509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.189, 27.9524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2161, 27.9535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2168, 27.9543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2413, 27.9531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2427, 27.9531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2628, 27.9395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2634, 27.9382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2681, 27.9309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2703, 27.9281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2871, 27.9059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2875, 27.9043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2936, 27.8778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2927, 27.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2906, 27.8499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2898, 27.8476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2783, 27.8228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2775, 27.8216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2648, 27.8247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2621, 27.8247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2412, 27.8289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2396, 27.8312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2318, 27.8326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2323, 27.8343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2395, 27.8524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2408, 27.8538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2579, 27.8686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2648, 27.8751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.299, 27.9017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3023, 27.9027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3443, 27.9094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3472, 27.9097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3846, 27.9131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3867, 27.9135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.409, 27.9256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4102, 27.9269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4337, 27.9376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4329, 27.9365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4433, 27.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4427, 27.9383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4636, 27.9359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.465, 27.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4721, 27.9509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.471, 27.9519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4637, 27.9738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4625, 27.9751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.448, 27.9957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4482, 27.9972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0475, 28.1008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0403, 28.1013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0058, 28.0909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0032, 28.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0001, 28.0553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0046, 28.0528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0224, 28.0486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0225, 28.0463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.999, 28.0439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9949, 28.0408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9825, 28.0149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9793, 28.0115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9688, 27.9963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9679, 27.9937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9475, 27.9702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9455, 27.9691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.915, 27.9569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.912, 27.9569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8751, 27.9569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8721, 27.9594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8604, 27.9876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8618, 27.9924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8642, 28.0198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8646, 28.0242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.867, 28.0531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8665, 28.0571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.843, 28.0712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8411, 28.0681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8212, 28.0495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8188, 28.0458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8111, 28.0271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8097, 28.0251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7928, 28.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7908, 28.0026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7777, 27.9783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7789, 27.9733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7923, 27.9526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7971, 27.9518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8097, 27.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8084, 27.9309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8078, 27.9032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8096, 27.8991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8057, 27.8805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8015, 27.8781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7767, 27.8628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7756, 27.8598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7898, 27.8416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7919, 27.8406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.836, 27.8208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8413, 27.8202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8704, 27.8108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.874, 27.8111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8852, 27.8072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8886, 27.8098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8929, 27.8084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8949, 27.8124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8952, 27.8068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8945, 27.8065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8991, 27.7957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.901, 27.8014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.91, 27.8172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9118, 27.8204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9136, 27.8326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9127, 27.8354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9286, 27.8486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9297, 27.8522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9624, 27.8742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9646, 27.8742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9907, 27.8864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9936, 27.8879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0099, 27.8894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0133, 27.8906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0249, 27.8876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0284, 27.8869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0511, 27.8878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0544, 27.888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0763, 27.8829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0778, 27.8822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1103, 27.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1134, 27.8883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1368, 27.8842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1411, 27.8823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1665, 27.8822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1705, 27.8823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1961, 27.8966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1988, 27.8986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2474, 27.9098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.252, 27.9089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2659, 27.9331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2667, 27.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2389, 27.9584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2363, 27.9596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1956, 27.9804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1914, 27.9813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1584, 27.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1566, 27.9874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.089, 28.0001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0862, 28.0039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0527, 28.0237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0547, 28.0271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0711, 28.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0733, 28.0231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0881, 28.0255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0898, 28.0244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1286, 27.9997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1318, 27.9979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1558, 27.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1594, 27.9641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.25, 27.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2568, 27.9463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2914, 27.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2977, 27.9445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3328, 27.9539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3379, 27.9541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3478, 27.9641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3492, 27.9676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3545, 27.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.354, 27.9883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.351, 28.0037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3478, 28.0044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3512, 28.0202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3524, 28.0233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3556, 28.0446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3554, 28.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.355, 28.0595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3571, 28.0595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3656, 28.0803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3647, 28.0826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3442, 28.0958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3441, 28.0983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3407, 28.1165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3438, 28.1165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3263, 28.1022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.324, 28.1013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3162, 28.1128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.319, 28.1156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3414, 28.1336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3449, 28.1371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3723, 28.1583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3761, 28.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3831, 28.1837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3855, 28.1827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.397, 28.1782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3963, 28.1876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3805, 28.2362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3801, 28.2424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3703, 28.2847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3694, 28.2894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3576, 28.3015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.356, 28.3003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.339, 28.2858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3408, 28.2837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.328, 28.28 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3247, 28.2797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3118, 28.2866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3107, 28.2888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3079, 28.2863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3099, 28.2864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3113, 28.2828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3085, 28.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3009, 28.2801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2981, 28.2781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3174, 28.2755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.32, 28.2754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3402, 28.2844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3415, 28.2862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3522, 28.2973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3542, 28.2999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3598, 28.3069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3592, 28.3065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3581, 28.3064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3562, 28.3057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3035, 28.2749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.299, 28.2731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2774, 28.2615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2741, 28.2587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2553, 28.26 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2526, 28.2612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2268, 28.2486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2217, 28.2471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.235, 28.2456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2367, 28.2454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2642, 28.2501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.267, 28.2507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2964, 28.2563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2993, 28.2576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3233, 28.2648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3263, 28.2654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3442, 28.2749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3465, 28.2768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3612, 28.2918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3626, 28.2932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3792, 28.3156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3804, 28.3172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3971, 28.3382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3991, 28.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4, 28.3516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3998, 28.3536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4224, 28.3665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4249, 28.3629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4365, 28.3583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4386, 28.3549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4234, 28.3457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4194, 28.3446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.445, 28.3385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4493, 28.3387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4584, 28.3354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4611, 28.3392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4744, 28.3417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4763, 28.3453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4665, 28.3547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4634, 28.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4507, 28.3436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4503, 28.3413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4313, 28.3361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4272, 28.3339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4028, 28.3089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.401, 28.3045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3828, 28.2857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3814, 28.2829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3755, 28.2669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3742, 28.2644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3659, 28.2526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3634, 28.2491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3622, 28.2428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.363, 28.2444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3658, 28.2448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3622, 28.2431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3569, 28.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3548, 28.2418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3552, 28.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3562, 28.2492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3531, 28.2555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3533, 28.2551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3562, 28.2579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.355, 28.2571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3602, 28.2753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3624, 28.2778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3439, 28.2791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3427, 28.2785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3316, 28.2751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3299, 28.2753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3174, 28.2735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3137, 28.2731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2931, 28.2812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2896, 28.2814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2783, 28.2819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2755, 28.2829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.287, 28.2936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2895, 28.2936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2978, 28.3021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2995, 28.3037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3244, 28.3228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3258, 28.3235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3343, 28.3308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3342, 28.3325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3434, 28.3422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3422, 28.3459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3667, 28.3547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3672, 28.3564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3705, 28.3562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3722, 28.355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3778, 28.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3787, 28.3458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3659, 28.3322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3669, 28.3316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3898, 28.3224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3937, 28.3196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4025, 28.3107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4024, 28.3078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4156, 28.2875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4178, 28.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4457, 28.2928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4488, 28.2945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4691, 28.3004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4743, 28.2996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.491, 28.3015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.493, 28.3036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5012, 28.3052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5025, 28.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5044, 28.3279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5057, 28.3301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5078, 28.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5086, 28.3552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5035, 28.3576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5025, 28.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4966, 28.3555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4955, 28.3559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4868, 28.3562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4859, 28.3567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4756, 28.3412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4744, 28.3379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4614, 28.3178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4603, 28.3144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4466, 28.3049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4449, 28.3049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4286, 28.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.427, 28.2926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4134, 28.2781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.411, 28.2762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3947, 28.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3922, 28.2603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3758, 28.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3734, 28.2487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3685, 28.2457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3658, 28.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3665, 28.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3682, 28.2438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3781, 28.244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3801, 28.2446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3926, 28.2497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.394, 28.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3951, 28.2545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3932, 28.2581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.388, 28.2596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3886, 28.2624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3766, 28.2709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3761, 28.2728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3657, 28.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3676, 28.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3708, 28.2894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3692, 28.2897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3755, 28.2875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3739, 28.2885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3813, 28.2829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3837, 28.2825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3942, 28.2805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3974, 28.2797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3973, 28.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3989, 28.2925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4091, 28.3068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4122, 28.3076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4321, 28.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4364, 28.3133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4654, 28.3174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4695, 28.3159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.492, 28.3225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4975, 28.3211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5119, 28.3258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5155, 28.3283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5167, 28.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.518, 28.3254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5102, 28.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5105, 28.3184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4917, 28.3184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.489, 28.3181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.481, 28.3094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4803, 28.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4694, 28.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4655, 28.3061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4662, 28.3088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4715, 28.3158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4714, 28.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4782, 28.3312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4801, 28.3349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4905, 28.3525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4933, 28.3553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5036, 28.3704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5043, 28.3699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5144, 28.3798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5118, 28.3798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4907, 28.3716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4876, 28.3705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4697, 28.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4713, 28.3362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4782, 28.3073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4772, 28.3038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4819, 28.2942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4839, 28.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4943, 28.2683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4914, 28.2666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4691, 28.2606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4667, 28.2611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4533, 28.2636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.451, 28.2625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4406, 28.2754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4413, 28.2736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4581, 28.2612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4563, 28.2634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.483, 28.2678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4865, 28.2681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5048, 28.3218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5032, 28.3228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4952, 28.3292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4956, 28.3348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5078, 28.3718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5083, 28.3777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5274, 28.4123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5295, 28.4172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5433, 28.4578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5458, 28.4651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.569, 28.498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5709, 28.5022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5698, 28.5312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5672, 28.5318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5509, 28.5678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5484, 28.5741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4978, 28.647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4957, 28.6494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4758, 28.6644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4787, 28.6677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4413, 28.6842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.411, 28.6766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3898, 28.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3591, 28.6256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3524, 28.6129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3501, 28.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3454, 28.5999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3284, 28.5809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3146, 28.5509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3042, 28.5316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2949, 28.5116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2975, 28.4931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2946, 28.4785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2516, 28.4434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1525, 28.3912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.134, 28.3768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1119, 28.3498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1047, 28.3384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0816, 28.3095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0607, 28.2857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0349, 28.2576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0182, 28.1557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0257, 28.1075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0211, 28.0704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9902, 28.0415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9501, 28.0446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9132, 28.0602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8933, 28.0225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.845, 28.0166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7974, 28.0025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7485, 27.9891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7057, 27.9793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6961, 27.9581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6942, 27.9441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7026, 27.9347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7164, 27.9707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3972, 28.2584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.476, 28.2912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.479, 28.2916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5271, 28.3043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.548, 28.3111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4895, 28.2655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4737, 28.2781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5304, 28.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5023, 28.3161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5166, 28.4152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5254, 28.4452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5409, 28.4809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4872, 28.4596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4767, 28.4442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4618, 28.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4826, 27.7108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4528, 27.6992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3465, 27.6061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2502, 27.5397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0364, 27.4341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0136, 28.1207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0105, 28.1186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9685, 28.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9647, 28.0872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9386, 28.0514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9354, 28.0485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9219, 28.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9221, 28.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9261, 28.0173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9264, 28.0159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8969, 28.0088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8963, 28.0106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9074, 28.0368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9083, 28.0409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8974, 28.1191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8938, 28.1219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8712, 28.1396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8739, 28.1405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8766, 28.1411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8767, 28.1418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8666, 28.1204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8648, 28.1157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8507, 28.0886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8494, 28.0857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8417, 28.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8409, 28.0612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8386, 28.0508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8281, 28.0314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8109, 28.0076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8101, 28.0047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8042, 27.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8041, 27.9865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8157, 27.9629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8184, 27.9563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8204, 27.9456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8143, 27.9332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.814, 27.9309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1028, 28.1032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0874, 28.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.088, 28.1286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0894, 28.1131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0555, 28.1093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0537, 28.1288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0679, 28.1682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0704, 28.1825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0663, 28.1863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9555, 28.1406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9387, 28.1123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9369, 28.1032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9342, 28.0993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9909, 28.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9982, 28.1578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.043, 28.1773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0845, 28.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0864, 28.1645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.146, 28.1777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2196, 28.2328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2391, 28.2568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2416, 28.2601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2708, 28.2865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2999, 28.3065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3035, 28.3091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3858, 28.3571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4168, 28.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5073, 28.4686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5094, 28.4704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.513, 28.4765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5133, 28.4811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5332, 28.5117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6087, 28.5839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6163, 28.5435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.616, 28.5394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5724, 28.4936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5208, 28.4434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4994, 28.3987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4819, 28.3541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4837, 28.3532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4951, 28.3552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4955, 28.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5345, 28.4814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.448, 28.3486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1274, 28.1184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0001, 28.0121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9653, 28.0002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9168, 27.9879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9134, 27.9886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8809, 27.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8565, 28.0179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8566, 28.0216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8497, 28.0426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8471, 28.0439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8177, 28.0471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8106, 28.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7912, 28.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2278, 28.2095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2025, 28.2044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2012, 28.1973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1995, 28.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1918, 28.1689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1908, 28.1653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1695, 28.1441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1669, 28.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1527, 28.1257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1497, 28.1227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1306, 28.1089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1056, 28.1033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1029, 28.1017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0811, 28.0844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0783, 28.0821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0711, 28.0745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0722, 28.0726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0683, 28.0884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0659, 28.0908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0693, 28.1068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0702, 28.1083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0753, 28.1363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0752, 28.1381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0636, 28.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0614, 28.1592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0397, 28.1571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0382, 28.1573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0162, 28.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0146, 28.1573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9927, 28.1563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9938, 28.1575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0394, 28.1652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0441, 28.1659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0643, 28.1885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0645, 28.1914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0467, 28.1989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0459, 28.2015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0722, 28.2328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0741, 28.2355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0988, 28.2591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1013, 28.2604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1275, 28.2678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1291, 28.2689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1402, 28.2931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1401, 28.2933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1406, 28.2882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1406, 28.2884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1186, 28.2582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1158, 28.2551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0973, 28.2228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.096, 28.2192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0974, 28.2042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0993, 28.1998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1272, 28.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1308, 28.2033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.151, 28.2042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1536, 28.2038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1911, 28.2231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1938, 28.2241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.212, 28.2502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2147, 28.2519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2445, 28.2859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2474, 28.2881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2632, 28.3118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2651, 28.3135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2818, 28.3355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2835, 28.3379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3147, 28.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3188, 28.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.353, 28.3663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3567, 28.3681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3822, 28.3813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3862, 28.3804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4169, 28.3847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4201, 28.3866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4465, 28.4087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4573, 28.4267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4761, 28.4529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4585, 28.4456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4668, 28.4543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4972, 28.4955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5337, 28.5414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5431, 28.5705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5245, 28.5528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5098, 28.5309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4905, 28.5079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4646, 28.4863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4195, 28.4136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3954, 28.3753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3646, 28.3563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3717, 28.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3895, 28.3356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3756, 28.3446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3619, 28.3497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3598, 28.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3596, 28.3308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.359, 28.3465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3635, 28.3391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3595, 28.3351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3589, 28.3312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3574, 28.328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.36, 28.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3637, 28.3351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3652, 28.3318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3643, 28.3273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3748, 28.3371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3836, 28.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3898, 28.3492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3927, 28.3609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.389, 28.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.384, 28.3435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3842, 28.3389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3642, 28.3129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3608, 28.2801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3333, 28.2712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2959, 28.2769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2772, 28.2734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2534, 28.2656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2447, 28.2571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2298, 28.2495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2197, 28.2429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2221, 28.2455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2112, 28.2272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2174, 28.2202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2265, 28.2058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2371, 28.1896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2169, 28.1747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.182, 28.1691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1798, 28.1803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1891, 28.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2197, 28.1826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2149, 28.1509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2064, 28.1237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1943, 28.0951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2056, 28.1028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2157, 28.1262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2326, 28.1358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2262, 28.1318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2126, 28.1397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1954, 28.1422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1708, 28.1595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1612, 28.1921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1627, 28.2211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1603, 28.2543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1528, 28.2715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1723, 28.2842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2044, 28.2862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2269, 28.2722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2332, 28.2305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2412, 28.2156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2783, 28.2439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3138, 28.2785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.341, 28.3053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3829, 28.3394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4194, 28.3653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4549, 28.3825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4965, 28.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5099, 28.4255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5275, 28.4422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.535, 28.4395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5363, 28.4213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5045, 28.3767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4953, 28.3523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4813, 28.3258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4721, 28.2895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4538, 28.2528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4386, 28.2516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4403, 28.2509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4284, 28.2667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4556, 28.2916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4684, 28.2983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4892, 28.3007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5029, 28.2998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5181, 28.3007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5288, 28.3031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5438, 28.3188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.536, 28.3199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5344, 28.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.546, 28.3092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5499, 28.2968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5267, 28.2849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.505, 28.2612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5132, 28.2329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5107, 28.2004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5134, 28.1748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5127, 28.1426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4987, 28.0979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4792, 28.0606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.469, 28.0199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4592, 27.9928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4573, 27.9684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4652, 27.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4594, 27.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4579, 27.8796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4568, 27.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4496, 27.8528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4807, 27.8898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5085, 27.9049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5477, 27.9149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5626, 27.9142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5464, 27.8953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5371, 27.8726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5314, 27.8591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5272, 27.8397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5201, 27.8462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5205, 27.9792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5024, 27.9721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5022, 27.9699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4829, 27.9558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4821, 27.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4755, 27.9609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4754, 27.9629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4922, 27.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4939, 27.9892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4897, 28.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4898, 28.0131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.466, 28.0154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.465, 28.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4764, 28.0483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4768, 28.0522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4706, 28.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.47, 28.0751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4744, 28.1062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4723, 28.1074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4918, 28.1263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4899, 28.1289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4768, 28.1504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4742, 28.1508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4523, 28.1765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4497, 28.1786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4357, 28.1964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4331, 28.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4122, 28.2029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4096, 28.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3995, 28.2239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4053, 28.2252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3932, 28.2435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3896, 28.2462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3733, 28.2571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3613, 28.2645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3543, 28.2732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3519, 28.2748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.34, 28.2831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3387, 28.2952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3382, 28.3096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3401, 28.3315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3412, 28.3352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3529, 28.3592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3831, 28.3915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3882, 28.3936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4107, 28.4075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4142, 28.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4399, 28.4268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4571, 28.4532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4609, 28.4563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4677, 28.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.472, 28.4967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4744, 28.5219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4764, 28.5254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4842, 28.5508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4851, 28.5546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4834, 28.5801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4725, 28.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4694, 28.6106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4489, 28.6273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4459, 28.6303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4321, 28.6576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4079, 28.6753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4049, 28.6767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3748, 28.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3696, 28.6743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3503, 28.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3473, 28.6523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3416, 28.6287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3422, 28.6243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3526, 28.6102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3563, 28.6107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3662, 28.6112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3694, 28.6118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3639, 28.6147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3626, 28.6121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3542, 28.5922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.354, 28.5887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.35, 28.5716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3495, 28.5698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3386, 28.5533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3356, 28.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3263, 28.5336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3114, 28.5164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3091, 28.5139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2968, 28.5006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2865, 28.4807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2844, 28.4768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2737, 28.4539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2724, 28.4512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2604, 28.4357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2454, 28.4164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2429, 28.4138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2207, 28.4002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2172, 28.3974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1985, 28.3815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1954, 28.3786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1792, 28.3578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1763, 28.3536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1646, 28.3355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1626, 28.3322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1473, 28.3124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1459, 28.3086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1324, 28.2854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1306, 28.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1141, 28.2554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1121, 28.2518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0981, 28.2292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.097, 28.2258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0832, 28.2022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.081, 28.1996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0624, 28.1793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0585, 28.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0381, 28.1604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0345, 28.1573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0132, 28.1406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0074, 28.1407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9778, 28.1533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9734, 28.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9495, 28.1741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9459, 28.1753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9231, 28.1663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9208, 28.1638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9064, 28.1435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9069, 28.1402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9137, 28.1202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9151, 28.1166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9237, 28.0967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9221, 28.0946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9059, 28.0831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9046, 28.0818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9046, 28.0539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9045, 28.0512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.894, 28.0227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8939, 28.0216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8758, 28.0051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8737, 28.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8477, 27.9943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8447, 27.9937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8353, 27.9699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8342, 27.9676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.821, 27.9368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8191, 27.9342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8042, 27.9039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8025, 27.9003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7834, 27.8711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.778, 27.8694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7488, 27.8706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7261, 27.8712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7094, 27.8721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6734, 27.8745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6683, 27.8765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6464, 27.8785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6411, 27.8802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6044, 27.8985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6005, 27.9006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.568, 27.9183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5643, 27.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5396, 27.9159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5364, 27.9158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5061, 27.9058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5015, 27.9047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4727, 27.8909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4672, 27.8896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4455, 27.8744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.441, 27.8722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4164, 27.8575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4128, 27.8553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3952, 27.8395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3921, 27.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3797, 27.8219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3768, 27.8187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3676, 27.8015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3654, 27.7984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3621, 27.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3614, 27.7759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3657, 27.7553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.365, 27.7511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3744, 27.7243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3763, 27.7203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.385, 27.6909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3861, 27.6867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3989, 27.6607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3999, 27.6578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4087, 27.6322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4089, 27.6301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4202, 27.6084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.421, 27.6052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4318, 27.5879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.433, 27.5869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4551, 27.5854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4569, 27.5868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4719, 27.5997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.472, 27.6029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.477, 27.6301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4768, 27.6332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4786, 27.6595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4774, 27.6629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4737, 27.6791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4745, 27.6932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4579, 27.6994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4564, 27.7027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4431, 27.7325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4432, 27.7357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4286, 27.7553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4267, 27.7582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4121, 27.7789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4088, 27.7803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3812, 27.8003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3779, 27.8019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3392, 27.7812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3365, 27.7782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3136, 27.7602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3095, 27.7581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.281, 27.7485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.2771, 27.7473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.2415, 27.7364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.2374, 27.7349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.2049, 27.7296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.2008, 27.7277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.1671, 27.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.163, 27.7252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.1275, 27.7253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.1223, 27.7234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.087, 27.7226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.0824, 27.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.0465, 27.7274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.0424, 27.7283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.005, 27.7346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.0008, 27.7352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.977, 27.7374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.974, 27.7369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.9511, 27.7346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.9473, 27.7335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.9283, 27.7317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.9245, 27.7303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.8999, 27.7258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.8966, 27.7254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.8736, 27.721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.8694, 27.7199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.8511, 27.7164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.8348, 27.7109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.8188, 27.7027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.796, 27.6834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.7926, 27.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.783, 27.6633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.7854, 27.6511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.7922, 27.6268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.7929, 27.6231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.7991, 27.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -110.798, 27.5978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2580566, 28.23291588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2697678, 28.24531555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2704239, 28.25458527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2921143, 28.29494667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3073959, 28.31045341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3945007, 28.37160873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4148407, 28.37735367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4819336, 28.38903236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4750671, 28.38015938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4561386, 28.37250137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.429924, 28.35818291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.416153, 28.35687447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3937836, 28.35568428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4024582, 28.36655998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4218216, 28.37752151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4335098, 28.37948227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4320145, 28.38395691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.436821, 28.38851547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4414597, 28.39118767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4352036, 28.37631226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4363709, 28.34285927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3694153, 28.34438896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3774033, 28.35863304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.434021, 28.3906002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4510269, 28.39013481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4709244, 28.37548828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4723816, 28.36153412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4420548, 28.34490013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4282303, 28.33633041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4295654, 28.33161545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4920731, 28.31825447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5078735, 28.31502151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5158844, 28.32393265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5139008, 28.33718681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4906387, 28.32608032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4694824, 28.3257637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4061203, 28.34414482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4095841, 28.34158134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4228439, 28.34384155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4347763, 28.35023499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.449295, 28.35678101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4615097, 28.36784554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4115372, 28.3251133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4051132, 28.33112717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4341812, 28.35766602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4673691, 28.38771629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4848023, 28.40223503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.487236, 28.42035294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4925461, 28.39655876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4936218, 28.40774918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4826126, 28.41352654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4621506, 28.37969398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.445076, 28.36845779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4203873, 28.35491371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3980103, 28.33849144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3764114, 28.32342148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3888168, 28.30666924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.404953, 28.28101158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4039764, 28.27045822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.423172, 28.27370834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4249725, 28.28994751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4260254, 28.30465508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4237289, 28.3148613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4175415, 28.32048798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3550186, 28.31249619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3311539, 28.31162453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3071899, 28.30826187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2830582, 28.29839516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2614822, 28.28693771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2668076, 28.30456161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2871475, 28.31943893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3176651, 28.32890129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4751205, 28.39297295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4660111, 28.38243675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4706574, 28.36675072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.499321, 28.35263443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4682083, 28.35249329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4027176, 28.36759949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3743362, 28.36179352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3476181, 28.35266304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3391876, 28.32499504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3562012, 28.32187462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3589401, 28.29714394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3557434, 28.27100372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3413239, 28.29653549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2976685, 28.28575134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2875519, 28.27988815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2879181, 28.27124786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2821121, 28.27314568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2714081, 28.23059464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3121643, 28.25877953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.323967, 28.26886749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3359757, 28.28567886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3928452, 28.30888176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4104614, 28.33827972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4299774, 28.36319733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4562836, 28.39467049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3827362, 28.37050056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.380928, 28.35842896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3780899, 28.37183762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3942032, 28.38264656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4224091, 28.40055656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4412613, 28.41029358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.473114, 28.41115189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5009308, 28.43734932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4997406, 28.43158531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4824371, 28.40836716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4812546, 28.38756943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4499893, 28.37144661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4092865, 28.36112976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3946686, 28.34592819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4049835, 28.34499741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4240341, 28.33750916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4353638, 28.33136749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4463959, 28.33746338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4680252, 28.34506989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4257355, 28.32167244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4183426, 28.38617516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4392548, 28.40911102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4636993, 28.43011475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5127564, 28.47201729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5245209, 28.48828125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5019531, 28.44246483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4699707, 28.42241287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4641495, 28.39286995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4745636, 28.40436172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4592819, 28.4127636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4180374, 28.38881683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4115753, 28.36200714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4503555, 28.35230827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4620285, 28.34095001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.427948, 28.33267975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4232941, 28.30287361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4563599, 28.30010796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4661408, 28.32072449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4444504, 28.32581329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3873444, 28.31109047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3448257, 28.2946167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3166885, 28.29344559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1745682, 28.29601288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.157692, 28.29454613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.188942, 28.29407501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2008743, 28.28510284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2070618, 28.26376152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2036514, 28.27581024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2121811, 28.27034378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2096024, 28.28929901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2341003, 28.27588081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2172699, 28.25954819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2134781, 28.25871468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2020035, 28.25819778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1991043, 28.2590065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1862412, 28.26314354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1728973, 28.26675415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.211998, 28.28602791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2133484, 28.27879906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2756882, 28.26556015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2598953, 28.24523544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.226799, 28.2305851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2136231, 28.24284172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.303772, 28.3142662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2799683, 28.30663872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2569504, 28.30866051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.222168, 28.28137016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2171249, 28.26449013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2411881, 28.2938633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2609787, 28.30982018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2772751, 28.30589676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2829208, 28.30275536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3269043, 28.31241035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.320221, 28.28268051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2867279, 28.25738335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2544556, 28.24960899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2525101, 28.26641083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2603531, 28.25465202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2627869, 28.24825287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2837906, 28.24166298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3084717, 28.22045135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2979355, 28.20986748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2900085, 28.20959473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2522202, 28.23915863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2471924, 28.27785683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2853699, 28.2849884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3468399, 28.34801483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.370842, 28.34763718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3974228, 28.36585426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2745209, 28.30800056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1107864, 28.25554848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.111023, 28.24313736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1237106, 28.20859146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2699585, 28.23988342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2984161, 28.23163986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3013992, 28.21125603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3617249, 28.23569298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3918686, 28.24848938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4105682, 28.27218819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4212265, 28.28994179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4256439, 28.31979561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2603, 28.2417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2698, 28.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2741, 28.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.287, 28.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2946, 28.2999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3113, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3385, 28.3184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3618, 28.3341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3706, 28.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3888, 28.3724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.399, 28.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4302, 28.3873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4655, 28.3956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4821, 28.3892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4795, 28.3783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4625, 28.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4444, 28.3541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4231, 28.3513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4223, 28.3661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4276, 28.3562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4212, 28.3642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4112, 28.3789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4256, 28.3875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4302, 28.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4312, 28.3939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4251, 28.3757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4298, 28.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4301, 28.3422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4347, 28.3379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4493, 28.3471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4458, 28.3481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4394, 28.3516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4193, 28.3563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4246, 28.3539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4166, 28.3447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4086, 28.3294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4233, 28.3104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3931, 28.2872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3752, 28.3088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3588, 28.3267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3602, 28.3452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3738, 28.3692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3948, 28.3723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4251, 28.3736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4571, 28.3746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.485, 28.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4766, 28.3465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4662, 28.3452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4571, 28.3358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4317, 28.3282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4322, 28.3163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4602, 28.3081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4835, 28.3015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5075, 28.3149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5101, 28.3069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5141, 28.3129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5047, 28.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4839, 28.3284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4543, 28.3313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4261, 28.3366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3964, 28.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.42, 28.3443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4368, 28.3511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4445, 28.3564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4503, 28.3515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4607, 28.3672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4718, 28.3703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4783, 28.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4786, 28.3748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4734, 28.3813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4381, 28.3332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4096, 28.3311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4185, 28.3357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.438, 28.3524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4553, 28.3708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.474, 28.3786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4919, 28.3916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4928, 28.4076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4793, 28.3924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4839, 28.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4857, 28.3999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4721, 28.3928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4538, 28.3667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4357, 28.3525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4151, 28.3365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3833, 28.3276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3949, 28.2983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4074, 28.2728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4075, 28.2643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4168, 28.2592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4306, 28.2722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4317, 28.2963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4236, 28.3133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4197, 28.3258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3957, 28.3265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.363, 28.3148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3329, 28.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3057, 28.3148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2882, 28.3062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2852, 28.3197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.318, 28.3289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3206, 28.3175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2928, 28.3044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2645, 28.2937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2887, 28.2954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2788, 28.2938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2711, 28.2712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2459, 28.2427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2204, 28.2415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2363, 28.2675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2461, 28.2939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.263, 28.3082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2803, 28.3211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2876, 28.327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3104, 28.3324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3274, 28.3255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3485, 28.3112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3658, 28.2972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3969, 28.2953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4114, 28.2848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4097, 28.2772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3978, 28.2777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3881, 28.2982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4014, 28.3022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4105, 28.3118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4086, 28.3132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.403, 28.3281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3773, 28.3181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3479, 28.3001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3205, 28.2899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3036, 28.2788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2831, 28.2656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2678, 28.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2946, 28.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3087, 28.3073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3308, 28.3095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3577, 28.3168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3711, 28.3375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3937, 28.3511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4192, 28.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4527, 28.3871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.471, 28.3952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4779, 28.3989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4625, 28.3765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4732, 28.3541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4965, 28.3512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4813, 28.3433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.465, 28.3558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4366, 28.3696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.41, 28.3693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.379, 28.3647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3505, 28.3516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3381, 28.3305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3497, 28.3193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3574, 28.2966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3515, 28.2801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3405, 28.2837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3428, 28.2859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3378, 28.2881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3312, 28.2878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.31, 28.2784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2955, 28.2778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2925, 28.2774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2888, 28.2715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.282, 28.2732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2697, 28.2616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2596, 28.2447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2604, 28.2298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2734, 28.2308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2959, 28.2463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3092, 28.2603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3277, 28.2778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3511, 28.2963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3751, 28.3041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3873, 28.3027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.387, 28.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3942, 28.3314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3971, 28.3442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.397, 28.3535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3922, 28.3344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3937, 28.3172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3975, 28.3096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.411, 28.3151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4215, 28.3302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4311, 28.3489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4387, 28.3718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4468, 28.3937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4594, 28.4154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4711, 28.4208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4569, 28.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4402, 28.3896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4227, 28.3765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4057, 28.3591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3912, 28.3409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3676, 28.3308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3554, 28.3311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3449, 28.3382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3302, 28.3368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3379, 28.3338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3476, 28.3301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3561, 28.3283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3606, 28.3253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3692, 28.3158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3734, 28.2987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3773, 28.2863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3732, 28.2773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3767, 28.2773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3722, 28.2813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3782, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4033, 28.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4307, 28.3178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4484, 28.3258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4271, 28.3249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4123, 28.3178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4034, 28.3074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3878, 28.3046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3913, 28.3289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4101, 28.3476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4264, 28.3617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4418, 28.3789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4379, 28.3784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4229, 28.3729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3969, 28.3681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3873, 28.3621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3859, 28.3604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3882, 28.3668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3915, 28.3646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4073, 28.3724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4248, 28.3771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4419, 28.3824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4525, 28.3928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4634, 28.3956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4652, 28.3958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4678, 28.3925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4628, 28.3825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4528, 28.3782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4402, 28.3739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4244, 28.3634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4145, 28.3532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4152, 28.3546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4202, 28.3451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.422, 28.3501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4316, 28.3496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4394, 28.3455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4299, 28.3359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4194, 28.3304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4097, 28.3355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.418, 28.3473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4322, 28.3667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4483, 28.3767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4577, 28.3887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4688, 28.3953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4776, 28.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4774, 28.4079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4831, 28.4009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4671, 28.3926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4561, 28.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4504, 28.3712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4522, 28.3635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4458, 28.3538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4384, 28.3401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4378, 28.3333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4436, 28.3368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.437, 28.3347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4289, 28.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4244, 28.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4209, 28.3151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4181, 28.3076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4137, 28.3011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4111, 28.2947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4062, 28.2926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4025, 28.2851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3961, 28.2806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3901, 28.2762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3838, 28.2756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3785, 28.2755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3757, 28.2745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3726, 28.2747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4552, 28.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4545, 28.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4528, 28.2281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4161, 28.3219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4267, 28.3364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4425, 28.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4614, 28.3195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4827, 28.3336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4925, 28.3453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4936, 28.3705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.492, 28.4132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4874, 28.4307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.479, 28.4299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.477, 28.4194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4694, 28.4179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4431, 28.4154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4288, 28.4131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.412, 28.4033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3924, 28.3883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3741, 28.3802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3525, 28.3607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3675, 28.3465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3725, 28.3532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3826, 28.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3893, 28.3834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4014, 28.3776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4064, 28.3715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4139, 28.3912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4256, 28.3981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4621, 28.4222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4493, 28.4461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4842, 28.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4978, 28.4304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4933, 28.4195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4885, 28.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4605, 28.3885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4615, 28.3749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4397, 28.3506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4112, 28.3453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3824, 28.3321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3369, 28.3144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3615, 28.3178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3866, 28.3883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4013, 28.3968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4178, 28.4111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4713, 28.5087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4607, 28.5114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5054, 28.5006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5113, 28.5047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5596, 28.5323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5653, 28.5406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5582, 28.5494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5834, 28.5354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5974, 28.5528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1631546, 28.28899956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1659851, 28.30749893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1472702, 28.31305122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.130661, 28.30945587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1293411, 28.33190536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1160049, 28.28680229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1082611, 28.27342987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0889511, 28.24022102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0756149, 28.21957779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0217133, 28.14094543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8378525, 28.01045227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8260193, 27.99629974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7856979, 28.01659966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4377899, 27.76460457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4002686, 27.88908386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3867035, 27.90723991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3627091, 27.88706589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3599548, 27.87260056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3665314, 27.8724575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3951569, 27.88038826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4333496, 27.93250275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4471588, 27.93339539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2998276, 28.27484894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.260849, 28.26459312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3960877, 28.3482933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4255066, 28.37330627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3506851, 28.33718872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3612747, 28.30616951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3705826, 28.28479767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3607407, 28.27117348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3499985, 28.28508568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3346024, 28.29790878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3112412, 28.27507973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2992477, 28.2854557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2886887, 28.27394485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2952805, 28.23560333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3307648, 28.28546715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3400421, 28.29985619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3972855, 28.34464645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4463043, 28.37462997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.452446, 28.40245056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2110596, 28.2862606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2061005, 28.29742813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1921463, 28.30877304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0964203, 28.23060799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0855713, 28.2173214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0752182, 28.20184135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0306702, 28.23877716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9818726, 28.22148514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2990494, 28.28983879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3912811, 28.27844048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4610519, 28.28926659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4953079, 28.27780533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4824829, 28.27544403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4782562, 28.3048172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4846039, 28.31983376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1679688, 28.29575348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1592636, 28.30892181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1657562, 28.3085556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1580734, 28.3120079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.146286, 28.31388855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1389847, 28.30837822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0017548, 28.14952087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9869614, 28.13105202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.965004, 28.11430931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9410858, 28.09985161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8404388, 28.01204491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8308563, 27.99765778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7035065, 28.00695038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6843948, 27.97816849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6309891, 27.89262772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5587158, 27.83725739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4975052, 27.80228996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4649811, 27.77649498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4360046, 27.75435257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4180985, 27.78423309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4109802, 27.83642387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4038544, 27.88634682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3986054, 27.90920639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.391571, 27.91019058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3892365, 27.90390968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3702698, 27.90289688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3640976, 27.88840866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3624497, 27.88135147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3726425, 27.87990761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3962326, 27.88410759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4074402, 27.89352417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4407425, 27.93608284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4586563, 27.9463253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.47995, 27.96011353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4760361, 27.97982979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4807892, 27.9781208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4919052, 27.96600914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7423172, 27.98134804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7742081, 27.98136139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8029327, 27.95716476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8390732, 27.92796516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8424225, 27.968647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8476791, 28.05739212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9161682, 28.19486618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9430618, 28.21073723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9798355, 28.22400093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0080261, 28.24915504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0111618, 28.24350739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0102768, 28.22896767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9950714, 28.21203423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9760895, 28.1787262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6513825, 27.95413017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6362305, 27.92656136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6222839, 27.89996719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6099014, 27.88475227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5910645, 27.87701225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5297012, 27.91171837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5191574, 27.92186356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5077591, 27.93037415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4992218, 27.93272018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4785843, 27.92739487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4539261, 27.92012978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4269333, 27.90497398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4072037, 27.88520432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4044113, 27.86244392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6310425, 27.98371696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.634346, 27.9652195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6296005, 27.94293594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6137848, 27.93345833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5991974, 27.93640518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5948486, 27.95923424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6013336, 27.97974968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6267395, 28.01625824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.627388, 28.0363903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6402817, 28.03489685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6263428, 28.01867294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.613205, 28.00692368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6205978, 27.99274826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6248169, 27.97374153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6379471, 27.95169449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6345215, 27.97299194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.650734, 27.97094154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6877518, 27.97604752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6907806, 27.99452019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.678009, 28.01172829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6669693, 28.00923538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.659935, 28.01056671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6476975, 28.01270866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6402206, 28.01728249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7020493, 28.06607628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6796188, 28.06865692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6952667, 28.06892967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7061844, 28.067379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7243424, 28.06629372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7393112, 28.05086136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7376938, 28.03572464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7917023, 28.03698349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8255005, 28.04069519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8954163, 27.86714172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.833168, 27.89417458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8024979, 27.91266823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.787674, 27.92712784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7524643, 27.95212364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6371536, 27.96344185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6101074, 27.95063591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6059494, 28.00748253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6341629, 28.01584244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6734161, 28.01155663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7074966, 28.00591087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7407608, 27.99927521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7576294, 28.0042572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7661438, 28.01408386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7768707, 28.02751732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7947617, 28.04026222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8164597, 28.05158234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8371582, 28.06379128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8580933, 28.07943916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8770828, 28.0963726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9029312, 28.1143322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9176331, 28.1333065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9126129, 28.13752556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9186554, 28.13197517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9273605, 28.12946701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9326325, 28.12076569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9479523, 28.11111069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9686737, 28.09580421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0081329, 28.05268669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0522995, 28.08668327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0618286, 28.10891151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0692444, 28.13987923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0809784, 28.16589737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1000595, 28.18482018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.123558, 28.1955986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1455689, 28.20219231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1663361, 28.20818329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1809235, 28.21696281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1830978, 28.22662163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1765518, 28.23538017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1735077, 28.25046349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1665955, 28.27721024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1284638, 28.28932762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1169968, 28.28622627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.098793, 28.28520203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0871658, 28.27767372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0719681, 28.26575279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0546341, 28.25338936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0381317, 28.23703766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0177078, 28.21746826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9985657, 28.19838333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0062027, 28.18150902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0087814, 28.16222572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9995117, 28.16549683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.991333, 28.17383575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9990845, 28.14689255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9551163, 28.08170128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9308319, 28.06368256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8365097, 27.95555496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8263474, 27.9387455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.833374, 27.9190731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8513947, 27.89724541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8609085, 27.87519646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8722153, 27.8506012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9346161, 27.81938744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9569778, 27.82782555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9779587, 27.8439579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9885788, 27.86219215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9163132, 27.95588112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8818817, 27.98644066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8615036, 27.99506187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8401184, 28.00335312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7898941, 28.03080559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7723541, 28.04158592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7518387, 28.04861832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7512131, 28.05678558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7546845, 28.06621742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7575378, 28.06405258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7721863, 28.09052467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8323288, 28.11510277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8391266, 28.1119957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8479309, 28.10395432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8364945, 28.10164833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8258591, 28.08434486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8194351, 28.07607841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.802063, 28.07001114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7923889, 28.07624435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7850723, 28.08912086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7842407, 28.10391808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7856751, 28.11857605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7875519, 28.13306808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7847366, 28.14309692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7272949, 28.12923431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7052841, 28.13123894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.694809, 28.08883476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6490707, 28.07779884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6251602, 28.0707016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6099472, 28.05907631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5752029, 28.02890587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5667419, 28.03777885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5774918, 28.04324913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5925674, 28.02690125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5962448, 28.01229095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5856247, 27.99685287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5804749, 27.98202515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5650864, 27.96729279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5386047, 27.87375832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.522995, 27.86423492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5076904, 27.85468102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4961014, 27.83795738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4920578, 27.81720543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4857025, 27.79667854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4836121, 27.77319336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4847641, 27.75029564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4797592, 27.7449894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4712067, 27.75967407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4545136, 27.77201653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4342423, 27.77853012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4148789, 27.78388977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3949738, 27.78859329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3777542, 27.79128647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3555222, 27.78913879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3358765, 27.77889633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3162994, 27.76822662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3000794, 27.77703476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3104172, 27.78902435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3170548, 27.80010796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3210907, 27.81897545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.331955, 27.83708191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4195709, 27.88360977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4425125, 27.89472008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4440155, 27.90157509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4038391, 27.86848259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4080048, 27.87315178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.413353, 27.88705826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4147339, 27.86490822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4147186, 27.83969307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4121399, 27.82165337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4631424, 27.8323822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4960175, 27.87356377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5196686, 27.89119911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5587921, 27.94665718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5909348, 27.96887589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6090469, 27.97831917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6359329, 27.98455811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6662598, 27.98987198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6929321, 27.98728561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7151947, 27.98967171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.759903, 28.02148819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.775032, 28.03706169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8061981, 28.05684471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8504181, 28.08810997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8759308, 28.1027317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8965759, 28.11329269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9325562, 28.12562943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9606628, 28.12215424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0531693, 28.12235832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0592957, 28.13286972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0360107, 28.13066101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0190048, 28.11745644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0090561, 28.11145782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9341507, 28.14814568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9145584, 28.13909531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8969345, 28.13046265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8936844, 28.11318016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8597183, 28.08862877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8450928, 28.07730484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8195496, 28.04722786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8243713, 28.02678108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8116226, 28.01403999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7982025, 27.9986515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7806168, 27.98841858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7604446, 27.97995758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7409668, 27.97311974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6887512, 28.0274353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6899567, 28.04424095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6845017, 28.04519272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6911774, 28.05393791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6829224, 28.06258392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.676239, 28.08145142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6626358, 28.0905838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6182098, 28.08303642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6013794, 28.08668137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.585144, 28.08063698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.549736, 28.04241943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5370255, 28.01918793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5240097, 27.99324417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4211884, 27.86769867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4109802, 27.87561989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4107285, 27.88652802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3961182, 27.88905525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3832932, 27.89662933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3733063, 27.8966217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3575211, 27.8863678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3440247, 27.85637474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1249619, 28.3182354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1311569, 28.33033943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1359406, 28.32048035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1197586, 28.32405281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.08004, 28.25322723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0653, 28.23059082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0548706, 28.21362305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0512314, 28.19218063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0317307, 28.1827507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0148239, 28.17111969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0015106, 28.15498543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9746323, 28.12160683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9550171, 28.10404968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8618927, 28.04193306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8305359, 28.0118618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8251267, 28.0109272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.814003, 28.0208168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7769699, 28.02834892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7186585, 28.03242874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6884766, 27.99800301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6794205, 27.99119377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6571121, 27.96065903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6028519, 27.87863922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5518189, 27.84689331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4783554, 27.80043221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4209442, 27.80727768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.419487, 27.81373787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4130096, 27.83428383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3681717, 27.90258789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3617172, 27.90006828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3603897, 27.89937782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3983154, 27.88802338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4633713, 27.94806099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4700241, 27.97240067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4693298, 27.97629738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5341644, 27.9532547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5459442, 27.94940948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6082382, 27.91400719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6371231, 27.89465141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6966705, 27.90398788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7075806, 27.91543007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.724556, 27.95766258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7439499, 27.98395157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7799606, 27.971241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7965851, 27.9508934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8310471, 27.95214462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8376541, 27.98033524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8415451, 28.03087425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.8502655, 28.05856705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1490631, 28.31701851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1410141, 28.31039238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0855484, 28.24463272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0722046, 28.22586823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0596619, 28.20618057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0565414, 28.18629646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0344696, 28.17607689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9741592, 28.11282349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9531326, 28.10004425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.901268, 28.06184769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6286774, 27.89285469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5981827, 27.8662796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4276123, 27.76055145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4150848, 27.7725544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4208298, 27.79870605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4054184, 27.88573074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3984757, 27.90597153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3804855, 27.89774895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3634262, 27.90110588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.3595276, 27.88312721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.375679, 27.88210869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.399231, 27.88637543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4162293, 27.89993668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.496254, 27.96995354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4801102, 27.98166084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4820938, 27.97797203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.4947739, 27.96427155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5165176, 27.95435333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.5680695, 27.94391251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.6263733, 27.90259361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.7459183, 27.9876442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2173691, 28.22944069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2530212, 28.26322174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2668762, 28.27601624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2892151, 28.2914772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3423386, 28.28754044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.393364, 28.27917671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4542313, 28.29667473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4406357, 28.30450249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.391716, 28.25988197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3899841, 28.28113937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4028778, 28.28070641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4008789, 28.25877953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3968124, 28.2382431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3799896, 28.231287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3672714, 28.23261642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3681335, 28.24738503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3396378, 28.26797676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3543854, 28.27037048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3911057, 28.3047123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3976517, 28.31458664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3965225, 28.33334541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3853226, 28.33219147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.381424, 28.32275391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3872147, 28.30788803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4434509, 28.38846016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.451004, 28.40127182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4506607, 28.35071754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4371262, 28.29602623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4372864, 28.29566383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4441071, 28.30179977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4325256, 28.28853989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4424591, 28.30226517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4286728, 28.30691719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4497376, 28.35368156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5069428, 28.38757706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4710083, 28.32885933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4665909, 28.30388832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4672546, 28.28526115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4479904, 28.24194908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4379654, 28.22991371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3376465, 28.22702026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3420792, 28.23598289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3685455, 28.25626755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3433075, 28.2628231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3119812, 28.25023651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.306282, 28.2291851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3404694, 28.2342205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3553238, 28.23568535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3697052, 28.28457642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4226074, 28.30009842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3075028, 28.24280548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3065338, 28.23323631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3326645, 28.22914314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3423767, 28.23407364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3546677, 28.24463463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3645859, 28.26669502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.379921, 28.28692055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3744507, 28.31921196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.437645, 28.28868294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4638672, 28.3102684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4659271, 28.33202744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3597488, 28.33950043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3495712, 28.33923721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3310394, 28.33309555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3130798, 28.32349205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2805252, 28.31328773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2337494, 28.30124855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0527725, 28.27105331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0579529, 28.26335716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0490112, 28.2525959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0424576, 28.24549484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0397263, 28.22784996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.022995, 28.22603798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1557541, 28.19686317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1546631, 28.18197823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1350632, 28.14881516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1536942, 28.07869911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1887436, 28.14214706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2292099, 28.14875031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2406006, 28.16268539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.255249, 28.19308662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2757111, 28.20167732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.311615, 28.23934555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3526917, 28.25152588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3410263, 28.25001144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3016892, 28.25335693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2977524, 28.26673508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2994537, 28.27299118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2775345, 28.32016754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2733688, 28.29680824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2644806, 28.28351402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2557221, 28.27055359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1165161, 28.1444912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0997391, 28.14586067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0842285, 28.145298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1201553, 28.16499329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1482925, 28.18198395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1618347, 28.19991875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1652756, 28.22776031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1776505, 28.27362251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2071533, 28.30413628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1917648, 28.29273796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.181694, 28.30487061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.174263, 28.29187584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1636429, 28.27931786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1597366, 28.26421547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1633835, 28.25675774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2010193, 28.21297646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2273789, 28.15148163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -111.9847717, 28.14969254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0030441, 28.16908264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.0678558, 28.22384262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.077446, 28.25709152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.099205, 28.25323677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1103897, 28.27040672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1281281, 28.28982162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1390762, 28.31232071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1453552, 28.32293129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1586914, 28.33998489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1799088, 28.34044647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2016373, 28.34613609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1827011, 28.31791115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1741409, 28.2800293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1856766, 28.23709106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1394806, 28.11148262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1130142, 28.11818123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1107864, 28.13552856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.115921, 28.14396095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1256256, 28.15705872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1895905, 28.31384277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1869583, 28.30501175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1799088, 28.29722595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1573944, 28.26022339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2557983, 28.2798481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1970367, 28.22461319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1917419, 28.23496628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1378555, 28.28644562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1658707, 28.27536964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.201767, 28.27282333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2613754, 28.29170609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2800369, 28.28678513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.28685, 28.27375984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2768784, 28.25914192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1925354, 28.24038315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2207794, 28.23976707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2210922, 28.23004723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2319031, 28.21304131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2145996, 28.2347393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.342392, 28.29312706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.340126, 28.32363701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3179016, 28.33665466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3124924, 28.33721352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.301033, 28.32720184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2384644, 28.27346802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2308655, 28.25273323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1774063, 28.14875221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1548386, 28.14797974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1629334, 28.1351757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2122574, 28.13908768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.216629, 28.13388062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1990356, 28.13051414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2229309, 28.13738251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2522888, 28.1551075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2631836, 28.17589569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2911377, 28.20975494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3323288, 28.21735191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3485565, 28.21840858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3787231, 28.22299767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3995895, 28.23696136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4221573, 28.24658394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4435577, 28.25991249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4458618, 28.26519203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4460144, 28.33137131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4376526, 28.34145164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4375916, 28.35902405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4746018, 28.32855034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3761673, 28.23558807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3480301, 28.23483276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3228531, 28.23462105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3257599, 28.23233986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3236923, 28.24009705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3155975, 28.25637627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3176117, 28.27171326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3293076, 28.25489426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2301788, 28.48022079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3632202, 28.31640053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3839493, 28.32080269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3819809, 28.32901382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3729324, 28.33082008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3792038, 28.28115845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4046326, 28.29113197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4200592, 28.29452515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.435524, 28.29133224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3235474, 28.27091789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3247528, 28.27015114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3028107, 28.26521301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2810516, 28.23977089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2296448, 28.20099068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2138825, 28.18325806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1859665, 28.16756058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2051163, 28.13001442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.1962433, 28.14992142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.201683, 28.19284248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.211586, 28.19655037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2243424, 28.20020103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2352371, 28.21514702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2512589, 28.23449516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3137817, 28.32354546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4012146, 28.31764412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3767242, 28.30802727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2933121, 28.25900841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2648621, 28.24277687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2458115, 28.21983719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2320328, 28.20352173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2186585, 28.20814514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4295, 28.3355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4426, 28.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4665, 28.3213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4828, 28.3343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4973, 28.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4921, 28.3801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4869, 28.4069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4876, 28.4285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4833, 28.4374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4787, 28.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4642, 28.4123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4628, 28.4053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4482, 28.3935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4174, 28.3782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4067, 28.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3952, 28.3626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3749, 28.3644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3565, 28.3614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3472, 28.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3535, 28.3316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3528, 28.3333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3669, 28.3552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3719, 28.3616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3915, 28.3727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3912, 28.3724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3961, 28.3701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4154, 28.3922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4363, 28.4063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4966, 28.4241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4823, 28.4098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4405, 28.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4108, 28.3454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3853, 28.3356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3509, 28.3263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3254, 28.3188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3216, 28.3058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3099, 28.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.302, 28.3368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3065, 28.3435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3212, 28.3667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3386, 28.3729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3522, 28.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.38, 28.4035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.414, 28.4202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4454, 28.4339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4713, 28.4602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4919, 28.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.499, 28.4971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5124, 28.4912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5149, 28.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5199, 28.5071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5203, 28.5128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5347, 28.5288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5484, 28.5359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5681, 28.5385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5712, 28.5452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5875, 28.5358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5945, 28.5454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5942, 28.5519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5819, 28.5344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5591, 28.5314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5461, 28.5201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5406, 28.5111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5406, 28.5052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5485, 28.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5524, 28.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.568, 28.5281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5812, 28.5431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5901, 28.5591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.598, 28.5795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6053, 28.5675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.596, 28.5637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5863, 28.5531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5738, 28.5372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5594, 28.5137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5441, 28.4882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5279, 28.4602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5071, 28.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5, 28.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4843, 28.3715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4592, 28.3507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4387, 28.3371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4198, 28.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3933, 28.3273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3778, 28.3138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.372, 28.3121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3773, 28.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.383, 28.3198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3745, 28.3144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.377, 28.3048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3615, 28.2978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3512, 28.2914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3239, 28.2689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3233, 28.2534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3447, 28.2469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3359, 28.2291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3555, 28.2274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3834, 28.2329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4061, 28.2575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4226, 28.2806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4339, 28.3032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4339, 28.3184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4419, 28.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4486, 28.3635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4489, 28.3476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4399, 28.3242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4148, 28.3094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3809, 28.3085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3526, 28.2951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3315, 28.304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3355, 28.3008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.35, 28.3218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3518, 28.3319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3613, 28.3439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3669, 28.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.378, 28.3521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3907, 28.3725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4151, 28.3904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4322, 28.4005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4479, 28.4095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.479, 28.4279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4966, 28.4415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4907, 28.4187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4739, 28.4028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4425, 28.3894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4149, 28.3774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3914, 28.3543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3607, 28.3444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.332, 28.3256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3057, 28.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.2915, 28.3212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3069, 28.3161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.312, 28.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3116, 28.3137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3278, 28.3224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3449, 28.3358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4017, 28.3912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3755, 28.3645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3936, 28.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4016, 28.3799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4244, 28.3881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4437, 28.3918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4612, 28.3955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4606, 28.3949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.462, 28.4046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4681, 28.4102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4775, 28.4298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4875, 28.4425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5202, 28.4616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5514, 28.5001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5751, 28.5257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5866, 28.5508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5986, 28.5658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6018, 28.5813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6021, 28.5988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5987, 28.6102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5902, 28.6185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5865, 28.6218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5783, 28.6235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.574, 28.5934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5724, 28.5722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5275, 28.5251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5203, 28.5039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.51, 28.4843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5052, 28.4616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5125, 28.4346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5275, 28.4467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5365, 28.4579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5548, 28.4802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5541, 28.5004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5791, 28.5108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5854, 28.5013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5778, 28.4953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5635, 28.4903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5521, 28.4814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.537, 28.4679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5227, 28.4494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5158, 28.4155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5019, 28.3779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4806, 28.3486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4838, 28.3364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.486, 28.3497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4871, 28.3618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.491, 28.3686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4954, 28.3577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.506, 28.3701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5065, 28.3778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5121, 28.3845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5216, 28.3938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5341, 28.4265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.539, 28.4374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5354, 28.4501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5185, 28.4542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5018, 28.4501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4909, 28.4283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4798, 28.4038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4564, 28.3811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4275, 28.3661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4023, 28.3631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3955, 28.3557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3935, 28.3617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3928, 28.3838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.399, 28.4023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4174, 28.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4393, 28.4202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4645, 28.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4826, 28.4444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4948, 28.4659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4999, 28.5016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4952, 28.5121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4926, 28.5135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4932, 28.5016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4953, 28.4871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4974, 28.4886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4974, 28.4745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4953, 28.4571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4974, 28.4441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4887, 28.4465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4903, 28.4499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.492, 28.4517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.496, 28.4453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5049, 28.4532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5106, 28.4615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5141, 28.4679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5256, 28.479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.526, 28.4965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.523, 28.5141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5345, 28.5298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5383, 28.5508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5547, 28.5786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.561, 28.5958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5567, 28.6064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5606, 28.5881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.554, 28.5617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.551, 28.5446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5544, 28.5309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5515, 28.5129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5482, 28.4945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5543, 28.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5532, 28.5124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5685, 28.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.587, 28.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5985, 28.5442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6134, 28.5746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6158, 28.5824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6276, 28.5793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6503, 28.5775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6546, 28.5692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.639, 28.5763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6287, 28.5754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6093, 28.5571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6015, 28.5387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5939, 28.5316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5879, 28.5154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5832, 28.5111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5452, 28.5067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5442, 28.5117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5544, 28.5135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5758, 28.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6042, 28.5569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6145, 28.5846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6106, 28.5796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6001, 28.5715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5838, 28.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5555, 28.5289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5436, 28.4953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5509, 28.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5656, 28.5164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5883, 28.5193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6028, 28.5135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6107, 28.5192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6195, 28.5294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.626, 28.5327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6222, 28.5159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6118, 28.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5986, 28.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5772, 28.4671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5535, 28.4657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5426, 28.4776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5464, 28.5097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5364, 28.5178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5439, 28.5244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5413, 28.5154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5255, 28.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5276, 28.4941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5383, 28.4978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5535, 28.5186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5617, 28.5287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5741, 28.5435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5751, 28.5405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5817, 28.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5701, 28.5298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5532, 28.5219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.549, 28.5421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5575, 28.5512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5628, 28.5247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5607, 28.5103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5397, 28.4823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5133, 28.4433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4992, 28.4202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5008, 28.4155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.525, 28.4324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5436, 28.4503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5362, 28.4692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5442, 28.4978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5411, 28.4953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5124, 28.5011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5182, 28.4788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.514, 28.4596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5198, 28.4481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5353, 28.4611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5378, 28.4606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5324, 28.4853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5532, 28.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5566, 28.5291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5574, 28.5406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5655, 28.5584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5864, 28.5955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6045, 28.6241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6533, 28.6371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6635, 28.6233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6571, 28.5907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6563, 28.5819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6421, 28.5645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6079, 28.5491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.579, 28.5363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5495, 28.5389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5417, 28.5474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.565, 28.5087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5363, 28.4674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5368, 28.4269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5339, 28.3973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5063, 28.3838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5005, 28.4135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5195, 28.4365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.536, 28.4511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5552, 28.4864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5827, 28.5043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5927, 28.5185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5978, 28.5244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6124, 28.5399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6224, 28.5424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6505, 28.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6369, 28.5526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6455, 28.5568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6534, 28.5603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6603, 28.5636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6698, 28.5668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6768, 28.5956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6838, 28.6257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7183, 28.6576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7283, 28.6952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7467, 28.7235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7281, 28.7472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7181, 28.7609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7055, 28.7791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6925, 28.7889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7003, 28.7658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.713, 28.7555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.706, 28.7202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7025, 28.6989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7238, 28.6722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7305, 28.6729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7193, 28.6435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7057, 28.6267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6711, 28.6157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6491, 28.5955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6248, 28.5704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6169, 28.5585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5936, 28.5346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5249, 28.5017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.519, 28.4745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.515, 28.4584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5142, 28.4475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5183, 28.4371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5208, 28.43 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5361, 28.4597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5357, 28.4635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5425, 28.4754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5497, 28.4869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5355, 28.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5426, 28.5245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5477, 28.5393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5624, 28.5637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5682, 28.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5734, 28.5971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5797, 28.6039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6011, 28.5972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6186, 28.5884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6157, 28.5788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5808, 28.5506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5441, 28.5297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5112, 28.5073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4904, 28.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4814, 28.4755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4798, 28.4734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4808, 28.4808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4971, 28.4814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5065, 28.4899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5195, 28.4933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5462, 28.4991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5524, 28.5091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5614, 28.5225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5808, 28.5224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5906, 28.5337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.5936, 28.5387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6122, 28.5557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6247, 28.5658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6356, 28.5696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6452, 28.5719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6516, 28.5727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6606, 28.5742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6722, 28.5786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6649, 28.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6789, 28.6043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6919, 28.6228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7253, 28.6325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7318, 28.6755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7462, 28.6896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7657, 28.7145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7756, 28.7295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7887, 28.7691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7699, 28.7998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7491, 28.8133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7501, 28.8163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7606, 28.8183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8128, 28.8397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8376, 28.8563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8903, 28.9208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9044, 28.9521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9026, 28.9631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9161, 29.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9139, 29.0549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8947, 29.0835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8694, 29.115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8618, 29.1297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8439, 29.1536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8325, 29.1663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8171, 29.1975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8055, 29.2072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7902, 29.2023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7894, 29.2075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.763, 29.2265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7323, 29.2557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7233, 29.2466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7542, 29.2505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7602, 29.2522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7673, 29.2531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7614, 29.2762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7799, 29.2701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7911, 29.2447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8063, 29.2163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8251, 29.2002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8254, 29.1726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8306, 29.1424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8504, 29.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8518, 29.1519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8525, 29.1789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8503, 29.1901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8789, 29.1872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8903, 29.2047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8989, 29.1991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9063, 29.1832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8934, 29.1699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8865, 29.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8424, 29.1823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.808, 29.1609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8225, 29.1579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8136, 29.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7954, 29.1697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8145, 29.1484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8078, 29.1422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8133, 29.1376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8129, 29.1351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8016, 29.1367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.796, 29.1233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8028, 29.123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8169, 29.1263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8362, 29.0868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8722, 29.0717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8708, 29.0681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8832, 29.0775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9055, 29.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.92, 29.0506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9343, 29.0394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9366, 29.0534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9396, 29.0644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9438, 29.0837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9515, 29.0911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9716, 29.1041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9801, 29.1362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9975, 29.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9891, 29.1837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9877, 29.1921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9965, 29.1995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0035, 29.2017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9884, 29.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9729, 29.1079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9732, 29.1043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9865, 29.1328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9778, 29.1115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9901, 29.0994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0025, 29.0884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9946, 29.0931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9891, 29.1032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9873, 29.1311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0041, 29.1427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0217, 29.1389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0349, 29.1711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0143, 29.1669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9837, 29.1454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9781, 29.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9756, 29.1141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9696, 29.1003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9726, 29.0912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9686, 29.1045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9506, 29.0976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9552, 29.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9566, 29.1303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9644, 29.1359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9609, 29.1717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9366, 29.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9689, 29.2406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9883, 29.2499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9662, 29.2289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9411, 29.2109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9276, 29.1994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8993, 29.1793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8548, 29.1399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8704, 29.1456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8647, 29.1195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8443, 29.1155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8399, 29.1093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8389, 29.1045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8358, 29.0978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8602, 29.0895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8875, 29.0866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8881, 29.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8742, 29.0796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8399, 29.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8478, 29.0845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.852, 29.1061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8847, 29.1185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8606, 29.0934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8402, 29.0628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8129, 29.0543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7931, 29.0645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7813, 29.0645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7758, 29.0631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7815, 29.0406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.782, 29.0313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7693, 29.0389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7498, 29.0699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7355, 29.0804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7441, 29.1531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7718, 29.1913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7576, 29.1831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7682, 29.1981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7841, 29.2062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7684, 29.1806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7814, 29.1783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8066, 29.1817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7951, 29.1769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7707, 29.1767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7589, 29.1675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7607, 29.1612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7836, 29.1491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8073, 29.1316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8444, 29.1172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8788, 29.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9078, 29.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9268, 29.1004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.922, 29.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9137, 29.0783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9029, 29.0692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.867, 29.0356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8384, 29.0009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8082, 28.9682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7839, 28.9439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.76, 28.9178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7606, 28.8914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7646, 28.8978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7669, 28.9194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7719, 28.9377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7789, 28.9492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7934, 29.0035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8079, 29.0693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8286, 29.1217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8462, 29.1729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.857, 29.2212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8778, 29.2571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8898, 29.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8933, 29.3077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8894, 29.3249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9038, 29.3147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9172, 29.3008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9204, 29.2732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9257, 29.2577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9333, 29.2415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9387, 29.2275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9489, 29.2165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9557, 29.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9832, 29.1923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0081, 29.1766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0232, 29.1597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0317, 29.1488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0577, 29.1386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.064, 29.1323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0556, 29.1312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0405, 29.1332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0209, 29.1386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9977, 29.1255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9671, 29.1017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9324, 29.0672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9113, 29.0482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8821, 29.0251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8208, 29.0068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7778, 29.0038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7482, 28.9922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7419, 28.9871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7315, 28.9799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.723, 28.9734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7394, 28.9718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7575, 29.0026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.775, 29.0526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7779, 29.0637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.778, 29.0735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7709, 29.0888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7693, 29.0946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7666, 29.0965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7625, 29.1035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7567, 29.1077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7542, 29.1114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7478, 29.1049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7574, 29.0991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7343, 29.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7124, 29.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7008, 28.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6578, 28.9689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6348, 28.9686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6612, 28.9805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.687, 28.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7277, 29.0115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.751, 29.0411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7714, 29.0664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7976, 29.0636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8375, 29.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8339, 29.0411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8011, 29.0184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7714, 29.0068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7286, 28.9895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7075, 28.9776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6642, 28.9822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6617, 29.0207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6758, 29.0621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7013, 29.0911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6923, 29.0667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7149, 29.0803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.69, 29.0811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6769, 29.0684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6672, 29.0629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6441, 29.0434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6381, 29.0331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6377, 29.0026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6351, 28.9658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.646, 28.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6381, 28.9342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6317, 28.9473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6534, 28.9713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6665, 29.0073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6956, 29.0275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7178, 29.0443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7399, 29.0473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7641, 29.0505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7974, 29.0622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.836, 29.0609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8637, 29.0493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8685, 29.0319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8657, 29.0313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.852, 29.0285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8395, 29.0326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8209, 29.0375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7877, 29.0419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.766, 29.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7755, 29.0446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7928, 29.0741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.786, 29.0992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7913, 29.1352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7827, 29.1725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7931, 29.1927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8044, 29.1893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8227, 29.1939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8157, 29.1996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8105, 29.2068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7899, 29.2012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7903, 29.1714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8063, 29.1516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8202, 29.1493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8272, 29.1356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8517, 29.1178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8849, 29.1028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9126, 29.0927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9339, 29.1007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9389, 29.0858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9523, 29.0811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9633, 29.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9692, 29.0979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9709, 29.1141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9934, 29.1409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9975, 29.1452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9946, 29.1396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9898, 29.1414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9842, 29.1384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9742, 29.1311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9671, 29.1288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9593, 29.1251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9238, 29.1232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8887, 29.1164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8542, 29.1205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8473, 29.1264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8334, 29.1303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8138, 29.1366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8002, 29.1381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7881, 29.1384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7963, 29.1636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8155, 29.1872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8339, 29.2192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8415, 29.2299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8248, 29.2355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8299, 29.2275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8316, 29.2071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8497, 29.1789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8684, 29.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8775, 29.1363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9127, 29.1163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9611, 29.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9719, 29.1483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9771, 29.1586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.98, 29.1542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9757, 29.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9303, 29.1317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8922, 29.1254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8578, 29.0984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8521, 29.0862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8455, 29.0773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8389, 29.0746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8391, 29.0801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8374, 29.0864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8505, 29.0833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.833, 29.1013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8226, 29.1059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8099, 29.1216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8046, 29.1141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8301, 29.1207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8681, 29.1386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8963, 29.1479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9115, 29.1551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9247, 29.1493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9421, 29.1501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9311, 29.1382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9107, 29.1336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.888, 29.1219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8638, 29.0803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8397, 29.0796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8273, 29.0539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8136, 29.0239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8184, 29.0048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8312, 29.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8911, 29.0008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9017, 29.0014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9064, 28.9914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9142, 28.9879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9138, 28.9763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9103, 28.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9118, 28.9789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9021, 29.0039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8938, 29.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8896, 29.0184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8893, 29.0193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8845, 29.0247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8743, 29.0541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8705, 29.0975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.877, 29.1104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8865, 29.1121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8797, 29.1292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8702, 29.1624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8743, 29.1905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8769, 29.2039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9157, 29.1928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.958, 29.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9966, 29.1791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0116, 29.1707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9982, 29.1432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9802, 29.1315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9894, 29.1212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9703, 29.0903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.959, 29.0778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9516, 29.0512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9534, 29.0208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9544, 28.9884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9433, 28.9731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9254, 28.9668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9308, 28.9656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9376, 28.9688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9307, 28.9767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9313, 28.9827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9267, 28.9913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9194, 29.0018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8999, 29.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8666, 29.0052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8346, 29.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8124, 29.0166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7965, 29.0211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7935, 29.0311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7904, 29.0381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7892, 29.0462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7888, 29.0543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7872, 29.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7862, 29.0674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7811, 29.0796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7776, 29.0906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7736, 29.1014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7605, 29.1247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7194, 29.1447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6928, 29.1155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.6962, 29.1171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7085, 29.1214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.7282, 29.1221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.757, 29.1314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8034, 29.1297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.845, 29.1302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.8933, 29.1338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9211, 29.1384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9443, 29.1467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9689, 29.1521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9991, 29.1551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0065, 29.1726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0035, 29.1898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9957, 29.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0007, 29.1564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0008, 29.1544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0116, 29.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0083, 29.1643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.002, 29.1653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0197, 29.1802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -113.0047, 29.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9934, 29.1336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.9432, 29.2075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4113, 28.3296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4143, 28.3282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4434, 28.3207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4831, 28.3304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4751, 28.4328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4673, 28.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3826, 28.3581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.386, 28.3652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3973, 28.3764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3946, 28.3932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4175, 28.4291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4037, 28.3803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4152, 28.3941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4713, 28.4204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4746, 28.3935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.4422, 28.3613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3587, 28.3177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -112.3685, 28.3528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03274536, 28.53855324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03780365, 28.5385704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05905914, 28.52290535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05536652, 28.51433182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05751801, 28.49603462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0670166, 28.47757149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17433929, 28.29466629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17301941, 28.29603195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16130066, 28.30682564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12698364, 28.30347252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.11566162, 28.29980469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0905838, 28.30963898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07798004, 28.30770493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04492188, 28.31772614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01441193, 28.33004951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.97619629, 28.33637238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7999115, 28.39566612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.72505188, 28.39770126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.65235901, 28.44031906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.64260101, 28.5705204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09166718, 28.43087006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37449646, 28.4234581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48262787, 28.40028763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51699066, 28.3884697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70586395, 28.31111336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76844025, 28.28110695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78894806, 28.28886795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88227844, 28.29841232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79061127, 28.18980598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79043579, 28.1899929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.697052, 28.28657341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.68344116, 28.30684853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.68640137, 28.33774948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70388031, 28.33341217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73345947, 28.30060959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78126526, 27.90527916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61522675, 27.81085205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43321991, 28.00027275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6290741, 28.17612839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74086761, 28.19362259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.71648407, 28.22397804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59697723, 27.83872032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43819427, 27.85661316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39177704, 27.76251984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41416168, 27.76751328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43601227, 27.76888084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.45303345, 27.75871658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49591827, 27.74390984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54960632, 27.81972504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57408142, 27.89325714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57419586, 27.92048264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4705658, 27.93977928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.35669708, 27.95162773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26900482, 27.95305443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21444702, 27.94485283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16378021, 27.93725777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.89859009, 27.93619347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.66004181, 27.99862862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.56760406, 28.10624313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.55657959, 28.13178253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.55351257, 28.15579796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.49156189, 28.31361389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.48947144, 28.3157444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42168427, 28.42448235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54977417, 28.4973011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.62900543, 28.4873085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.66849518, 28.48545265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.88545227, 28.45361137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.30173492, 28.23644829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.34799957, 28.20221519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37911224, 28.16941643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53004456, 28.12524223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64199066, 28.22330093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62188721, 28.23082924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62408447, 28.17941475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61393738, 28.14693451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.60069275, 28.11876869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57822418, 28.06558609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56936646, 28.04017639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52027893, 27.9794178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42182922, 27.95165062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41803741, 27.95363235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21072388, 28.14971352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19307709, 28.23044777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19039154, 28.26153564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15251923, 28.50095558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13075256, 28.52132988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.97293854, 28.3626976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99395752, 28.30703545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00079346, 28.28503609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00337982, 28.23949051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00413513, 28.2218132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01629639, 28.19348907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01559448, 28.18224716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0063324, 28.26247787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00034332, 28.30259514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0512619, 28.44155121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.08202362, 28.49396133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10714722, 28.51925468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14597321, 28.49213409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06755066, 28.23060608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02861023, 28.14082146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03087616, 28.14066887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10887146, 28.21908188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0938797, 28.25550652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20857239, 28.19260597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22925568, 28.32489777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23331451, 28.38163757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24016571, 28.41014481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24138641, 28.54797363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24066162, 28.55166245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22570801, 28.5790062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12285614, 28.27775574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12646484, 28.27453423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1656723, 28.14484406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.34201813, 28.14184952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59386444, 28.2273674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59407043, 28.2305088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.58685303, 28.29568672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57435608, 28.32870293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56554413, 28.35057449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21323395, 28.23847771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23150635, 28.23377991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26359558, 28.27705765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32888031, 28.34534073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.352211, 28.3656292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.31326294, 28.22223091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.31919861, 28.21014595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.40892029, 28.3414135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41980743, 28.29045677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43834686, 27.98702621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4006424, 28.10687256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39157104, 28.19200134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65557861, 28.05722809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69038391, 28.02924156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70685577, 28.00528717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.68766022, 27.99501801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67223358, 27.99664116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48731995, 28.42973328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46263123, 28.4446106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43165588, 28.46617889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39073181, 28.50914764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38455963, 28.66387939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43471527, 28.67517853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38412476, 28.66076469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28837585, 28.5734024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28634644, 28.57191467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2576828, 28.50114441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23041534, 28.25506401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03952789, 28.14800835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82756805, 28.4126873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.85644531, 28.51377869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10608673, 28.20486832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12171173, 28.19153404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12456512, 28.16226578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.63477325, 28.30796623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.52680969, 28.31303024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.52993774, 28.32915688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5447464, 28.36379051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54644775, 28.36644745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.88561249, 28.4009304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.92189026, 28.38569832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9875946, 28.33182716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02136993, 28.34071732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02175903, 28.34042931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.174263, 28.35661507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22940826, 28.51791191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23578644, 28.57776833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27633667, 28.51933479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17726898, 28.19597244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21650696, 28.16818619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22878265, 28.1459465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25727844, 28.12394905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25685883, 28.12238884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20318604, 27.94072151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22561646, 27.91737175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24085236, 27.8625946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2611084, 27.73536491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27004242, 27.72663498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28126526, 27.72130966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27813721, 27.72039604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2766037, 27.71581459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26039886, 27.69769478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1208725, 27.79210854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.11484528, 27.86591721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20066071, 27.92731857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19743347, 27.92703056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20062256, 27.9390564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07930756, 27.90184402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09720612, 27.90020752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1522522, 27.92334747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17591095, 27.97554779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17941284, 28.0100956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16904449, 28.09893036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14471436, 28.13693428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15462494, 28.36235428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16300201, 28.56494522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13269043, 28.57097054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05278778, 28.58965302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02901459, 28.59337807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00745392, 28.58211899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03920746, 28.25125885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0497818, 28.20419502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07820129, 28.12785149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.08976746, 28.10857201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.08829498, 28.10751152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.78359985, 28.07868767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.75924683, 28.0670433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.68264771, 28.03949165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.45855713, 28.12000084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.44957733, 28.26165581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.46110535, 28.39914894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.46542358, 28.42568588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.48690033, 28.43987656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54879761, 28.44404602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.72696686, 28.49647331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77890778, 28.52090645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.83580017, 28.56984329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.08670044, 28.5568428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19203949, 28.48556519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38349915, 28.36939049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47698212, 28.29753685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48197174, 28.29531479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62693024, 28.35400581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62722778, 28.35437393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.40697479, 28.0222187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.34538269, 28.04506683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26129913, 28.23884964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25624847, 28.32056427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24594879, 28.31333733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23781586, 28.35839462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21208954, 28.37924957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14987183, 28.30005455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21627808, 28.17690659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19580078, 28.10303307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18105316, 28.08440399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13843536, 28.15937614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41881561, 28.31956482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09371948, 28.3956852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00576019, 28.49716759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.99559021, 28.50406837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.99364471, 28.5033474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94303131, 28.55145073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69548798, 28.64104652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.72131348, 28.64424133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87406158, 28.60232925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96470642, 28.50801468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94762421, 28.53173447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8165741, 28.63020325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88329315, 28.64947319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89388275, 28.65916061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6391, 28.4578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6234, 28.4557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5902, 28.4539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5838, 28.4531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5725, 28.4451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5697, 28.4429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5655, 28.4353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5607, 28.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5476, 28.4269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5093, 28.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4752, 28.4564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4733, 28.4562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4534, 28.4814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4522, 28.4819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4331, 28.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4332, 28.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4076, 28.5083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4055, 28.5078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3898, 28.5246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3905, 28.5263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3707, 28.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3713, 28.5407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.356, 28.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3573, 28.5608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3432, 28.5805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3361, 28.6132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3348, 28.6289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3378, 28.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3642, 28.6476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.367, 28.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3755, 28.6724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3758, 28.6779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3983, 28.6995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4054, 28.6984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4147, 28.6905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4161, 28.6711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4156, 28.6719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4074, 28.6567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3101, 28.6209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2922, 28.5997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.292, 28.5965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2826, 28.5715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2775, 28.5713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2697, 28.5601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2668, 28.5424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.265, 28.5107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2642, 28.5146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2578, 28.5047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2548, 28.5027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2511, 28.4904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2491, 28.4876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2444, 28.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.242, 28.4738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2346, 28.4504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2335, 28.4194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2265, 28.3668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2401, 28.3475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2433, 28.3219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2361, 28.2904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2384, 28.2617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2371, 28.2589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.236, 28.2344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2331, 28.2324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2293, 28.2086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2274, 28.2062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2189, 28.1718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1823, 28.1584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1679, 28.1686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1445, 28.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1124, 28.1314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0925, 28.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0839, 28.1246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0675, 28.1183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0644, 28.1154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0545, 28.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0505, 28.1111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8293, 28.3749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.828, 28.3761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8215, 28.3931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8216, 28.3932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8199, 28.4137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8198, 28.4143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8128, 28.4471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8142, 28.4485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8019, 28.4672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8043, 28.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8062, 28.4925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8314, 28.5122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8515, 28.5243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8636, 28.5245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8746, 28.5257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8763, 28.5268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9051, 28.5413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9102, 28.5419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9136, 28.5411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9172, 28.5408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.927, 28.5389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9281, 28.5381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9509, 28.5279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9541, 28.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.992, 28.5132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.012, 28.5005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0928, 28.4264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1073, 28.4133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1072, 28.4108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1071, 28.3992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1083, 28.3983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1201, 28.3704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1173, 28.3787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1164, 28.3363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.114, 28.3346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1186, 28.3032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1169, 28.3017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1114, 28.267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1085, 28.2601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1041, 28.2468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1013, 28.2446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0956, 28.1994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0955, 28.1815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1093, 28.1699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1083, 28.1669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1369, 28.1355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1226, 28.1284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1201, 28.1266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.122, 28.1295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1217, 28.1306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0519, 28.1472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0492, 28.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0469, 28.1734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0441, 28.1738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0344, 28.1909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0348, 28.1908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0262, 28.2177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0214, 28.2168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0001, 28.2347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9969, 28.2366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9735, 28.2637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9478, 28.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.907, 28.3159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8214, 28.3334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8096, 28.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8087, 28.3356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7842, 28.3515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7801, 28.3542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.741, 28.3247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.708, 28.3181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6773, 28.3144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6762, 28.3142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6421, 28.3126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6095, 28.3119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6078, 28.3123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5801, 28.3121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5788, 28.3123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5432, 28.3117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5415, 28.3108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5168, 28.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.508, 28.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5072, 28.3239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5071, 28.3419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5065, 28.3429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5135, 28.3589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5142, 28.3595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5241, 28.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5262, 28.3769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5406, 28.3891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5404, 28.3894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5823, 28.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6402, 28.4194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6828, 28.4748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7393, 28.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7485, 28.4895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7819, 28.4834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8438, 28.4481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8471, 28.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8879, 28.4195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8901, 28.4191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9385, 28.4009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9504, 28.3867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9686, 28.3725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9689, 28.3736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9887, 28.3401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0064, 28.2852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0121, 28.2715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0074, 28.3165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0208, 28.3149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0209, 28.3152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0447, 28.3076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0713, 28.2972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1458, 28.2791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1635, 28.2806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1609, 28.2799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1735, 28.289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1853, 28.3047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1852, 28.3049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1484, 28.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1428, 28.2981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1121, 28.3289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1278, 28.3486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1303, 28.3497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1507, 28.3589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1537, 28.3608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.194, 28.4243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1946, 28.4263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2006, 28.4505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2023, 28.4542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2092, 28.4772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2101, 28.4818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2137, 28.5451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2122, 28.5486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2288, 28.5891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2264, 28.5942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2469, 28.5974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2466, 28.5978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2649, 28.5831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2632, 28.5813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2819, 28.5573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2805, 28.5555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2841, 28.5287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3178, 28.4569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3315, 28.4328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3209, 28.4085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3193, 28.4066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.312, 28.3774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3101, 28.3763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3043, 28.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3018, 28.3635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2784, 28.3477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2621, 28.3424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2596, 28.3402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2503, 28.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2503, 28.3396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2445, 28.3132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2452, 28.3125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2516, 28.2984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.252, 28.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2629, 28.2502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2614, 28.2497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.259, 28.2419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.257, 28.2423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.249, 28.2257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2476, 28.2251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.215, 28.2022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2107, 28.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1998, 28.2023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1929, 28.1964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.191, 28.1961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1822, 28.1787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1787, 28.1752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1885, 28.1454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1779, 28.1471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2, 28.1269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2009, 28.1212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2134, 28.1083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.213, 28.1059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2305, 28.0835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2601, 28.0712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2613, 28.0694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.286, 28.0507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2858, 28.0482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.306, 28.0349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.301, 28.0277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2792, 27.9728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2892, 27.9778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2869, 27.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1702, 27.9633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1612, 27.9572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1424, 27.9627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1409, 27.9645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1087, 27.9617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1052, 27.9608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1285, 27.9765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1906, 27.9571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2208, 27.9411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2192, 27.9364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2422, 27.9212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2664, 27.8596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.274, 27.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.285, 27.7947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2828, 27.7896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2869, 27.7577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2859, 27.756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2875, 27.7256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2866, 27.7237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1626, 27.6854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1628, 27.6996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1548, 27.7128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1567, 27.7242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1476, 27.7258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1485, 27.7337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1478, 27.7621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1342, 27.7789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1085, 27.7771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1285, 27.7963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1191, 27.8094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1194, 27.8126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1274, 27.8253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1297, 27.8485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1383, 27.8566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1187, 27.9271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1521, 27.9573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1648, 27.9739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.164, 27.9732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1714, 27.9852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1685, 27.9852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1715, 28.0032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1714, 28.0253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1746, 28.0423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.184, 28.0612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1882, 28.0775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1823, 28.0886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0948, 28.1778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0931, 28.1885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1134, 28.2063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1253, 28.2093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1494, 28.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1528, 28.2284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1756, 28.2564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1819, 28.2894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1819, 28.2936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1756, 28.3275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1756, 28.3314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1763, 28.3553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1761, 28.3582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.183, 28.3852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1834, 28.3869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.184, 28.4101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1851, 28.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1869, 28.4563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1868, 28.4801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1933, 28.5131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1888, 28.5292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1901, 28.5321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1712, 28.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1733, 28.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1543, 28.5809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1555, 28.5821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1383, 28.5834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1247, 28.5853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1255, 28.5872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0894, 28.5893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0831, 28.5893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0778, 28.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0593, 28.5945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0566, 28.5985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9711, 28.5738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9681, 28.5591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9681, 28.5467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9678, 28.5391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9647, 28.5398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9701, 28.5329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9662, 28.5337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9673, 28.5335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9722, 28.5272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9674, 28.5273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9708, 28.5252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9445, 28.5198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9443, 28.5178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.937, 28.4855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9397, 28.4898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9482, 28.4502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9931, 28.3675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0037, 28.3446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0065, 28.3428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0129, 28.3269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.016, 28.3253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.025, 28.2595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0268, 28.2373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0442, 28.2046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.037, 28.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0415, 28.1936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.044, 28.1861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0562, 28.1657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0558, 28.1592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0598, 28.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0602, 28.1319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0685, 28.1056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0673, 28.0977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0599, 28.0928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7521, 28.0844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7642, 28.0837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6929, 28.0639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6734, 28.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6236, 28.0693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5863, 28.0809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5857, 28.0827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5693, 28.0795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5683, 28.0805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5464, 28.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4951, 28.1021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4667, 28.1094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4614, 28.1147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3892, 28.1848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3832, 28.1999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3658, 28.2086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3638, 28.2103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3627, 28.2501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3578, 28.2644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3577, 28.2654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3553, 28.2652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3532, 28.2691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3517, 28.2707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.352, 28.2726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3519, 28.2727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3588, 28.2876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.369, 28.2894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.375, 28.2886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4112, 28.2789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4343, 28.2633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4358, 28.2624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4698, 28.2637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5029, 28.2842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5253, 28.3025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5189, 28.3278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4934, 28.3734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4935, 28.3752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4806, 28.3915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4807, 28.3934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4746, 28.4141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4743, 28.4173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4683, 28.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4684, 28.4441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4857, 28.4512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4914, 28.4526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5555, 28.4724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5633, 28.4742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5708, 28.4731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5732, 28.4586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5718, 28.4648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6056, 28.4751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6671, 28.4619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.671, 28.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7061, 28.4663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7092, 28.4672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.75, 28.4807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7694, 28.5035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7712, 28.5034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7935, 28.5243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.795, 28.5243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7861, 28.5433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8028, 28.5448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8273, 28.5878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8238, 28.5753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8259, 28.5632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8271, 28.5616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8458, 28.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8493, 28.5452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8743, 28.5481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8784, 28.5466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9043, 28.5553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9075, 28.5554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9971, 28.5593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0191, 28.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02, 28.5554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0449, 28.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0481, 28.5485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0677, 28.5424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0738, 28.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0936, 28.5375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1039, 28.5328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1038, 28.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1167, 28.5212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2047, 28.4469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2126, 28.4439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2176, 28.4493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2181, 28.4473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2278, 28.4505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2642, 28.4151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2842, 28.3939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2866, 28.3829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.296, 28.3806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3018, 28.3845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3141, 28.3772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3167, 28.3745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.368, 28.3411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3859, 28.3249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3928, 28.3238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4335, 28.2912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4819, 28.2708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5161, 28.2713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5171, 28.2723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5441, 28.2777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5473, 28.2788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5687, 28.2837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6109, 28.3138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6747, 28.3603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6752, 28.3583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6842, 28.3551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6653, 28.3386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6643, 28.3364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6542, 28.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6507, 28.3222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6263, 28.3069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6257, 28.3041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6068, 28.2964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6058, 28.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6067, 28.2894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.606, 28.2874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5976, 28.2697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5977, 28.2654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5908, 28.2448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5913, 28.2371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5827, 28.2131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5822, 28.2088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 28.1414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 28.1387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5475, 28.1088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5476, 28.1064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5426, 28.0789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5422, 28.0773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5286, 28.0562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5145, 28.0394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5133, 28.0381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4849, 28.0172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4142, 28.0139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3627, 28.0136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3516, 28.0191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3461, 28.0205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3261, 28.0512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.324, 28.0452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3215, 28.0452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3186, 28.0435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3006, 28.0702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3013, 28.0686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2823, 28.0878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2699, 28.1099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27, 28.1104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2638, 28.1254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2629, 28.1338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2647, 28.1355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2391, 28.1752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2286, 28.1979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2337, 28.2288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2364, 28.2309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2474, 28.2551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2514, 28.2824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.255, 28.2852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9799, 28.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9829, 28.4333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9624, 28.3653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9964, 28.3634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1287, 28.4833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8902, 28.4501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9639, 28.3876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9358, 28.3447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9228, 28.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4851, 28.5896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1474, 28.4449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9115, 28.5093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9361, 28.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9555, 28.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0315, 28.4325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.052, 28.4127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1839, 28.2254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1477, 28.0426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1846, 28.1245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1981, 28.0653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3351, 28.0894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1189, 28.0093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1219, 28.0149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9468, 28.2868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9038, 27.7561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1286, 27.8446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0854, 27.8394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9257, 27.8181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8902, 27.8149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3341, 27.9579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2572, 27.7996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2068, 27.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6081, 27.8407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9493, 27.9005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9257, 27.9829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5806, 27.9013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6763, 27.9039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7034, 27.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7223, 28.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6883, 28.3778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3734, 27.9838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0216, 28.3864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0163, 28.3618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0027, 28.2871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0071, 28.2767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.458, 28.1853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6557, 28.4243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3536, 28.1359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3581, 28.2956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2921, 28.0004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.263, 28.0044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3228, 28.1095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.117, 28.0048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1555, 28.0631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3933, 28.0897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9621, 28.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9723, 28.5437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0556, 28.1584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0172, 28.2784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9461, 28.3539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9425, 28.3398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9193, 28.2962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9388, 28.4206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3576, 28.4056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1072, 28.4089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6279, 28.4104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0301, 28.0392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0761, 28.4839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1219, 28.4768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2125, 28.1197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3379, 28.0249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3648, 28.0663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2972, 28.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3017, 28.1742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3216, 28.2291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4058, 28.3436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.431, 28.3754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4313, 28.3874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4267, 28.3895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4104, 28.4029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4094, 28.4113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3816, 28.4267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3668, 28.4248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3474, 28.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3421, 28.4307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3071, 28.4404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3045, 28.4381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2148, 28.4209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2112, 28.4177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1584, 28.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1525, 28.3708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1485, 28.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1451, 28.3534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1402, 28.3298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1398, 28.3277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1408, 28.3177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1448, 28.2901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1428, 28.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1666, 28.2213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1746, 28.2155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1908, 28.1898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1915, 28.1877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1942, 28.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2146, 28.1326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4975, 27.9728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5616, 27.9851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5783, 28.0062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5793, 28.0079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5996, 28.0298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5834, 28.2646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5794, 28.2662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5268, 28.3107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5107, 28.3243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5079, 28.3231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4983, 28.3234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4934, 28.3242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.485, 28.3201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4708, 28.3061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4727, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4518, 28.2713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4362, 28.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4313, 28.1074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4439, 28.0869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5051, 28.0661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6112, 28.1931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6199, 28.2272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6282, 28.2493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6932, 28.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7086, 28.1762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7041, 28.1766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7164, 28.1453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7175, 28.1413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7364, 28.1287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.736, 28.1244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7949, 28.0418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7957, 28.0388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7971, 28.0289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7993, 28.0265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8034, 28.0202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8058, 28.0173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8256, 27.9988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8217, 27.9887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8315, 27.9834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8394, 27.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8401, 27.9688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8001, 27.9664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7437, 28.0373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7431, 28.0425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7199, 28.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7002, 28.0839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6776, 28.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6758, 28.1027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6601, 28.124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6643, 28.1705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6801, 28.2146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6987, 28.1851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7166, 28.1581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7165, 28.1483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7288, 28.1372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7274, 28.1353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7447, 28.1198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6931, 28.1025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7444, 28.0917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7469, 28.0866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7513, 28.0653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7423, 28.0448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7388, 27.9952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7458, 27.9866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7352, 27.9791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7356, 27.9733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.719, 27.9529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7224, 27.9333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.724, 27.9333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7203, 27.9429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7232, 27.9693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7263, 27.9713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.708, 27.9944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7076, 27.9967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7092, 28.1244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7352, 28.1333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7567, 28.1259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.765, 28.1174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7696, 28.1062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7688, 28.1049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7503, 28.0958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7478, 28.0953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7387, 28.0925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7321, 28.0924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7256, 28.0861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7202, 28.0857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7176, 28.0844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7117, 28.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7042, 28.0786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.671, 28.0748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6702, 28.0825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6393, 28.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6616, 28.0136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.674, 27.9972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7327, 27.9572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7294, 27.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7865, 28.0545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7214, 27.8978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6692, 27.9753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6577, 27.9928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6434, 28.0132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6446, 28.0157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6305, 28.0644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6144, 28.0861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5755, 28.1268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5746, 28.1308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4417, 28.2267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4387, 28.2269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.413, 28.2361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4047, 28.2418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3764, 28.2478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3678, 28.2469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3569, 28.2718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3255, 28.2807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3178, 28.2815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1852, 28.3159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1813, 28.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1421, 28.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1693, 28.3183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1246, 28.3006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1223, 28.2995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1017, 28.2824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1042, 28.2908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0806, 28.2959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0806, 28.2977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1711, 28.3856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1771, 28.3896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2442, 28.4389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2648, 28.4514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2886, 28.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3204, 28.4577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3369, 28.459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3381, 28.4654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3508, 28.4602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3545, 28.4616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.371, 28.4581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3658, 28.4546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3877, 28.4649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3907, 28.4571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3996, 28.4553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4025, 28.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4372, 28.4569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5988, 28.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6353, 28.3397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6446, 28.3139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6621, 28.2911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6621, 28.2884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6765, 28.2355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.676, 28.2127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.678, 28.2096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6783, 28.1879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6007, 28.0062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7033, 28.1274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7193, 28.1558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7282, 28.1789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7292, 28.1854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7895, 28.2305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8077, 28.2104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8133, 28.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8256, 28.1834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8262, 28.1911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.834, 28.1727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8384, 28.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8521, 28.1677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8387, 28.1578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8408, 28.1623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8471, 28.1459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8465, 28.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9119, 28.0241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.915, 28.0185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9295, 27.9951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9454, 27.9683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9536, 27.9402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9542, 27.9386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9723, 27.8871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9809, 27.8646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3954, 27.8412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4299, 27.8773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.413, 28.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3743, 28.0824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3717, 28.0894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3702, 28.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3686, 28.0892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3501, 28.1072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3381, 28.1151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3224, 28.1218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3105, 28.1149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3116, 28.1024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3122, 28.1032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3142, 28.0806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3444, 28.0415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36, 28.0302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4285, 27.9635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.436, 27.9482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5071, 27.9158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5402, 27.9089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5622, 27.8941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5827, 27.8762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5294, 27.8142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5412, 27.8207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5196, 27.8132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5217, 27.8161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5061, 27.8215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5102, 27.8099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5126, 27.8135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.536, 27.8136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5347, 27.8272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.518, 27.8243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4951, 27.8374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4774, 27.8494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4582, 27.8586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4119, 27.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4042, 27.9156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3847, 27.9171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3751, 27.9176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.363, 27.9181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3569, 27.9165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3465, 27.9147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3426, 27.9114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3356, 27.9043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.331, 27.8908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3289, 27.8961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3276, 27.8937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3168, 27.8735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3172, 27.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.311, 27.8598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3042, 27.8479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2977, 27.842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.295, 27.8337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3114, 27.8104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3274, 27.8294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3319, 27.8296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3517, 27.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3927, 27.8481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.429, 27.8391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5925, 27.8452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6233, 27.8514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6256, 27.8522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6413, 27.8747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6399, 27.8763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5956, 27.9027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5951, 27.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7162, 27.7144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7186, 27.6559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7288, 27.6043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7099, 27.5828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6554, 27.5246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6557, 27.5257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6307, 27.4635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6277, 27.4563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.63, 27.4517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6474, 27.4533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.641, 27.4555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6315, 27.4615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6341, 27.4644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6344, 27.4736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6289, 27.4902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6212, 27.5023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6103, 27.5106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6045, 27.5145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5491, 27.6571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5616, 27.6795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.666, 27.7554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7034, 27.8135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.773, 27.5809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7294, 27.5419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7037, 27.5478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.702, 27.5455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6774, 27.5347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7598, 27.4702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7826, 27.4824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8341, 27.5055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8668, 27.5104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8776, 27.511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8796, 27.5094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8947, 27.5086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9337, 27.5155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9539, 27.3708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9708, 27.3615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9892, 27.3534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10801697, 28.39177895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06092834, 28.40526581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13828278, 28.38406181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09088135, 28.35086823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08392334, 28.44615555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.01611328, 28.51425362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.97730255, 28.50226784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0772171, 28.49001694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.07252502, 28.50095749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00535583, 28.49472427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08266449, 28.46275711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10790253, 28.4128418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96457672, 28.49025345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.01296997, 28.5498085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17569733, 28.35221291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.18738556, 28.32573318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.18917084, 28.30810165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06356812, 28.36229706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13538361, 28.46161079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22792816, 28.38662529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.33587646, 28.32322121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.32078552, 28.33834076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12512207, 28.42253304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.16571808, 28.4100647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08872223, 28.52340889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08965302, 28.51124001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0824585, 28.51753044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06723785, 28.50797081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03292084, 28.54813004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12493134, 28.51409721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15348053, 28.49816322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.21356964, 28.45868874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10722351, 28.43390465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12491608, 28.42183685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17080688, 28.40011406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17073059, 28.39922714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.43967438, 28.26760864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50615692, 28.29005814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.70449066, 28.28259468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6111145, 28.37324142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.57276917, 28.37003517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.58491516, 28.3981514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.60791016, 28.4201355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55163574, 28.48592949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.53462982, 28.48902321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.60160065, 28.43032837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.58953094, 28.44635773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55514526, 28.36531448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55995941, 28.33802986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.67682648, 28.32278442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.57113647, 28.42073822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.57653046, 28.41342926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69944763, 28.27778435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.59941864, 28.26612663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.59177399, 28.28718567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.68562317, 28.31140327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.73659515, 28.29955292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72245026, 28.2877636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.68676758, 28.32210922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.73278046, 28.46954727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69898987, 28.39593887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69857788, 28.39435577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69267273, 28.30088806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.74410248, 28.28801918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72554016, 28.24517059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.65962219, 28.36998749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.64277649, 28.34485435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.68336487, 28.3507576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.66336823, 28.35154343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.65468597, 28.3070755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.63991547, 28.30709457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.67928314, 28.28914261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.70288086, 28.30550003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.74476624, 28.29252243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.70959473, 28.32883263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69851685, 28.24867821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7230072, 28.22882652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.73751831, 28.26730919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.71855927, 28.26451683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72985077, 28.27946472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.73587036, 28.2690239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.67211151, 28.38498116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.64476013, 28.35703468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.57211304, 28.33955193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.48104095, 28.26373672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.65704346, 28.23049355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72023773, 28.26650047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.76187134, 28.22728729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.75883484, 28.24471664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.77089691, 28.24505043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.77610779, 28.23714447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7410965, 28.24337006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.71710205, 28.28420448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.75095367, 28.26146698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.74810791, 28.33332062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7756424, 28.11957741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7057724, 28.28748512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69289398, 28.29874992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.73693085, 28.29658699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.71783447, 28.30910492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72974396, 28.3009491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.74739838, 28.26940155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08065033, 28.41446304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08033752, 28.41470337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08187866, 28.40777397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0807724, 28.40854263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09449768, 28.41453743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0582962, 28.43846321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05108643, 28.43842888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10739136, 28.39309502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.07514954, 28.35967445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13065338, 28.34045601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.01124573, 28.39193153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93036652, 28.42100334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98838806, 28.54790306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10301971, 28.38815117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6471405, 28.27206421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.73180389, 28.25239754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46705627, 28.21602821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46416473, 28.21786499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.31668854, 28.00075531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22450256, 28.10925674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.67810822, 28.16361427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.84545135, 28.11107063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.82269287, 28.02265739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89720917, 27.79222679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7674408, 27.69335747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.90307617, 27.67328835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97737885, 27.63389778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.18655396, 27.79140472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19022369, 27.79231834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05947113, 28.34262848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06164551, 28.33629417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.07039642, 28.32569504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10838318, 28.30620193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10114288, 28.29997063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08771515, 28.21921158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2210083, 28.21796036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15296936, 28.29617691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1353302, 28.32336426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13440704, 28.34272194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1228714, 28.36964798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.07406616, 28.41942787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00678253, 28.4847126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93006134, 28.47640228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87844086, 28.42200279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86527252, 28.37744141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09540558, 28.30019569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.14126587, 28.35803986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.16945648, 28.39667892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03591919, 28.42244148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1297226, 28.36723709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13995361, 28.35354424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.20947266, 28.34495163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.07161713, 28.31876945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.07676697, 28.46620369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80216217, 28.7171402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.72724152, 28.7262249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70829773, 28.72902298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6499176, 28.79989624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.58377075, 28.84178734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48815155, 28.81816101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53030396, 28.77972984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.72382355, 28.75140953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77140045, 28.71064758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84814453, 28.64899635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98421478, 28.53447723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09218597, 28.39809036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09464264, 28.4414711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17076111, 28.44382477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.21421814, 28.39871407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.23415375, 28.37530899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55734253, 28.39885902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.54551697, 28.41246223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.56987, 28.39154816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5381012, 28.39081764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.51728821, 28.35025597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5154953, 28.34949875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46668243, 28.34840775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36914825, 28.29221153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15691376, 28.32233238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09489441, 28.29856682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.90279388, 28.65868378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77355957, 28.75969124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76597595, 28.75194931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73620605, 28.75304413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.72016907, 28.75717735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42603302, 28.97075081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.397995, 28.96722984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39749908, 28.96762085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42873383, 28.96349525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62760925, 28.88045883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65787506, 28.86335564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87683868, 28.6390152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89154816, 28.6257267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9706192, 28.54135513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98389435, 28.53726196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9709549, 28.56677437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92227173, 28.59119797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87173462, 28.57842255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84805298, 28.72961426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8246994, 28.75694847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8175354, 28.7663269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78274536, 28.80686569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73805237, 28.86473274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59098053, 28.8190918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61599731, 28.84421349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61733246, 28.8425808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77086639, 28.68793678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77047729, 28.69582176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75086212, 28.70640373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52315521, 28.86256599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41750336, 28.91973877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25905609, 29.05903625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2586441, 29.06043243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4182663, 28.91524124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76118469, 28.72835159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77336884, 28.75834846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.68152618, 28.7597599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59047699, 28.84587669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.58908844, 28.85281944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66410828, 28.80220795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65551758, 28.80074883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66124725, 28.76976204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64238739, 28.82100868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64452362, 28.81978989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75626373, 28.76117706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7760849, 28.74371529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79569244, 28.65019035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77433014, 28.72364235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76894379, 28.74280548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74938202, 28.74518776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66194153, 28.81801605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.63722229, 28.83630943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62218475, 28.84218979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.58579254, 28.83937263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51808167, 28.81089783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51804352, 28.81220818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.35778046, 28.94995499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38658905, 28.97286606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.40171051, 29.01826286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25627136, 29.09143829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13053131, 28.99976349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14012909, 29.01148224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12032318, 29.07493782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.11465454, 29.11354637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12239075, 29.08107185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1492157, 29.06814003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17127228, 29.06661606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18769073, 29.09301567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18267822, 29.09785652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23616791, 29.06572151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.36125946, 29.01027107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41279602, 28.98728752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47150421, 28.93500519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46245575, 28.92455482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39950562, 28.91169739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37561798, 28.91916656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49160004, 29.00891113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46685791, 29.00529289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.45043945, 29.00442123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.44743347, 28.99149513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65973663, 28.78986168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50659943, 28.93506622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.475914, 28.93284988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15908051, 29.00968933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26786041, 28.96405792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54522705, 28.82405472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5255661, 28.82208824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2372818, 28.92040253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14675903, 29.01151276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07130432, 29.07225418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06858826, 29.0746479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.66718292, 29.2134304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.86209106, 29.13048363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14434814, 29.08937263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12426758, 29.10368919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15309143, 29.06012535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56620026, 28.43640327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48700714, 28.43363571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32524109, 28.60617256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32608032, 28.61064148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39958191, 28.67767715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.40880585, 28.66190529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27257538, 28.5822525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05458832, 28.15032578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02019501, 28.16635323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98345184, 28.18364906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.91059875, 28.21021843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.81040955, 28.3374176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82260895, 28.34761238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09548187, 28.24391937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14595795, 28.15296364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14834595, 28.14161682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14518738, 28.14042091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07294464, 28.1313076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.66326141, 28.29272842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.80033112, 28.47255135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.85218048, 28.43919373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.87686157, 28.42316818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.89041901, 28.40394592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0011673, 28.32031441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13170624, 28.30435944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18106079, 28.35294151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23073578, 28.54157639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21351624, 28.20049286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2678833, 28.07988739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20653534, 27.94478416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25904846, 27.83039665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26761627, 27.76490974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27983856, 27.71773148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26798248, 27.70678329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09452057, 27.81833076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14626312, 27.87392426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16931915, 27.8850441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06573486, 27.88909912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14958191, 27.92889023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15937805, 27.9392662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19989014, 28.03978348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01370239, 28.3940258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02185059, 28.37049103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05895233, 28.20758057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07836151, 28.13328362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.08855438, 28.10831833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76877594, 28.07853699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76644135, 28.07865906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.69146729, 28.06969833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.66036987, 28.07025146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.65939331, 28.07084656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.45559692, 28.11829567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4177475, 28.15419579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.38516235, 28.28216934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.46901703, 28.25852203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.45449066, 28.37352562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77098083, 28.50514412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.79527283, 28.54744148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.80588531, 28.56684303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02381897, 28.56335068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37337494, 28.35938454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49970245, 28.28839493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.60225677, 28.32786369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66065979, 28.36246681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.58018494, 28.15827179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5714798, 28.13238525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54737091, 28.0858078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52762604, 28.04888725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32759857, 28.04849815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27545929, 28.17313957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25878906, 28.30872154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1206131, 28.41571999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14112091, 28.28915977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13635254, 28.26348495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17774963, 28.06960487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1383667, 28.17386627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20285034, 28.20861626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20581818, 28.20793915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.31980896, 28.2597084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38890076, 28.32317162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.31034088, 28.11289978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32169342, 28.08760834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33926392, 28.06754303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37830353, 28.02426529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38301849, 28.09545708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.35668945, 28.14349174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.35578156, 28.16806984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.30570984, 28.29077721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27884674, 28.14790154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39851379, 28.31141853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1622467, 28.19016075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21188354, 28.0452919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47924805, 27.97547531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57872772, 28.18703842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57901001, 28.18990517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6258316, 28.2423687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82499695, 27.99741364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76969147, 27.99051285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65200043, 28.10352325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76049042, 28.16248322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.71308899, 27.96188545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70599365, 27.96198463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76675415, 28.09945679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79962921, 28.02321815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75582123, 27.94872284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76066589, 27.95699883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79590607, 28.08058357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8094101, 28.06776619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78979492, 27.86533737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78174591, 27.86607933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74312592, 27.88552094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7088089, 27.92448997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56755829, 28.10079193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55433655, 28.1211338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48737335, 28.18220711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4559021, 28.19402885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15705872, 28.29798889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12973022, 28.35470772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.147789, 28.3667984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19844055, 28.40552711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2208786, 28.42483711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.71054077, 28.11347961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.60448456, 28.02935219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94937134, 27.87705231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95933533, 27.81393051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96501923, 27.78716278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.31321716, 27.83690071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.35274506, 27.84794617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04306793, 28.53539276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04967499, 28.53117752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06410217, 28.51985741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05224609, 28.48880959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06478882, 28.47502136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09365845, 28.4104538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13782501, 28.27897072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12436676, 28.29865265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05992889, 28.30329704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99468994, 28.30620193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.96492767, 28.31734467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.93930054, 28.32744026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.89204407, 28.3308506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.83454895, 28.35530281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.806427, 28.36173248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.73674774, 28.3841362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.58579254, 28.48044586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.11012268, 28.35774612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39805603, 28.40683174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78981781, 28.28859711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82605743, 28.30508614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.83469391, 28.30598068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8331604, 28.3069191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8476944, 28.28587151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86431885, 28.26210594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70407867, 28.13098145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70207214, 28.13095665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.68988037, 28.14979553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67105103, 28.22170639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64310455, 28.24662018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64064026, 28.29347229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67650604, 27.92985153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69065857, 27.85371971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33625031, 27.91258812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33388519, 27.91260147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32769012, 27.91947365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26935577, 27.96359444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2723999, 28.04528999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55665588, 28.16676331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56904602, 28.15330887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59893799, 28.14383125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6991272, 28.21799088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53759766, 28.03304482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.564888, 27.84788322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56568909, 27.80717087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.58937073, 27.79218483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.40582275, 27.76039314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4047699, 27.75998116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46370697, 27.73157501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5602951, 27.83671188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.58287811, 27.88593674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26644897, 27.93538284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19709015, 27.92023468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12953186, 27.91404533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.96598053, 27.92931747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.79515076, 27.9124527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76451111, 27.91592979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.73174286, 27.92925453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.65238953, 27.97290611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.60860443, 27.9989872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.57440948, 28.07975769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.59237671, 28.25721931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6335907, 28.4835453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.69580078, 28.48241234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.78036499, 28.4660244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23134613, 28.25928116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27442169, 28.23733711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32072449, 28.21049118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.34829712, 28.18217087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61824799, 28.18038177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.60214996, 28.13547325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57196045, 28.07511711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49861145, 27.9702301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43088531, 27.95641136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24329376, 28.00662422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2143631, 28.1542511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20014954, 28.16971016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18700409, 28.18722916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17592621, 28.25627136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15782928, 28.33846283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15977478, 28.36203575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1488266, 28.42391014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14263916, 28.5061264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.97848511, 28.32554054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98931122, 28.24739265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9997406, 28.21641541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00473785, 28.19224358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00263977, 28.22816849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00283813, 28.24802589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00458527, 28.27192497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99331665, 28.31051064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04579163, 28.19591522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01125336, 28.07941437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10018158, 28.2512989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09119415, 28.25571823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12821198, 28.18814659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19184875, 28.27535629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22211456, 28.33127785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23654175, 28.43075562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22557831, 28.50353241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32617188, 28.15476799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53244019, 28.14185333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54825592, 28.20343781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.565979, 28.2456646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47145081, 28.43786621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18891907, 28.28985596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18521881, 28.30726433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19454193, 28.35516739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19756317, 28.35866928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23458099, 28.40908432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29161072, 28.4707222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26544189, 28.20903397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26187897, 28.15960312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.30660248, 28.24166489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37253571, 28.34393692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4026947, 28.35247612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3866272, 28.00180054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.68758392, 28.01652336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53397369, 28.06801033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50634766, 28.07992744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49884796, 28.09061623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43849182, 27.92142105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29283905, 27.79760361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26709747, 27.807724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.94743347, 28.049963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.74611664, 28.28855896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.75489044, 28.6848793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05371094, 28.27545166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.14539337, 28.20391846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22505188, 28.21622276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.14630127, 28.32355118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00667572, 28.48491096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87625885, 28.41135216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88771057, 28.31049919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.983078, 28.19588852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.07054901, 28.24646759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09378815, 28.28676796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09040833, 28.28631973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13179016, 28.32631111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1427536, 28.35564423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.14478302, 28.39692307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04679871, 28.41724968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08968353, 28.39318275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12531281, 28.37015533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17275238, 28.30087662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10461426, 28.30615616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03929138, 28.30784988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03791046, 28.30672646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05476379, 28.33008766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78534698, 28.72930527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.72280121, 28.73182297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70011139, 28.73353195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65114594, 28.80530739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57499695, 28.85176849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49715424, 28.93300247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.478508, 28.81528473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56739044, 28.78343391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74752808, 28.73159218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77425385, 28.71011925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92685699, 28.58313751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08678436, 28.38367462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08781433, 28.38545799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09384918, 28.41090012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09694672, 28.44592476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17372894, 28.4338398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.27967072, 28.33829117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.31629181, 28.32413101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55387878, 28.39825058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.54534912, 28.41711426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.57040405, 28.3886261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5488205, 28.40829277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5475235, 28.38342285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49627686, 28.35553932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.42137909, 28.32819176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05387115, 28.44294548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92612457, 28.64130402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92299652, 28.63408279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.85983276, 28.70147896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.83482361, 28.71674919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81980133, 28.74000359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81639099, 28.76786995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66899109, 28.80282593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.60095978, 28.83901596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52435303, 28.86822319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42931366, 28.96772575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66661072, 28.85339737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.72583008, 28.8163662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87473297, 28.63592339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87746429, 28.63881493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87257385, 28.62973785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94152832, 28.58516121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96893311, 28.55054474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94473267, 28.57576942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94160461, 28.57637215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.90380096, 28.58522797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92605591, 28.58636856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88148499, 28.60679817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87756348, 28.60920715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88884735, 28.69940758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8533783, 28.73653221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78129578, 28.812603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62083435, 28.85865402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.60397339, 28.83416939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.58410645, 28.85956192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75164032, 28.69988632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76937103, 28.68724823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75611877, 28.70495415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.60663605, 28.85566139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50031281, 28.87040138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.40654755, 28.91504669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38456726, 28.9214344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.44932556, 28.89373398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7355423, 28.72411919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.72720337, 28.7662487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7251358, 28.76660156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66823578, 28.77318382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65349579, 28.78204155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65432739, 28.78618431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65619659, 28.78332329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.569664, 28.82094002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56066132, 28.8443737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.63162231, 28.82042885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86306, 28.5974884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84361267, 28.61724663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81188965, 28.69394302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73030853, 28.75313568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7092514, 28.78798866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.68571472, 28.80604744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50029755, 28.82656097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49838257, 28.82710075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46446228, 28.88529015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.44800568, 28.90530396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4493103, 28.90725136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.36804962, 28.95843315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39356232, 29.0177269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13384247, 29.00926018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13471222, 29.00912476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12099457, 29.02832985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12242889, 29.02869606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1245575, 29.07672501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3666153, 28.95822334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4593811, 28.94699287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.34747314, 28.93598938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.34508514, 28.93629646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19207001, 29.02164459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41665649, 28.98963547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.45620728, 29.01568031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.45411682, 28.99608231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.44830322, 29.00905991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.45088959, 28.98558998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65292358, 28.80600166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77894592, 28.53294754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80012512, 28.52605629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8584671, 28.49928093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89065552, 28.48749542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91619873, 28.46512222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95995331, 28.43085861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98771667, 28.40460968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03130341, 28.37561989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0378418, 28.36435127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.07659912, 28.34562111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09758759, 28.33783722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13545227, 28.23361588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17962646, 28.21912193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.18887329, 28.31061554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13640594, 28.31469154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12045288, 28.33290672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0923233, 28.40507317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94245148, 28.46597672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92392731, 28.30904007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94043732, 28.28218651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95259857, 28.25692177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98114014, 28.23652077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09593964, 28.33315659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.11320496, 28.35995483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12507629, 28.38041687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15648651, 28.40159607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98446655, 28.28058052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88697815, 28.3746891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95220947, 28.4211998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98018646, 28.42795181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05654144, 28.399786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05274963, 28.31498146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77378082, 28.72364616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7470932, 28.73906708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.72341919, 28.74272346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67595673, 28.79254341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66326904, 28.8126545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.501297, 28.78482056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75950623, 28.72818184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7897644, 28.70665169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.99224091, 28.53658676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00374603, 28.50287056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04179382, 28.42782211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08379364, 28.40093231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12571716, 28.46881485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.51475525, 28.35535431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.40273285, 28.3491745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09408569, 28.32893181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91590118, 28.35412216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92787933, 28.32582283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93198395, 28.32350159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93921661, 28.32889748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96430969, 28.3068924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9662323, 28.30460167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98845673, 28.30264282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.99054718, 28.30318642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.01133728, 28.32356262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0155, 28.3258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0234375, 28.34773827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03321838, 28.34451485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03354645, 28.34565926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05586243, 28.354002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05712128, 28.35372543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.07192993, 28.37606621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0730896, 28.37602234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1094, 28.3743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.11093903, 28.37267685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12479401, 28.35217285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1256485, 28.35035706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12090302, 28.33333015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12349701, 28.30680275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12502289, 28.30658531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10674286, 28.29141808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10388947, 28.29456329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09741974, 28.30611801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09526825, 28.30755043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09308624, 28.30902863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08248901, 28.31363869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08226776, 28.31555748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08518982, 28.31834793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08290863, 28.3169632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08616638, 28.31139565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08577728, 28.3120327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15943909, 28.29383659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15906525, 28.29471207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17829895, 28.26397705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17771912, 28.26080513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.20543671, 28.23089981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.20517731, 28.22808838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22525787, 28.19200325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22493744, 28.18908119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.19634247, 28.1856041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.19454193, 28.18412971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.14759064, 28.17388153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.14701843, 28.17032242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10070038, 28.15765572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0995636, 28.15600777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06478882, 28.13809586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0640564, 28.13638878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04289246, 28.15638351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0419, 28.1554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00948334, 28.14510727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0087738, 28.1458168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00326538, 28.12612152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00593567, 28.12171936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98956299, 28.11992836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98948669, 28.12107468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9701004, 28.14849091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9689, 28.1494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96829987, 28.15675354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96994781, 28.15802956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.969841, 28.15917969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96897125, 28.16343307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96821594, 28.16440773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96989441, 28.16741371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96959686, 28.16910553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96660614, 28.1775856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96823883, 28.18072891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9679, 28.1817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96915436, 28.24050331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9642868, 28.24747086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95722961, 28.26798058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95542145, 28.27046585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94974518, 28.2783432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94599152, 28.27978134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9475, 28.3107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94593048, 28.31114388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93018341, 28.33946419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92803192, 28.33954048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91340637, 28.36765289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91079712, 28.36638641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9114151, 28.39361382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91046906, 28.39429474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88528442, 28.4153595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88404846, 28.41338539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8439, 28.4103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8428, 28.4102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84087372, 28.40917015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84342957, 28.43856812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84409332, 28.4361496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84600067, 28.43628502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84844971, 28.44577026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84907532, 28.45377541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84880066, 28.45455933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8298111, 28.49081993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82965088, 28.49153519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8084, 28.5202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80809021, 28.52053833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79207611, 28.54986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79162598, 28.55052948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76924896, 28.57546425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76887512, 28.57599258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75353241, 28.59858894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7534, 28.5992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7331543, 28.62906837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73309326, 28.63031197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.71343994, 28.66146278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.71274567, 28.6623764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69655609, 28.69155121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69543457, 28.69281769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6754, 28.7094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67267609, 28.70321465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6734, 28.7092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67355347, 28.70890999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67743683, 28.70762062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6771, 28.7107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66950989, 28.72759438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66640472, 28.73050308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.63076019, 28.7329216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.58866882, 28.74914932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55014038, 28.76908684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54843903, 28.77107239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51049042, 28.78019333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50883484, 28.78126144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47224426, 28.77897644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47026825, 28.77787399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46482849, 28.75171852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46414948, 28.75140572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47364807, 28.73366737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47463226, 28.73251915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50823212, 28.70665359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50923157, 28.70629501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54225922, 28.68398857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5435791, 28.68289375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5357666, 28.70067215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5367, 28.7001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52269745, 28.713974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52466583, 28.71996689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52570343, 28.71901703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52648926, 28.72033119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53117371, 28.72281456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5331, 28.7245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53955841, 28.72851372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54626465, 28.75829506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54651642, 28.75975418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53960419, 28.79304123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53921509, 28.79524422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51290131, 28.81862259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51106262, 28.82069016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46781921, 28.82472801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46485138, 28.8256073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.432, 28.8056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4315, 28.8064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42848969, 28.80704498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38991547, 28.83728027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38916779, 28.83978081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33166504, 28.83181572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29410553, 28.8136425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29209137, 28.81295586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27734375, 28.78075981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27613068, 28.78064156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24417114, 28.77266121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24416351, 28.7736454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28125763, 28.80597115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2823, 28.8072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.31919098, 28.81755066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3191452, 28.81917572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.356987, 28.81394958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.35993958, 28.8143177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39614868, 28.80062675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39656067, 28.79955864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42656708, 28.78236008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.429, 28.7823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46833038, 28.80115509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4702301, 28.80171013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4845, 28.8064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4860611, 28.80546188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49481964, 28.80299377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49641418, 28.8020668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52244568, 28.7922039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54940796, 28.77871513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57521057, 28.7636795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59252167, 28.75096512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59501648, 28.75218964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6281662, 28.73635864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.63082123, 28.73671722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64360809, 28.71065903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6453476, 28.71059036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67160797, 28.697752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67293549, 28.69765282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6736145, 28.69844627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67605591, 28.69902229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69205475, 28.6994915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7164917, 28.69746017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75562286, 28.68728065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7607193, 28.67820549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76750946, 28.67034912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7726593, 28.66445923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79103851, 28.63901329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79255676, 28.63804626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80123138, 28.61514854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80342102, 28.6144352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81165314, 28.58550835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81219482, 28.58429527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.83410645, 28.55561066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.83657074, 28.55455589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.85552216, 28.53450584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88459778, 28.5184021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88578796, 28.51785088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88577271, 28.54508018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88681793, 28.54613304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89488983, 28.56845856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89605713, 28.57000351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91325378, 28.59139824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91449738, 28.59309959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92754364, 28.61769867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93044281, 28.61737442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92930603, 28.61207008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92684174, 28.61216545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92403412, 28.61394691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91825104, 28.6161232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91589355, 28.6178093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9167099, 28.61761475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91388702, 28.62059975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91503143, 28.62101936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91508484, 28.62390137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88064575, 28.66707802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88141632, 28.66874504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87032318, 28.68126869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87064362, 28.68445969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84297943, 28.69941711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84251404, 28.70111656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8168335, 28.69607353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81565094, 28.69608879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80103302, 28.67024803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79694366, 28.67347145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77940369, 28.6431179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78069305, 28.64314461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76074219, 28.60284042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75940704, 28.60216713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7335968, 28.58569145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73778534, 28.54631233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74996948, 28.51263428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73538971, 28.51331902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73616028, 28.48113823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73213196, 28.48308754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73902893, 28.45768166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74485779, 28.45510674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78974152, 28.42573547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7919693, 28.42752266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80263519, 28.39915657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79351807, 28.40193367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78518677, 28.40350533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78668976, 28.40249252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78210449, 28.39338112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78089905, 28.39016533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79158783, 28.38403702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79669952, 28.38419342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80076599, 28.38386536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80467987, 28.38383484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80867767, 28.38491821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81361389, 28.38689041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81598663, 28.38784981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82197571, 28.3846283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82666016, 28.38437653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.85799408, 28.37153244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86064911, 28.37064171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88021088, 28.34427071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88513947, 28.34282684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9177475, 28.32364082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92040253, 28.32318878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91825104, 28.31268501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92123413, 28.30499649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95537567, 28.27871513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95775604, 28.27690315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98417664, 28.24669266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9861908, 28.24513245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0014801, 28.22788811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00930786, 28.22074509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.01882172, 28.21247864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.02119446, 28.21133995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04306793, 28.17670059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06253815, 28.14299202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0654, 28.1406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08501434, 28.10046387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0872345, 28.099823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1269989, 28.07855797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12970734, 28.07821083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.11037445, 28.08657074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.11026001, 28.08868408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10370636, 28.11179161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10579681, 28.11348915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1133, 28.1163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13408661, 28.1519146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13568115, 28.15420151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15553284, 28.17598343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15665436, 28.17721558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15949249, 28.18358803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.16355133, 28.19414139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17954254, 28.22712135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.18004608, 28.22807884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.18060303, 28.25537109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.18279266, 28.2598629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1851, 28.2629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.19129181, 28.26601219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.19739532, 28.27188301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.20372772, 28.27681732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.23266602, 28.30702972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.26920319, 28.31651497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3006, 28.3187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.30321503, 28.318367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.34203339, 28.31326485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.37086487, 28.29379654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41015625, 28.3004837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41098022, 28.29881859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.43226624, 28.31634903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.43504333, 28.31727791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46531677, 28.33552742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46823883, 28.33655739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.45783997, 28.33846474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4601059, 28.33852005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46211243, 28.33845329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47058868, 28.30454826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47186279, 28.30347061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49516296, 28.27328873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49617767, 28.2723999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50508118, 28.23877716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5056839, 28.23757362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50614929, 28.19933128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50548553, 28.20067024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50954437, 28.16383362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50940704, 28.16229248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50678253, 28.12129211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50777435, 28.1197567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.53723145, 28.10069084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.53952026, 28.10133743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5473175, 28.10458565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55526733, 28.10040283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.57657623, 28.0800457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.57875061, 28.07981491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.59164429, 28.07367325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.58552551, 28.0780201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.58114624, 28.07961655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.57847595, 28.08169174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.54354095, 28.1024971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.54311371, 28.1037178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.52283478, 28.13319778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.52490234, 28.13392258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50914001, 28.16145897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4984, 28.1909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49898529, 28.1918602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.48654175, 28.22080803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.48706055, 28.22279739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47774506, 28.24984169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47984314, 28.25179672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46846008, 28.26850128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47058868, 28.26920319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47129822, 28.2809639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47259521, 28.28230858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.453, 28.3145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.45331573, 28.31565475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.42014313, 28.32613945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4201355, 28.32705498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4003, 28.3316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.40123749, 28.33672523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.40569305, 28.3203392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41007233, 28.31897736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.44252014, 28.30034256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.44562531, 28.29807281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46617889, 28.26454163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46722412, 28.26296997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47653198, 28.2515831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47566223, 28.25263214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.44146729, 28.26743507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.44039917, 28.26871109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41172028, 28.25034142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.40986633, 28.25035667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3735199, 28.25346184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.37422943, 28.25234222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.33463287, 28.24284744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.33280182, 28.2417717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3006897, 28.23291588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.29897308, 28.23190689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.28222656, 28.22138977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.28125763, 28.21969795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.26992035, 28.2140522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.26882172, 28.21270943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25736237, 28.20856476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25674438, 28.20829391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.24625397, 28.20268059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22642517, 28.20550728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.19921112, 28.19699287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.19786072, 28.19626999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.16619873, 28.19141006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13328552, 28.19166756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13256836, 28.19208336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1046524, 28.18639565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10368347, 28.18691254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06906128, 28.18968582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06800842, 28.1914196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03082275, 28.20506859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.02955627, 28.20679665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00360107, 28.22725868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00371552, 28.22941399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00684357, 28.2388382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9973526, 28.24900055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9949646, 28.25295448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9895, 28.2605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98473358, 28.27231026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98587036, 28.28188896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98571777, 28.28746796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98548126, 28.29558563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.97927856, 28.32723999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.97768402, 28.32927704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95986176, 28.36391258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95806885, 28.36354446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95249176, 28.39268684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95085907, 28.39463997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93697357, 28.43065071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9347229, 28.43263626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92138672, 28.46408844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92036438, 28.46599579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91634369, 28.49526405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91500854, 28.4980011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.90744019, 28.52933693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9058075, 28.53106308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89694977, 28.55993271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89561462, 28.5614109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9022522, 28.58831787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8946991, 28.59296989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88968658, 28.623106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88918304, 28.62479973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87695313, 28.64940071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87458801, 28.64984894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88200378, 28.65583611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87934875, 28.65772247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87362671, 28.6649971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87324524, 28.66514587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8717, 28.6732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86974335, 28.67343712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86380005, 28.67931747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86238098, 28.6801796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.85570526, 28.68307686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.85438538, 28.68407631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84358215, 28.68516922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8345108, 28.68647194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79128265, 28.6882534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79036713, 28.68852425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75011444, 28.69971848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74915314, 28.70056534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70768738, 28.70293617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6762, 28.6826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67623901, 28.68297958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66455078, 28.66445732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66460419, 28.66402054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65490723, 28.63067055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65351105, 28.63213921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64239502, 28.63138199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64179993, 28.63290405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61534882, 28.65876007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61414337, 28.66107368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59282684, 28.66897011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59247589, 28.67248726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59305573, 28.66725731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59346008, 28.66949272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.63561249, 28.66281319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.63650513, 28.66418839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66934967, 28.68383789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66853333, 28.68616295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.63079071, 28.69095612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62850952, 28.69296837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64016724, 28.67284966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64020538, 28.67154121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61595917, 28.6709671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61407471, 28.67215919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6063385, 28.65343666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6062851, 28.65284538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.60694122, 28.64988899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61009216, 28.6489315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6138916, 28.64574814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61147308, 28.64486885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61447144, 28.63921738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61553192, 28.63760376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61497498, 28.63630867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61821747, 28.6373539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61806488, 28.63422775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61886597, 28.63375854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62077332, 28.63246727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62203217, 28.63545609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62350464, 28.63616753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62761688, 28.64919662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62837982, 28.65091133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59792328, 28.69776154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59864807, 28.69873619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5668335, 28.71699524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56803131, 28.71884537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53355408, 28.74251556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5331, 28.7445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50896454, 28.77375221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5013, 28.7817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48016357, 28.80304527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.44177246, 28.83403206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43425751, 28.84133911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.40091705, 28.83582687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39520264, 28.84514046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3585, 28.8383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.35585022, 28.83958054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.31174469, 28.86061668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.30887604, 28.86221504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26578522, 28.86730957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26220703, 28.86899948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21801758, 28.87758255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21466827, 28.87829781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17432404, 28.88561821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17102051, 28.88562393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1308, 28.8821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12745667, 28.88237762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10116577, 28.8793335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09927368, 28.88055229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09186554, 28.87500763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.08219147, 28.87050438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.08100128, 28.87012863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07579041, 28.86807251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0721283, 28.86528969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06985474, 28.8654213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06465149, 28.86740494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0634, 28.8681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05722809, 28.87195396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05461121, 28.87221909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04768372, 28.87269211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04301453, 28.87909317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0371, 28.8848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03118134, 28.88991356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02545929, 28.89252281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02702332, 28.89848518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01541138, 28.91449738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00950623, 28.93514252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00813293, 28.93595505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98647308, 28.96720695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98504639, 28.96795654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.95265198, 28.98182487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.95120239, 28.98306084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.93530273, 29.01214981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.93475342, 29.01381111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.93395996, 29.05496597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.93462372, 29.05709267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.96122742, 29.06757927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.96183014, 29.0666256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98532104, 29.035429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00035095, 29.00081444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00045776, 29.00011444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02579498, 28.96689606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02560425, 28.96608162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04368591, 28.93066406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04360199, 28.9292469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0643158, 28.89887047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06363678, 28.89488029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09423065, 28.86619568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.09643555, 28.87028503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10771942, 28.86887169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12244415, 28.86978149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14165497, 28.87343025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14179993, 28.87308121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15516663, 28.87771034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15473938, 28.87802315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16896057, 28.88328934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16882324, 28.883564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20319366, 28.89917374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20431519, 28.89815331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23686218, 28.90314293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23763275, 28.90192032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28123474, 28.90191841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28222656, 28.90010071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32748413, 28.88909912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3282, 28.8874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3659668, 28.87075996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.36773682, 28.86916161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41466522, 28.87192726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41520691, 28.86964798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.45836639, 28.87244606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46069336, 28.87082672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49763489, 28.86804771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49897003, 28.86559486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53843689, 28.87210083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56747437, 28.86961555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56746674, 28.86731148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.60241699, 28.85565567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.642, 28.8512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64393616, 28.84769249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67662048, 28.84000397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67847443, 28.8378582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69091797, 28.82721138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69567108, 28.82262611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70237732, 28.81629372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70365143, 28.81460381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.71159363, 28.81105614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75776672, 28.73645592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75863647, 28.73443222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77362061, 28.69522285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77442932, 28.69290733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78620148, 28.66262627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78663635, 28.65641594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79663849, 28.61512375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79650116, 28.61354446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81034088, 28.58063507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.83480835, 28.54756546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84590149, 28.50621796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84632874, 28.50455856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86959839, 28.46785736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86956024, 28.46596909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.90441132, 28.44298553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9054718, 28.44077682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93238068, 28.40805626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93323517, 28.40593719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.97241211, 28.39205551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.97529602, 28.3922863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.97590637, 28.39160538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98672485, 28.38874054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.99004364, 28.38689232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06690216, 28.34997368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06826019, 28.34639359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09194946, 28.31624603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09727478, 28.32143784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.11251068, 28.29847717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1140976, 28.29698372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09753418, 28.2924881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0994873, 28.29072952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.07938385, 28.28768349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08267212, 28.28841019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08982849, 28.2867012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.11348724, 28.29115295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12319183, 28.293396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12445831, 28.29375458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1309967, 28.29697227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1364975, 28.30206108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.14043427, 28.30396271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1472702, 28.31139183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15787506, 28.30877113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.16556549, 28.30618858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.16796875, 28.3044014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17709351, 28.3026619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.18321991, 28.33440781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1811142, 28.33692551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15964508, 28.37707138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15696716, 28.37673378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13085175, 28.38811684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12535858, 28.38584328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10868835, 28.38757324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1018219, 28.38976097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05765533, 28.40017509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05568695, 28.39644432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.02587891, 28.41008949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0246048, 28.40737534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98857117, 28.42413712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94786835, 28.43427467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.947052, 28.43297195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91891479, 28.4612999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91698456, 28.45970154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89051056, 28.48605728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86203003, 28.5129776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86211395, 28.51439667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.85919189, 28.54551888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.85935974, 28.5471611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82987213, 28.5550251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82968903, 28.55666351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80890656, 28.58473396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80884552, 28.58725739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80168915, 28.62413979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77536774, 28.62221527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77400208, 28.62414932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75608063, 28.60013199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75409698, 28.60079384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.72234344, 28.59328079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.72012329, 28.59436417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69795227, 28.60250664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6741, 28.6386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67147827, 28.64072037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65746307, 28.67793274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6537, 28.6805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62651825, 28.68923759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62328339, 28.68975258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62057495, 28.66503525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61711884, 28.66460419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.58838654, 28.65817642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.58624268, 28.65859795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56570435, 28.68730927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56301117, 28.68751907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55760956, 28.71994019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55513763, 28.71955872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55937958, 28.72139359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55738068, 28.7214489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5561676, 28.72945404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55412292, 28.72995377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5473175, 28.739645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54594421, 28.73978424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54507446, 28.74578667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54278564, 28.74618721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54156494, 28.74637222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5348, 28.7548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53073883, 28.75507164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53307343, 28.75326157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53072357, 28.75531769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52996826, 28.75498772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52719116, 28.75464821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52333832, 28.75193405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52059174, 28.75065231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52035522, 28.75034904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51924896, 28.74959755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52011108, 28.74722099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51937103, 28.74705696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52098083, 28.74952698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5202713, 28.75136375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52191162, 28.75678825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52076721, 28.75966644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51773071, 28.77724266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51763916, 28.77767563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51493835, 28.80682373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51612854, 28.80979156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51164246, 28.83584404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5121994, 28.83891678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4934082, 28.8742981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47213745, 28.90214157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47070313, 28.90472221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43504333, 28.92075157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43287659, 28.92334557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39957428, 28.93439484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39670563, 28.93660164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.36696625, 28.96614647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33028412, 28.98327255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32292938, 28.9780426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28056335, 28.97776794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27311707, 28.98083687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23361206, 28.97280312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22767639, 28.97096252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19403839, 28.99074745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15764618, 28.979105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15343475, 28.97859383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10916138, 28.97125816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10463715, 28.96930504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0821991, 28.94163895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07991791, 28.93857193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05236053, 28.96735001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0495224, 28.96601677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.03157806, 28.99875641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02601624, 29.00306129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01173401, 29.02964401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0091095, 29.02929115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00859833, 29.06366348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00975037, 29.06565857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.008255, 29.07002258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01163483, 29.07404709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00863647, 29.07347679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99628448, 29.08285713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99121094, 29.08823204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99092865, 29.08885765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98764801, 29.09428215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98680115, 29.09579468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99168396, 29.11788177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99306488, 29.11708069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01609802, 29.09235573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04564667, 29.08551407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.08092499, 29.07403374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14830017, 29.06521988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14865875, 29.06518555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17894745, 29.0615139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19828033, 29.06628799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.328, 28.8173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3564, 28.7978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3588, 28.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3955, 28.7958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3982, 28.7972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4418, 28.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4437, 28.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4753, 28.8071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4853, 28.8065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5008, 28.7964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5052, 28.7955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.512, 28.794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5138, 28.7937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5189, 28.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5459, 28.7821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5477, 28.7816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5569, 28.7766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5845, 28.7724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5871, 28.7725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6135, 28.7682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6156, 28.7682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.637, 28.7485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6388, 28.7484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6594, 28.7314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.662, 28.7301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6852, 28.7155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6869, 28.7157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7139, 28.7148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7155, 28.7155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.741, 28.7018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7422, 28.7013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7703, 28.6811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7712, 28.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7906, 28.6647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7916, 28.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8149, 28.6476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8155, 28.6466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8278, 28.6151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8471, 28.5869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8477, 28.5855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8652, 28.5655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8665, 28.5641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8885, 28.5423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8891, 28.5411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9042, 28.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9032, 28.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9101, 28.5431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9111, 28.5441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9155, 28.5548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9158, 28.5557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.923, 28.5658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9235, 28.573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9236, 28.5741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9255, 28.5922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9264, 28.5934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9324, 28.6034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9333, 28.6045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9298, 28.6109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9298, 28.6103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9238, 28.6136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9188, 28.6168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.919, 28.6171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9152, 28.6171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9164, 28.6175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9142, 28.6227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9147, 28.6236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9148, 28.6302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.899, 28.6479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8978, 28.6476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8913, 28.6639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8917, 28.6672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8882, 28.6749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8706, 28.6856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8708, 28.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8552, 28.6978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8556, 28.6993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8369, 28.6946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8417, 28.7084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8192, 28.6745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.819, 28.6742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8013, 28.6497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8016, 28.6495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7946, 28.6214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.794, 28.6213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7849, 28.5984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7778, 28.5994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7544, 28.5787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7577, 28.5672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7589, 28.5561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7594, 28.556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7624, 28.5316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.764, 28.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7785, 28.5192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7777, 28.5165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7825, 28.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7856, 28.4832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8021, 28.4599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8036, 28.4581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8094, 28.4502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8143, 28.4449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8293, 28.4198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8304, 28.4186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8251, 28.3868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8234, 28.3923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8103, 28.3808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8039, 28.3832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7913, 28.3843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7934, 28.3848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7972, 28.3845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7987, 28.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8045, 28.3842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8051, 28.3846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.808, 28.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8096, 28.3852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.814, 28.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.815, 28.3853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8194, 28.3849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8206, 28.3845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84, 28.3718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8425, 28.3715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8696, 28.3532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8726, 28.3522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9061, 28.3391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9086, 28.3391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9398, 28.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9424, 28.3208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9605, 28.2968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9616, 28.2947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9723, 28.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9752, 28.2665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9914, 28.2358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9944, 28.2358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0335, 28.2275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0262, 28.2208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0561, 28.1917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0587, 28.1921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0751, 28.1661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0771, 28.1653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0973, 28.1346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0998, 28.1339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1405, 28.1222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1433, 28.1238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1738, 28.1143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1736, 28.1129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1747, 28.1266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1753, 28.1279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1526, 28.1449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1527, 28.1463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1532, 28.1745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1536, 28.1729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1586, 28.1972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1579, 28.1976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1686, 28.2225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1701, 28.2239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1748, 28.2313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1779, 28.2382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.18, 28.2456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1816, 28.2558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1824, 28.2597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1855, 28.2614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1914, 28.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1988, 28.2731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2033, 28.2767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.205, 28.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2275, 28.3021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2303, 28.3023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2662, 28.3103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2679, 28.3099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3007, 28.3187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3023, 28.3165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3327, 28.3084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3353, 28.3086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3639, 28.2946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3668, 28.2949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3999, 28.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4, 28.2995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4204, 28.3136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4231, 28.3145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4469, 28.3329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4478, 28.3335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4421, 28.3444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4438, 28.3438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4502, 28.3421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4513, 28.342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4594, 28.3393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4812, 28.3126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4824, 28.3116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4915, 28.2866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4927, 28.2857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.496, 28.2563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4967, 28.2549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4997, 28.2494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4919, 28.2202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4906, 28.2196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4847, 28.1857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4852, 28.1843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4943, 28.1534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4954, 28.1515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5243, 28.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5316, 28.1133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5429, 28.1069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5466, 28.1046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5518, 28.1018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5538, 28.1002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5669, 28.0848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5689, 28.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5762, 28.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5777, 28.0799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5833, 28.0792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5848, 28.0795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.586, 28.0778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.581, 28.0791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5806, 28.0795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5787, 28.0816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5796, 28.0818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5838, 28.0805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5581, 28.0914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5574, 28.0917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.548, 28.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5345, 28.1114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5345, 28.1128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5181, 28.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.518, 28.1443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5054, 28.1681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5061, 28.1696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4997, 28.1972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5003, 28.1988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4912, 28.2271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4916, 28.2294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4767, 28.2575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4744, 28.2623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4725, 28.2686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4714, 28.2734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.469, 28.2798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4694, 28.2809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4714, 28.2813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4722, 28.2822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4735, 28.2945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.468, 28.2939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.447, 28.3198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4477, 28.3205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4272, 28.3356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4259, 28.3363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4129, 28.3455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4239, 28.3268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4257, 28.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4601, 28.3079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4618, 28.3066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4815, 28.2807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4825, 28.2789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4847, 28.2725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4878, 28.2639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4846, 28.2571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4756, 28.2626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4739, 28.2633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4588, 28.2703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4469, 28.2727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4381, 28.2729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4264, 28.2646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4248, 28.2646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4169, 28.2588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4118, 28.2544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.411, 28.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4077, 28.2514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.392, 28.2473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3825, 28.2488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3686, 28.2525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3671, 28.2524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3531, 28.2481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3249, 28.2417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3238, 28.2404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2944, 28.2257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2883, 28.2257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2824, 28.2234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2815, 28.2218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2771, 28.2183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2693, 28.2136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2687, 28.2122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2585, 28.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2575, 28.2087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2469, 28.2049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2229, 28.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.221, 28.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1907, 28.1944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1903, 28.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1556, 28.1908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1552, 28.1904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1224, 28.2043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1151, 28.1874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0874, 28.2054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0864, 28.2053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0569, 28.2192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.056, 28.2204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0239, 28.2361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0228, 28.2369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9962, 28.2483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9948, 28.2498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9838, 28.2667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9862, 28.2809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9854, 28.2943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9822, 28.3087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.981, 28.3103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9768, 28.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9757, 28.3197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9652, 28.3492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9649, 28.3513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9691, 28.3781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9677, 28.3805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9643, 28.3883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9634, 28.3912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9514, 28.4253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9503, 28.4276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9468, 28.4323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95, 28.4599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9489, 28.4617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9387, 28.4929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9371, 28.4958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9338, 28.5235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.932, 28.5247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.915, 28.5517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9128, 28.5528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9098, 28.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9109, 28.5854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9095, 28.5872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9049, 28.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9034, 28.6239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8842, 28.6528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8829, 28.6538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8808, 28.6567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8743, 28.6648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8729, 28.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8751, 28.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8718, 28.6733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8704, 28.6736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8637, 28.6792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8629, 28.6798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.856, 28.6831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8539, 28.6836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8444, 28.6854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8426, 28.6855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8381, 28.6869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8359, 28.6867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8065, 28.6937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8054, 28.6938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7683, 28.6951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7671, 28.6964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7334, 28.7029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7319, 28.7024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6989, 28.7067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6984, 28.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6729, 28.6899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.673, 28.6893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.685, 28.6636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6858, 28.6629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.68, 28.6286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6792, 28.6284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6554, 28.6201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.654, 28.6227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6466, 28.6325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6376, 28.6434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6292, 28.6503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6141, 28.6584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6119, 28.6602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.586, 28.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.614, 28.6669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6144, 28.6683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6491, 28.6777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6503, 28.6801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6571, 28.6879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.658, 28.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.655, 28.6936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.653, 28.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6495, 28.6971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6468, 28.6979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6452, 28.6997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6428, 28.6991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6401, 28.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6401, 28.7007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6394, 28.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6445, 28.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6426, 28.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6251, 28.6672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6241, 28.6654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6191, 28.6425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6145, 28.6417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6147, 28.6388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6156, 28.6369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6159, 28.6365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6182, 28.6337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.619, 28.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6219, 28.6353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6225, 28.6358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6228, 28.6438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6244, 28.6422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6182, 28.6757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6189, 28.6776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5973, 28.7027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5976, 28.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5629, 28.7208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5624, 28.7219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5315, 28.7446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5277, 28.7495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5227, 28.7577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5178, 28.7649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5081, 28.7743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5077, 28.7749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5004, 28.7831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4961, 28.7883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4695, 28.8192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4668, 28.8211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4236, 28.8448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.421, 28.8463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3808, 28.8533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3783, 28.8551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3342, 28.8703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3306, 28.8715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2902, 28.8766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2874, 28.8775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2472, 28.8831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2432, 28.8831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2, 28.8993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1964, 28.8991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1571, 28.8945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1551, 28.8942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1179, 28.8829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1131, 28.8824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1027, 28.8805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1042, 28.8783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0907, 28.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0883, 28.8749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0809, 28.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0775, 28.8678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0728, 28.8655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0643, 28.8674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0629, 28.8679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0571, 28.8719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0557, 28.8726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0535, 28.8709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0508, 28.8717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0495, 28.8711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0419, 28.8799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0407, 28.8801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0369, 28.8845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0343, 28.8864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0252, 28.8941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.027, 28.8979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0268, 28.8984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0236, 28.9048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0228, 28.9056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0207, 28.9106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0087, 28.9351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0081, 28.9368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9991, 28.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9979, 28.9669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9758, 28.9985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9743, 28.9998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9636, 29.0317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.962, 29.0341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9567, 29.0627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9562, 29.0641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.973, 29.0633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.974, 29.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0013, 29.0439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.002, 29.0431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0318, 29.0154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0481, 28.9768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0486, 28.9753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0728, 28.9405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0718, 28.9399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0806, 28.9031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0811, 28.9017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0952, 28.8817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1004, 28.8758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1079, 28.8693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1078, 28.8685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1228, 28.8703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1229, 28.8699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1417, 28.8734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1412, 28.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.155, 28.8776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1549, 28.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1686, 28.8834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1675, 28.8761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2021, 28.8929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2027, 28.8922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2396, 28.8982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2403, 28.8969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2471, 28.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2878, 28.8969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2889, 28.8955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2983, 28.8929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3421, 28.8857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3438, 28.8842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3853, 28.8764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4215, 28.8738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4249, 28.8733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4635, 28.8747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4651, 28.8722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5022, 28.8677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5051, 28.8653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5382, 28.8724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5391, 28.8712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5696, 28.8664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5706, 28.8649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.603, 28.8559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6055, 28.8533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6414, 28.8519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6428, 28.8491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6763, 28.8406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6774, 28.8386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.706, 28.8226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.707, 28.8208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7138, 28.8138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7393, 28.7879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7417, 28.7847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7668, 28.7499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.781, 28.7117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7894, 28.7041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79, 28.7015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7964, 28.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7976, 28.6648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.806, 28.6542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8074, 28.6526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8164, 28.6242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8182, 28.6205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8312, 28.5907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.834, 28.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8584, 28.5598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8587, 28.5571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8619, 28.5233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8617, 28.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8771, 28.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8771, 28.4846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8982, 28.4596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8992, 28.4569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9327, 28.4357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9337, 28.4331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9592, 28.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9627, 28.4082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9944, 28.3943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9935, 28.3929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0263, 28.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0282, 28.3811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0679, 28.3736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.07, 28.3717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1043, 28.3557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1069, 28.3533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1379, 28.33 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1386, 28.3279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1277, 28.3089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1272, 28.3078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1115, 28.2988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1118, 28.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1096, 28.2945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1096, 28.2939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1095, 28.2927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1107, 28.2924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1145, 28.2955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1119, 28.2929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1212, 28.2927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1222, 28.2924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1281, 28.2959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1284, 28.2962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1351, 28.3015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1357, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1386, 28.3029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.139, 28.3048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1417, 28.3097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1464, 28.3123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1473, 28.3117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1482, 28.3127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1603, 28.3142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1602, 28.3137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1748, 28.3304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1744, 28.3309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1647, 28.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1624, 28.3589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1492, 28.3872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1456, 28.3861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1104, 28.3979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1068, 28.3934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0695, 28.4054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.067, 28.4029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0376, 28.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0361, 28.4108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0131, 28.4249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0123, 28.4236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9807, 28.4326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9798, 28.4317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9452, 28.4467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9443, 28.4466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9195, 28.4738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9192, 28.4742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8969, 28.4986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8969, 28.4992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8954, 28.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8943, 28.5224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8798, 28.5476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8782, 28.5494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86, 28.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8594, 28.5714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8453, 28.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8451, 28.5896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.838, 28.6137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8376, 28.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8171, 28.6367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8149, 28.6379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8116, 28.6408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7898, 28.6262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7891, 28.6255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7878, 28.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7769, 28.6202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7676, 28.6173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7603, 28.6178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.752, 28.6188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.748, 28.6197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7222, 28.6189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6884, 28.6294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6843, 28.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6814, 28.6424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6748, 28.6741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6721, 28.6768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6514, 28.7012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.639, 28.6792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6367, 28.6772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6461, 28.6593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6408, 28.6582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6131, 28.6773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6018, 28.6811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5772, 28.7105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5728, 28.7109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5531, 28.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5499, 28.7334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5471, 28.7398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5457, 28.7404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5325, 28.7542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5325, 28.754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5309, 28.7528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5291, 28.7563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5276, 28.7504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5267, 28.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5251, 28.7485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5244, 28.7479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5229, 28.7493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5219, 28.7492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.522, 28.7494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5221, 28.7487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.518, 28.7771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5174, 28.7778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5163, 28.8071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5182, 28.8091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5182, 28.8423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5162, 28.8471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4871, 28.8741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.486, 28.8764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4746, 28.8937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.472, 28.8966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4372, 28.9145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4335, 28.9177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4074, 28.9289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4054, 28.9317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3854, 28.9517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3815, 28.9534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3479, 28.9656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3433, 28.9689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3342, 28.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3087, 28.9735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3037, 28.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2575, 28.9842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2535, 28.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2147, 28.9965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21, 28.9936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1766, 28.9968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1733, 28.9968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1447, 28.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.142, 28.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1162, 28.9796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1109, 28.9779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0939, 28.9641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0908, 28.9615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0754, 28.9696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.073, 28.9684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0663, 28.9694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.056, 28.9741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0505, 28.9739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0383, 29.0045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0363, 29.0045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0225, 29.0333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0218, 29.0337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0168, 29.0626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0152, 29.0632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0112, 29.0687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0107, 29.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0093, 29.0712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0086, 29.0738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0075, 29.0752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0029, 29.0786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9959, 29.0827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9956, 29.0833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9914, 29.0883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9911, 29.0889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9875, 29.0948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9867, 29.0958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9922, 29.1159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9933, 29.1164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0149, 29.0999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0163, 29.1003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0445, 29.0634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0429, 29.0851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0675, 29.0756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.094, 29.0757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0951, 29.0762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1237, 29.0714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1249, 29.0723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1531, 29.0677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1536, 29.0687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1748, 29.0543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1748, 29.0563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1913, 29.0578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1894, 29.0573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1932, 29.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2004, 29.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2093, 28.9703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2299, 28.9753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2286, 28.9677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2531, 28.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.254, 28.9485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2753, 28.9359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2753, 28.9336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3049, 28.9324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3052, 28.9299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3345, 28.9244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3351, 28.9219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.362, 28.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.366, 28.8989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3894, 28.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3889, 28.8964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3972, 28.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4172, 28.8756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4112, 28.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4152, 28.8622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.428, 28.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4318, 28.8584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4305, 28.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4303, 28.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4418, 28.8644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.442, 28.8663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4393, 28.8623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4453, 28.8619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4432, 28.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4406, 28.8475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4378, 28.8475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4522, 28.8444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4593, 28.8289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4951, 28.8196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4983, 28.8183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5176, 28.8149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.549, 28.7974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5504, 28.7961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5806, 28.7791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5828, 28.7778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6074, 28.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6087, 28.7599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6233, 28.7367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6245, 28.7364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.636, 28.7143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6365, 28.7137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6622, 28.6937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6811, 28.6712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7111, 28.6597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7124, 28.6591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7446, 28.6442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7724, 28.6272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7725, 28.6267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8007, 28.6049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.801, 28.6032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8235, 28.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8241, 28.5814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8487, 28.5657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8476, 28.5636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8641, 28.5387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8659, 28.5387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8785, 28.5126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8793, 28.5101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8915, 28.4914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8923, 28.4898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8955, 28.4667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8961, 28.4645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9009, 28.4587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9169, 28.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9187, 28.4427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9254, 28.4385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9271, 28.4373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9359, 28.4282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9367, 28.4264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9444, 28.4284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9464, 28.4268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9515, 28.4307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9549, 28.4285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9604, 28.4272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9642, 28.4266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.967, 28.4297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9833, 28.4462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9845, 28.4482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.976, 28.4728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9752, 28.4751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.957, 28.4938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9556, 28.4961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9328, 28.5186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9329, 28.5216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8933, 28.5478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91, 28.5452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8861, 28.5621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9064, 28.5511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8685, 28.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8666, 28.5884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8521, 28.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8484, 28.6063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.845, 28.6112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8463, 28.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8262, 28.6715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.824, 28.6764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8199, 28.7087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8165, 28.7107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7878, 28.7276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7852, 28.7292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7663, 28.7556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.763, 28.7586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7307, 28.7661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7266, 28.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.701, 28.7867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6979, 28.7869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6695, 28.7984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6661, 28.7982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6345, 28.8062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6316, 28.8043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6088, 28.7895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6076, 28.7872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6035, 28.7701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6039, 28.7669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6026, 28.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6021, 28.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5886, 28.7185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5879, 28.7159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5717, 28.6908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5714, 28.6907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5599, 28.6761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5595, 28.6746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5644, 28.6696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5681, 28.6722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5695, 28.6738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5726, 28.6761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5759, 28.6768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5761, 28.6768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5851, 28.6874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5939, 28.6983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5959, 28.7011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6227, 28.7095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6248, 28.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6469, 28.7262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6488, 28.7267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6787, 28.7123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6724, 28.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6892, 28.7509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6905, 28.7543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6909, 28.7556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6982, 28.7805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6993, 28.7886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.698, 28.7924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7005, 28.7961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7227, 28.7895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7225, 28.7897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7493, 28.7851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7494, 28.7843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7774, 28.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7776, 28.7679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7964, 28.7466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7964, 28.7448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8196, 28.7267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8197, 28.7206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8324, 28.6952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8318, 28.6933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8578, 28.6739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8574, 28.6717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8766, 28.6544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8766, 28.6515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8792, 28.6162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8786, 28.6135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8809, 28.6043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.879, 28.6017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8854, 28.5733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.885, 28.5706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.884, 28.5659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8821, 28.5381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8819, 28.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8767, 28.5071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.876, 28.5056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.862, 28.4955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8609, 28.4932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8487, 28.4763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.849, 28.4751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8374, 28.4561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8375, 28.4546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8331, 28.4395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8329, 28.4371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.836, 28.4113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8371, 28.4157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8371, 28.3981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8372, 28.3997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8428, 28.4026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8439, 28.4053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8433, 28.4116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8427, 28.4174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8469, 28.4214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8458, 28.4232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8485, 28.4382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8461, 28.4591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8477, 28.4709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.836, 28.5025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8359, 28.5048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8223, 28.5362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8206, 28.5382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.797, 28.5602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7939, 28.5613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7762, 28.5842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7761, 28.5864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7606, 28.6102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7558, 28.6097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7356, 28.6069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7317, 28.6084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7313, 28.6328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7288, 28.6336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7253, 28.6582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7208, 28.6569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7173, 28.6783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7106, 28.6805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7132, 28.7009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7135, 28.7009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7125, 28.7112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7112, 28.7098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7017, 28.7241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.701, 28.7233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6826, 28.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6839, 28.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6849, 28.7097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6827, 28.7218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.682, 28.7222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6899, 28.7223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69, 28.7245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7041, 28.7336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7054, 28.7344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7129, 28.7393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7146, 28.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7215, 28.7555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7221, 28.7588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7299, 28.779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7301, 28.7812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7355, 28.7695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7365, 28.7696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7434, 28.7513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7436, 28.7512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7521, 28.7254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7551, 28.7259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7715, 28.7038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7722, 28.7037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.793, 28.6781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8109, 28.6472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8207, 28.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8208, 28.6126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8315, 28.5837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8313, 28.5822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.841, 28.5523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8404, 28.5515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.951, 28.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8493, 28.5244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8587, 28.4995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.858, 28.4984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8547, 28.4749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8521, 28.4747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8649, 28.4581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8659, 28.4563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8846, 28.4386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8823, 28.4359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8851, 28.4106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8853, 28.4086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9068, 28.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9094, 28.3894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9289, 28.3727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9304, 28.3716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9503, 28.3699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9509, 28.3719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9594, 28.3836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9659, 28.3815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9693, 28.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9911, 28.3965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9924, 28.3975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0064, 28.4121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0086, 28.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0414, 28.4136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0435, 28.4148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0281, 28.4203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0293, 28.4189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0239, 28.3941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0246, 28.3948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0236, 28.3709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0233, 28.3706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0317, 28.3427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0321, 28.3432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0345, 28.3169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0356, 28.3178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.035, 28.2916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0345, 28.2915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0461, 28.2676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0467, 28.2679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0651, 28.2499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0672, 28.2491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.087, 28.2238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0876, 28.2235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1106, 28.2053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1109, 28.1973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1318, 28.1918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1327, 28.1914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1693, 28.1799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1641, 28.1761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1881, 28.1615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1908, 28.1623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2052, 28.1404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2068, 28.1396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2329, 28.122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2345, 28.1204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2606, 28.1114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.262, 28.1118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.282, 28.1061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2808, 28.1062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2757, 28.1071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.27, 28.1045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2704, 28.1027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2712, 28.1005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2725, 28.0988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2727, 28.0974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2745, 28.0914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2796, 28.0858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2807, 28.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2809, 28.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.282, 28.0837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2835, 28.0835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2848, 28.0819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.286, 28.0834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2872, 28.0853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3067, 28.1022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.308, 28.1027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3429, 28.1083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3448, 28.1104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3708, 28.1249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3726, 28.1263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3977, 28.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4237, 28.1565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4251, 28.1595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4142, 28.1833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4192, 28.1842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3951, 28.1966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3916, 28.1977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3716, 28.2021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3687, 28.2058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3651, 28.2049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3643, 28.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3589, 28.2111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.355, 28.2168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3542, 28.2175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3403, 28.2304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3082, 28.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3053, 28.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.281, 28.2514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2775, 28.2522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2437, 28.2662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2407, 28.2671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2113, 28.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2083, 28.2836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1916, 28.2945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1883, 28.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1631, 28.3131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1614, 28.3136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1342, 28.3286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1169, 28.3479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1161, 28.3489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1023, 28.3658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1009, 28.3676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0882, 28.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0865, 28.3909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0803, 28.4131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0806, 28.4142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0858, 28.4242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0821, 28.4347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08, 28.4336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0667, 28.4494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0633, 28.4519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0334, 28.4782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0181, 28.4994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0003, 28.5153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9993, 28.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.988, 28.5368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9869, 28.5384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9589, 28.5497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9571, 28.5515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9298, 28.5517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9287, 28.5511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.902, 28.5515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.899, 28.5507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8688, 28.5273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.868, 28.5266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8453, 28.5149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8454, 28.5134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8386, 28.4886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8369, 28.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.813, 28.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8114, 28.4738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7963, 28.4882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7951, 28.4913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7986, 28.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7997, 28.5168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8082, 28.5453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8083, 28.5477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8261, 28.5709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.828, 28.5727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8591, 28.5802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8621, 28.5786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8781, 28.5883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8791, 28.5888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9026, 28.5896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9043, 28.5856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9059, 28.5846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9042, 28.5677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9061, 28.5657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9071, 28.5567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9071, 28.555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9108, 28.5453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.913, 28.5384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9123, 28.5377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9131, 28.5339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9238, 28.5135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9227, 28.5129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9146, 28.5216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.917, 28.5201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9188, 28.5197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9074, 28.5453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9076, 28.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8989, 28.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.899, 28.5654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8933, 28.5837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8976, 28.6123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8982, 28.6144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8962, 28.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8969, 28.6404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9078, 28.6654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9088, 28.6664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9085, 28.6894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9097, 28.6906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9115, 28.6881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9123, 28.6879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9183, 28.6734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9189, 28.6743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9336, 28.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9352, 28.6423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9345, 28.6405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9356, 28.6208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9173, 28.5932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9165, 28.5904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.909, 28.557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9014, 28.5708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8985, 28.5649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8996, 28.5292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9016, 28.5229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.896, 28.4912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8947, 28.4896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8755, 28.4836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8744, 28.4821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8835, 28.4515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8847, 28.4473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.883, 28.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8834, 28.4177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.888, 28.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8901, 28.3906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8901, 28.3886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8883, 28.3861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8952, 28.3739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8941, 28.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8877, 28.3709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8844, 28.3724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8858, 28.3711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8873, 28.3739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8854, 28.3812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8878, 28.3806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8861, 28.385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8871, 28.3848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8865, 28.3865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8864, 28.3873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9077, 28.4124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9081, 28.4138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9332, 28.4269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9336, 28.4286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.955, 28.4457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9543, 28.4466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9802, 28.4564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9799, 28.4594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0105, 28.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0108, 28.4776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.034, 28.4902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0332, 28.4893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0549, 28.4849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0537, 28.4845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0514, 28.4834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0498, 28.4791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0473, 28.4551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0459, 28.4552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.038, 28.4234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0369, 28.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0471, 28.3913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0454, 28.3911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0601, 28.3591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0584, 28.3592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0844, 28.3465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0863, 28.3454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.118, 28.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1185, 28.3528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1533, 28.3464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1551, 28.3464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1725, 28.3554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1758, 28.3552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2046, 28.3472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2072, 28.3451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2348, 28.3244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2381, 28.3227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2598, 28.3027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2626, 28.3012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2788, 28.2858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2806, 28.2857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3117, 28.2859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3126, 28.2871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3412, 28.2783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3454, 28.2792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3733, 28.2714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3736, 28.2714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4021, 28.2635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4194, 28.2458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4215, 28.2466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4478, 28.2363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4483, 28.2361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4675, 28.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4866, 28.2282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4855, 28.2276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4895, 28.2078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4899, 28.1808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.493, 28.1755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5023, 28.1559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5031, 28.1554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5125, 28.1289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5102, 28.1284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4954, 28.1262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4914, 28.1259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4708, 28.1009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.469, 28.0977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4629, 28.0708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4625, 28.0697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.464, 28.0474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4613, 28.0449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4769, 28.0445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4772, 28.0423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4814, 28.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4867, 28.0533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5132, 28.0983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5258, 28.1397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5213, 28.1595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.518, 28.1737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4901, 28.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4777, 28.2372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4648, 28.2757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4568, 28.2973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.446, 28.311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4404, 28.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4331, 28.3469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4263, 28.3587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4161, 28.3765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4176, 28.3741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.433, 28.3667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4752, 28.3712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4899, 28.3775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5412, 28.4482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5421, 28.4606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5345, 28.4726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.525, 28.4816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5135, 28.4869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5008, 28.4927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4884, 28.4945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4781, 28.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4728, 28.4963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4698, 28.4958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4673, 28.4967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4631, 28.4972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4581, 28.4962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4546, 28.4932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.453, 28.4884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4529, 28.4826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4549, 28.4774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4617, 28.4729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4724, 28.4699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4875, 28.4672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5019, 28.4647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5171, 28.4634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5318, 28.4633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5447, 28.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5544, 28.4699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5625, 28.4763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5673, 28.4843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5681, 28.4911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5664, 28.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5619, 28.5006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5564, 28.5017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5503, 28.5009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5435, 28.4973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5365, 28.4901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5277, 28.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5189, 28.4692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5106, 28.4551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5029, 28.4389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4968, 28.4206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4934, 28.4011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4926, 28.3826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4916, 28.3677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4872, 28.3536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4837, 28.3434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4824, 28.3339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4844, 28.3283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4907, 28.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.495, 28.3218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5019, 28.3146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5115, 28.3264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5132, 28.3345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.512, 28.3425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5105, 28.3496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5075, 28.3549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5034, 28.3588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.498, 28.3637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4911, 28.3683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4828, 28.3721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4748, 28.3739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4468, 28.3614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.429, 28.3507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3992, 28.3364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3493, 28.2751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3405, 28.2513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3533, 28.2175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3802, 28.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4002, 28.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4206, 28.1766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4405, 28.1795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7047, 29.0853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7007, 29.0831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6825, 29.0941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6597, 29.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6428, 29.1316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6393, 29.1328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6105, 29.1547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5912, 29.1712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5596, 29.1951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5446, 29.2141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5518, 29.2374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5676, 29.2393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5694, 29.2684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5695, 29.2697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5515, 29.2902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5229, 29.2919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5197, 29.2937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4867, 29.2879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4845, 29.2893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4535, 29.2854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.421, 29.2862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4179, 29.2877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3874, 29.2906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3846, 29.2925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3652, 29.2864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3615, 29.2888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3307, 29.2946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3284, 29.2958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3219, 29.2982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3148, 29.3029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2787, 29.3232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2595, 29.3395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2386, 29.3509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2352, 29.3522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1933, 29.3599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1896, 29.3595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1536, 29.3549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1503, 29.3538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1146, 29.3499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1108, 29.3489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0738, 29.3436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0707, 29.3432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0397, 29.3343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.018, 29.3217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0176, 29.321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0322, 29.3036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0319, 29.3022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0388, 29.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0383, 29.2922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0405, 29.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0402, 29.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0445, 29.2634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0441, 29.2613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0476, 29.2495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0547, 29.2255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0557, 29.2237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0613, 29.2101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0709, 29.1967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.082, 29.1863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0875, 29.1798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.091, 29.1758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1131, 29.1591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1279, 29.1526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1403, 29.1458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1652, 29.1386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1671, 29.1387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1951, 29.1308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2098, 29.1264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2348, 29.1151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2357, 29.1161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2549, 29.1097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2718, 29.1055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2948, 29.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.2961, 29.0998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3221, 29.0932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3237, 29.094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3539, 29.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3551, 29.0962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.372, 29.0918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3732, 29.0927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3932, 29.0884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3945, 29.0891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3974, 29.0901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4259, 29.0908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4253, 29.0917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4278, 29.0938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4312, 29.0948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4547, 29.0949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4556, 29.0952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.458, 29.0973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4697, 29.0985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4842, 29.0939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4847, 29.0941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4948, 29.0879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5134, 29.0889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5137, 29.0898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5259, 29.0894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5266, 29.0896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5401, 29.0859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5407, 29.0849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5542, 29.0769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5633, 29.0702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5799, 29.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5809, 29.0559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5997, 29.0454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6005, 29.0426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6223, 29.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6465, 29.0168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6475, 29.0146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6728, 29.0061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6737, 29.0044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6943, 28.9939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6958, 28.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.718, 28.9799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.742, 28.9671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7671, 28.9525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7696, 28.9502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7907, 28.9393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7935, 28.9369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8127, 28.9235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8151, 28.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8282, 28.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8308, 28.9026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8462, 28.8895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8484, 28.8858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8627, 28.8703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8656, 28.8666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8761, 28.8516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8781, 28.8486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8833, 28.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8858, 28.8378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8928, 28.8223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8977, 28.8104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9108, 28.7962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.932, 28.7859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9359, 28.7864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9598, 28.7718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9645, 28.7716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9924, 28.7588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0001, 28.7579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0193, 28.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0233, 28.7483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0498, 28.7421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0555, 28.7451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0739, 28.7255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0777, 28.7265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0995, 28.7363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1012, 28.7382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1232, 28.7433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1272, 28.7454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1435, 28.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1476, 28.7365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1598, 28.7309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1621, 28.7308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1762, 28.7195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1785, 28.7174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1915, 28.7087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1923, 28.7086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2096, 28.7011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21, 28.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2109, 28.7004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2189, 28.6993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2192, 28.6986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2287, 28.6971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2294, 28.6974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2395, 28.6937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2406, 28.6933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2496, 28.6893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2502, 28.6893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2622, 28.6866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2695, 28.6803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2689, 28.6795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.269, 28.6724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2665, 28.6708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2656, 28.6614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2645, 28.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2583, 28.6488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2604, 28.6429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26, 28.6413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2609, 28.6346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2601, 28.6328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2599, 28.6291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2609, 28.6238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2594, 28.6217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2578, 28.6169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2582, 28.6107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2577, 28.6086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2569, 28.6034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2585, 28.5994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.261, 28.5909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2608, 28.5856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.263, 28.5816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2675, 28.57 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2726, 28.5706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2734, 28.5692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2813, 28.5667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2824, 28.5654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2847, 28.5624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2935, 28.5603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2948, 28.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2979, 28.5562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3016, 28.5555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3055, 28.5521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3137, 28.5485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3186, 28.5453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3296, 28.5402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.332, 28.5385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.342, 28.5342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3651, 28.5392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3677, 28.5381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3897, 28.5421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3922, 28.5415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4045, 28.5461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.408, 28.5457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4222, 28.5565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4249, 28.5568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4303, 28.5583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4422, 28.5676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.452, 28.5941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4553, 28.5943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4704, 28.6075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4932, 28.6252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.509, 28.6376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.511, 28.6396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5239, 28.6546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5251, 28.6561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5381, 28.6708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5409, 28.6735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5521, 28.6864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5524, 28.6884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5498, 28.6998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5483, 28.7019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5369, 28.7106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5351, 28.7131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5221, 28.7247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5214, 28.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5052, 28.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5033, 28.7389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4971, 28.7492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4962, 28.7518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4948, 28.7635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4934, 28.7657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.481, 28.7717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4784, 28.7722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.473, 28.7717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4721, 28.7716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4659, 28.7731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4638, 28.7731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4609, 28.7757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4613, 28.7769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4635, 28.7775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4641, 28.7783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4671, 28.7797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4775, 28.7788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4781, 28.7788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4918, 28.7793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4928, 28.7799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5021, 28.7836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5014, 28.7851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5133, 28.7916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5142, 28.7921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5201, 28.8009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5202, 28.8013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5267, 28.8086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5247, 28.8086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5165, 28.8049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5136, 28.8037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5032, 28.7921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5014, 28.7912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4892, 28.7893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4869, 28.7884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4808, 28.7867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4753, 28.7848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4682, 28.7828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4667, 28.7823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4614, 28.7816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4535, 28.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4509, 28.7828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4449, 28.7823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4358, 28.7884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4331, 28.7883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4293, 28.7889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4266, 28.7898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4116, 28.7986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4094, 28.7983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4057, 28.7983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3969, 28.8031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3954, 28.8034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3918, 28.8018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3862, 28.8034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3843, 28.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3807, 28.8028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3692, 28.8041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3677, 28.8035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3637, 28.8023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3522, 28.8067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3515, 28.8076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3498, 28.8101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3515, 28.8157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3515, 28.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3416, 28.8322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3394, 28.8338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3218, 28.8459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.321, 28.8467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3186, 28.8494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3042, 28.8656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3036, 28.8672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3016, 28.8711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29, 28.8884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2885, 28.8898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2702, 28.9079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2688, 28.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2489, 28.9296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2476, 28.9325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2357, 28.9405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.234, 28.9432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2178, 28.9607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2168, 28.9639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1965, 28.9843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1949, 28.9876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1869, 28.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1866, 28.9936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1858, 28.9956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.187, 28.9976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.187, 28.9985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1877, 28.9988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2003, 28.9949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2117, 28.9846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2129, 28.9835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2129, 28.9828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1967, 28.9971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1937, 28.9992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1742, 29.0218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1715, 29.0231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1542, 29.0391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1513, 29.0326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1699, 29.0345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1693, 29.0329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1679, 29.034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1651, 29.0349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1515, 29.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1482, 29.0517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1419, 29.0537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1122, 29.0706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1091, 29.0706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1028, 29.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0838, 29.0794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0687, 29.0835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0648, 29.0833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0416, 29.0836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0387, 29.0831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.032, 29.0834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0055, 29.0946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0029, 29.0945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9794, 29.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9767, 29.1142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9502, 29.1262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.948, 29.1259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9262, 29.1327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9237, 29.1327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9192, 29.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9088, 29.1307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9032, 29.1308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8982, 29.1305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8849, 29.1292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8806, 29.1286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8721, 29.1287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8596, 29.1304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8573, 29.1305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8411, 29.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8266, 29.1461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8247, 29.1471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8052, 29.1511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8031, 29.1527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7884, 29.1481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7883, 29.1511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7947, 29.1499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7961, 29.1482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8328, 29.1194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8161, 29.1425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8284, 29.1352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8298, 29.1337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8303, 29.1322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8315, 29.1311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8361, 29.1293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8357, 29.1284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8359, 29.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8354, 29.1241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8381, 29.1244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8387, 29.1243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8404, 29.1243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8478, 29.1195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8496, 29.1201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8492, 29.1136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8459, 29.1147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8297, 29.1196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8257, 29.1206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8171, 29.1211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8105, 29.1215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.807, 29.1205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8044, 29.119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8013, 29.1177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7974, 29.1071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7945, 29.1053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7929, 29.0949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7912, 29.0931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7883, 29.0885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7856, 29.0824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7842, 29.0795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7998, 29.0575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7978, 29.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8086, 29.0384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8089, 29.0355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8228, 29.0124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8226, 29.0094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8329, 28.9907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8587, 28.9757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.861, 28.9734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8924, 28.9691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8945, 28.9664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.921, 28.9577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.924, 28.9554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9542, 28.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9583, 28.9531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9861, 28.9553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9904, 28.9534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0177, 28.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0206, 28.9588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0415, 28.9654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0445, 28.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0644, 28.9786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0659, 28.9799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0744, 28.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0802, 28.9935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0854, 28.9969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1008, 29.0162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1027, 29.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1139, 29.0305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.117, 29.0315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1378, 29.0508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.141, 29.0515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1645, 29.0451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1662, 29.0453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.198, 29.0405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1992, 29.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2053, 29.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2157, 29.0377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2183, 29.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2435, 29.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2448, 29.0304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2484, 29.0295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2588, 29.0226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2602, 29.0213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2616, 29.0201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2749, 29.0064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2879, 29.0046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2892, 29.0046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2982, 29.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3064, 28.9962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3067, 28.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3021, 28.9934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3038, 28.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3008, 28.9905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3021, 28.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.312, 28.9847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3144, 28.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3311, 28.9734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3332, 28.9725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3771, 28.9572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38, 28.9564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4079, 28.9511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4103, 28.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4328, 28.9465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4405, 28.9425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4683, 28.9349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4719, 28.9332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4993, 28.9311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4924, 28.9227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5246, 28.9242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5266, 28.9226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5319, 28.9203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5384, 28.9188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5456, 28.9169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5619, 28.9118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5652, 28.9097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5765, 28.9091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5879, 28.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5904, 28.8954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6031, 28.8842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6059, 28.8825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6136, 28.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6285, 28.8603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6307, 28.8579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6559, 28.8504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6504, 28.8456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6795, 28.8259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6813, 28.8239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6868, 28.8229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6889, 28.822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6899, 28.8236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6884, 28.8236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6857, 28.8233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6833, 28.8163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6842, 28.8139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.708, 28.7814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7082, 28.7789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7095, 28.7746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7268, 28.7486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7273, 28.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7513, 28.7221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7503, 28.7202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7486, 28.6969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7465, 28.6954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7567, 28.6717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7557, 28.6687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7613, 28.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7577, 28.6436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7278, 28.6224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7246, 28.6215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7237, 28.5963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7212, 28.5944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7189, 28.5914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7185, 28.5817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7186, 28.5803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7296, 28.5679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7294, 28.566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7406, 28.5484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7416, 28.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7558, 28.5378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7559, 28.5365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7612, 28.5279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.762, 28.5266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7701, 28.5087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7713, 28.5053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7696, 28.4978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7693, 28.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7736, 28.4992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7777, 28.5016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7677, 28.5085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7684, 28.5144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.762, 28.5129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7608, 28.5152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7545, 28.5204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.752, 28.5231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.744, 28.5361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7423, 28.5373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7421, 28.5506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7425, 28.5513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7369, 28.5639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7366, 28.5648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7325, 28.5828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7338, 28.5838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.727, 28.6007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7276, 28.6017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7177, 28.6196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7179, 28.6205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7206, 28.6413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7218, 28.6435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7228, 28.6475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7158, 28.6717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7166, 28.6737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7139, 28.6853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7142, 28.6889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7042, 28.6994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.702, 28.7003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6855, 28.7114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6835, 28.7127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6545, 28.7193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6526, 28.7209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6197, 28.7143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6173, 28.7159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5934, 28.7175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5917, 28.7204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5826, 28.7368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5803, 28.7394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5756, 28.7586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5733, 28.7613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5677, 28.7659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5617, 28.7788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5613, 28.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5614, 28.7922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5597, 28.7954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.556, 28.8018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5548, 28.8049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5576, 28.8056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5588, 28.8057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5593, 28.8044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5567, 28.8045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5534, 28.8028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5508, 28.7998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5505, 28.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5446, 28.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.541, 28.8015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5386, 28.8021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5345, 28.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5331, 28.7942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.533, 28.7953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5306, 28.7909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5289, 28.7835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5284, 28.7844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5242, 28.7879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5233, 28.7888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5264, 28.7792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5273, 28.7757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5281, 28.7766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5294, 28.7737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5286, 28.7732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5355, 28.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5532, 28.7642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5521, 28.7616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.541, 28.7479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5434, 28.7488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5562, 28.7628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5578, 28.7642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5591, 28.7661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5634, 28.7676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5595, 28.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5599, 28.7837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5489, 28.7886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5487, 28.7901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.548, 28.7932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5356, 28.8076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5355, 28.8102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5276, 28.8143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5259, 28.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5232, 28.8179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.523, 28.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5181, 28.8297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5178, 28.8316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5079, 28.8382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5073, 28.8396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5066, 28.8473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5057, 28.8497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4954, 28.8608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4936, 28.8627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4765, 28.8754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4751, 28.8773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4488, 28.8812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4461, 28.8833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4278, 28.8848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.425, 28.8852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4182, 28.8747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4188, 28.8739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4203, 28.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42, 28.8713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4233, 28.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4233, 28.8644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4427, 28.8554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4433, 28.8542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4518, 28.8456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4582, 28.8369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4594, 28.836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4792, 28.8231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4798, 28.8229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4785, 28.8414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4754, 28.8439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4637, 28.8654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4629, 28.8673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4559, 28.8834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4547, 28.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4513, 28.8918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4544, 28.8989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4554, 28.8997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.455, 28.8949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4607, 28.9049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4588, 28.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.458, 28.9196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4473, 28.9319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4454, 28.9339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4313, 28.9403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4292, 28.9408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4107, 28.9507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4095, 28.9517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3875, 28.9699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3859, 28.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3829, 28.9728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.369, 28.9901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3683, 28.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3582, 29.0062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3582, 29.0081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3423, 29.0233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3456, 29.0254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3298, 29.0299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3287, 29.0287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3191, 29.0302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3183, 29.0343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3227, 29.0386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3245, 29.0413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3256, 29.0324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3251, 29.0317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.329, 29.0212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.331, 29.0204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3278, 29.0076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3288, 29.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3266, 28.9981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3287, 28.9978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.326, 28.9932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3227, 28.9851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3218, 28.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3208, 28.9877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3069, 28.9867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.311, 28.9837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3104, 28.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3129, 28.9741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3146, 28.9741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3153, 28.9747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3198, 28.9781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3204, 28.9814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3191, 28.9853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3187, 28.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3138, 28.9895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3144, 28.9914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3021, 28.9808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2964, 28.9819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.293, 28.9832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2878, 28.9843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2821, 28.9861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2627, 28.9911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2587, 28.9932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2525, 28.994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2469, 28.9937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2272, 28.9928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2034, 28.9959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2023, 28.9979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2069, 29.0051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2063, 29.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2018, 29.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1988, 29.0149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1852, 29.0212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1823, 29.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1792, 29.0095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1787, 29.0107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1766, 29.0119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.175, 29.0318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1745, 29.0333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1648, 29.0527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1639, 29.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1433, 29.0665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1409, 29.0674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1155, 29.0763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1125, 29.0763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0883, 29.0929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.082, 29.0911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0587, 29.0974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0569, 29.0972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0431, 29.1143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0404, 29.1157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0183, 29.1286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0175, 29.1298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0076, 29.1368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0058, 29.1378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9935, 29.1488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.992, 29.1489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9727, 29.1556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9711, 29.1565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9656, 29.1589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9631, 29.1609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9581, 29.1654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.944, 29.1671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9428, 29.1662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9269, 29.1528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9255, 29.1531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9099, 29.1539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9091, 29.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.896, 29.1697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8983, 29.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9223, 29.1671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9248, 29.169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9442, 29.1497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9461, 29.1512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9506, 29.1318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9508, 29.1311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9653, 29.1168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9659, 29.1204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9503, 29.1283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9473, 29.1324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9297, 29.1481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9261, 29.1509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9058, 29.1536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9013, 29.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8718, 29.1544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8676, 29.1558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8337, 29.1506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8302, 29.1515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8044, 29.1597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8002, 29.1617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7767, 29.1672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7731, 29.1688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.745, 29.1823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7406, 29.1834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7197, 29.1911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7149, 29.1923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7, 29.1788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6982, 29.1776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7017, 29.1568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7001, 29.1541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7044, 29.1326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7036, 29.1302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7071, 29.1094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7081, 29.1066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7202, 29.0949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7217, 29.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7314, 29.0851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7442, 29.0821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.754, 29.0784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.756, 29.0775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7821, 29.0825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7834, 29.0815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8224, 29.0845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8243, 29.0838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8573, 29.0766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8596, 29.0762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8907, 29.0808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8928, 29.0813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9164, 29.0945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9199, 29.0951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9515, 29.0936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9781, 29.0979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9812, 29.0986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0039, 29.0964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0081, 29.0979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0335, 29.0879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0375, 29.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0707, 29.0859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0733, 29.0868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.103, 29.0807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1051, 29.0817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1216, 29.0713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1246, 29.0729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1335, 29.0782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1405, 29.0811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1513, 29.0738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1615, 29.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1626, 29.0655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1734, 29.0542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1748, 29.0553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1932, 29.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.194, 29.0467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2007, 29.0367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2011, 29.0391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2062, 29.0356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2075, 29.0358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2162, 29.0295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2143, 29.0294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2236, 29.0277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2413, 29.0273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2422, 29.0291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2678, 29.0251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2681, 29.0266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2986, 29.0253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2977, 29.0256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3029, 29.0233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3031, 29.0236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3133, 29.0183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3136, 29.0183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.321, 29.0137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3219, 29.0141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3339, 29.0113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3346, 29.0114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3465, 29.0048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.347, 29.0053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3559, 28.9997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3697, 28.9791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3694, 28.9779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3709, 28.9739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.374, 28.9517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3748, 28.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3808, 28.9239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3815, 28.9234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3848, 28.9206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.389, 28.9189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3931, 28.9173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4007, 28.9116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4033, 28.9096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4066, 28.9084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4094, 28.9084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4154, 28.894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4165, 28.8922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4408, 28.8755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4428, 28.8744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4654, 28.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4688, 28.8597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.497, 28.8556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4995, 28.8558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5281, 28.852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5306, 28.8528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5503, 28.8424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5526, 28.8422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5739, 28.8257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5748, 28.8246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5759, 28.8029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5781, 28.8022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5749, 28.783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5755, 28.7828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.557, 28.7834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5552, 28.7862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5468, 28.7968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5327, 28.7864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5308, 28.7872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5139, 28.7967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5115, 28.7988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5009, 28.7985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4995, 28.7991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4871, 28.7957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4862, 28.7959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4783, 28.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4774, 28.7961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4822, 28.7933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4845, 28.7945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5063, 28.7844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5062, 28.7837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53, 28.7732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5312, 28.7733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5422, 28.7703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5441, 28.7708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5685, 28.7639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5691, 28.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5701, 28.7643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5817, 28.7602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5822, 28.7603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6077, 28.7546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6077, 28.7537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6127, 28.7513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6402, 28.7439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6419, 28.7421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6451, 28.7406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6701, 28.7337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6721, 28.7324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7031, 28.7246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7331, 28.7027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7348, 28.7009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7562, 28.6784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7649, 28.6752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7662, 28.6774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7467, 28.6858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7456, 28.6853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7119, 28.6966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7109, 28.6968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6922, 28.7063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6919, 28.706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6783, 28.7254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6781, 28.7257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6638, 28.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6646, 28.7432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6547, 28.7587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6553, 28.7599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6685, 28.7671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6774, 28.7511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.702, 28.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7051, 28.7208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7231, 28.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.736, 28.6633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7364, 28.6619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7577, 28.6399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7778, 28.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7793, 28.6216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7811, 28.6237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7928, 28.6298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7949, 28.6311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7978, 28.6458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7975, 28.6462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7956, 28.6502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7932, 28.6475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7947, 28.6456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8006, 28.6425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8024, 28.6421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8067, 28.6386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8285, 28.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8291, 28.6289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8487, 28.6431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8456, 28.6433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8245, 28.6429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8207, 28.6426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8389, 28.6153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8377, 28.6133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8365, 28.6096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.852, 28.5995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8515, 28.5979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8504, 28.5903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8473, 28.5886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8619, 28.5802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.858, 28.5807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8421, 28.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8397, 28.5968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8345, 28.5973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8248, 28.6189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8219, 28.6194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8008, 28.6362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7991, 28.6358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7876, 28.6475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7859, 28.6456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7619, 28.6381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7603, 28.6365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7486, 28.6173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7502, 28.6169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.767, 28.6257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7717, 28.6348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7706, 28.6339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7689, 28.6342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7651, 28.6371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7826, 28.6498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7865, 28.6499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8031, 28.6412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8072, 28.6387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.827, 28.6199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8295, 28.6189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.839, 28.5968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8414, 28.5966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8583, 28.5825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8597, 28.5814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.861, 28.5661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8602, 28.5676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8446, 28.586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8426, 28.5878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8393, 28.5909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8347, 28.5955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8328, 28.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8287, 28.6032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8267, 28.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8225, 28.6094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8169, 28.6175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8143, 28.6192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.809, 28.6262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8086, 28.6314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.793, 28.6472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7792, 28.6648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7766, 28.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7984, 28.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.799, 28.6535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8237, 28.6371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8231, 28.6358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8451, 28.6308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8449, 28.6302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8615, 28.6271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8611, 28.6265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8614, 28.6263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8613, 28.6266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8598, 28.6268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8604, 28.6259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8611, 28.6247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8594, 28.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8573, 28.6225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8525, 28.6212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8494, 28.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8499, 28.6216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8497, 28.6198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8478, 28.6167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8517, 28.6122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8513, 28.6082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8515, 28.6072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8536, 28.6082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8523, 28.6077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8535, 28.6272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8521, 28.6259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8585, 28.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8714, 28.6655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8708, 28.6655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8709, 28.6888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.871, 28.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8703, 28.7052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8529, 28.7022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8543, 28.6992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8491, 28.6757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8491, 28.6744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8375, 28.6583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8435, 28.6396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8472, 28.6424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8451, 28.6529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8459, 28.6558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8344, 28.6675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8348, 28.6698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8159, 28.6888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8162, 28.6928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7996, 28.7061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.801, 28.7087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8026, 28.7147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8072, 28.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7947, 28.7484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7937, 28.7498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7728, 28.7653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7716, 28.7682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7452, 28.7822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7439, 28.7852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7123, 28.7941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7097, 28.7992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6761, 28.8053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6736, 28.8074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6679, 28.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6453, 28.8158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6436, 28.8187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6388, 28.8243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6281, 28.8357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6258, 28.8391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6152, 28.8494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6128, 28.8508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5909, 28.8584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5885, 28.8601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5729, 28.8709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5694, 28.8731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.551, 28.8876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5482, 28.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5265, 28.9041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5218, 28.9056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5172, 28.9062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4941, 28.8983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4913, 28.8968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4924, 28.8898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4923, 28.8855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4935, 28.8836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4918, 28.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4931, 28.8824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4904, 28.8808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4855, 28.8776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4836, 28.8772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4935, 28.8878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4809, 28.8956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4799, 28.8957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4682, 28.9088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4668, 28.9083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4486, 28.9027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4472, 28.9012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4616, 28.9161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4628, 28.9163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4907, 28.9158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4932, 28.9163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.523, 28.9032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5255, 28.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5169, 28.9111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5178, 28.9147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5023, 28.9186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5041, 28.9217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5043, 28.9281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5009, 28.9334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5067, 28.9377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5058, 28.9372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5044, 28.9399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5036, 28.9411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4879, 28.9468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4862, 28.9476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4955, 28.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4943, 28.9592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4931, 28.9603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4932, 28.9604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.486, 28.9643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4906, 28.9609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4883, 28.9613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4724, 28.9506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4706, 28.9522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4555, 28.9672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4523, 28.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4259, 28.9666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4217, 28.9673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3997, 28.9785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3971, 28.9793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3773, 28.9866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3777, 28.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3901, 28.9814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3884, 28.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3908, 28.9819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4052, 28.9559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4038, 28.9537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4159, 28.9455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4179, 28.9441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4404, 28.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4423, 28.9304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4446, 28.9276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4461, 28.9254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4534, 28.9207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4558, 28.9195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4954, 28.9145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4971, 28.9153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5007, 28.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5046, 28.9308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.503, 28.9323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4782, 28.9373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4778, 28.9367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4541, 28.9352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4525, 28.9357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.439, 28.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4409, 28.9246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4631, 28.9278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4614, 28.9296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4579, 28.9481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.456, 28.9504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4403, 28.9576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4383, 28.9593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4185, 28.9683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4148, 28.9696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3933, 28.9756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3921, 28.9774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3725, 28.9814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3573, 28.9833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3772, 29.0008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3698, 28.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3909, 28.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3894, 28.9842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3917, 28.9845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3838, 28.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3596, 28.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.355, 28.9881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3621, 28.9829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3454, 28.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3223, 28.9934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3172, 28.9908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3199, 28.9924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3213, 28.9921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.319, 28.9896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3354, 28.9779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3375, 28.9737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3385, 28.9634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3347, 28.9537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3366, 28.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3402, 28.9503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3473, 28.9472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3486, 28.9435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3917, 28.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3942, 28.9323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.425, 28.9435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4273, 28.9426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4671, 28.9498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4706, 28.9499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.499, 28.9542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.503, 28.9523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5352, 28.9376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.538, 28.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5592, 28.8987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5623, 28.8975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5732, 28.8713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5787, 28.8717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6072, 28.8471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6102, 28.8473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6449, 28.8257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6488, 28.8263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6771, 28.8055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6788, 28.8065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6886, 28.7878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6901, 28.7883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7003, 28.7665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7002, 28.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7017, 28.7676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7086, 28.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7084, 28.7489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7131, 28.7243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7127, 28.7231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7257, 28.7146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7236, 28.7152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7226, 28.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7092, 28.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7126, 28.7106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7218, 28.7024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7216, 28.7056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7113, 28.7052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7072, 28.7087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7038, 28.7106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6881, 28.7177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6881, 28.7248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6965, 28.7441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6947, 28.7465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7235, 28.7534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7233, 28.7535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.757, 28.7494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7562, 28.7495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7887, 28.7432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7879, 28.7426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8153, 28.7347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8143, 28.7344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8429, 28.7263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8426, 28.7249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8783, 28.7112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8774, 28.7094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8995, 28.6884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8991, 28.6869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9144, 28.6714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.912, 28.6703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9126, 28.6681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9123, 28.6681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9328, 28.6808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93, 28.6809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9129, 28.6884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9122, 28.6883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9115, 28.6883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9029, 28.7002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9032, 28.7003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9033, 28.7004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8912, 28.6918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8934, 28.6912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8846, 28.7017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8853, 28.7011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8972, 28.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9016, 28.7129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9058, 28.7169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.916, 28.7227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9183, 28.7244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9132, 28.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.917, 28.7032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9012, 28.7027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8997, 28.7025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.899, 28.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8774, 28.7098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8774, 28.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8765, 28.7236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8761, 28.7301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.876, 28.7373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8725, 28.7589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8695, 28.7657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8646, 28.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8604, 28.7813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.858, 28.7854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8236, 28.7834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8218, 28.7855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7906, 28.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7882, 28.7795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7673, 28.785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7645, 28.7865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7599, 28.8003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7604, 28.8029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7861, 28.7833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7837, 28.7838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7572, 28.7884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7548, 28.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7325, 28.7979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7302, 28.7984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7024, 28.8079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6986, 28.8077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6915, 28.8069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6851, 28.8072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6837, 28.8004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6835, 28.7993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.667, 28.7784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6462, 28.7806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6449, 28.7783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66, 28.7912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6616, 28.7906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6898, 28.7962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6903, 28.7942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.697, 28.7917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6974, 28.7893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6977, 28.7847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6836, 28.7818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6838, 28.7803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6843, 28.7782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.665, 28.7792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6706, 28.7776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6748, 28.7773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.656, 28.7728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6565, 28.773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6785, 28.7758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6818, 28.7779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6961, 28.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6955, 28.8236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6769, 28.8379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6779, 28.8409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6572, 28.8474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6592, 28.8503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6773, 28.8375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6806, 28.8385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7044, 28.8145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7068, 28.8144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7368, 28.7973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7382, 28.7973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7643, 28.7816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7669, 28.7824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.797, 28.7723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7986, 28.7723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8211, 28.7555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8227, 28.7553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8491, 28.7337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8496, 28.7334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8787, 28.7133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8791, 28.7133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8968, 28.7031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.895, 28.7026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8911, 28.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.893, 28.6838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8951, 28.6797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9007, 28.6739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9065, 28.6688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9114, 28.6646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9088, 28.6607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9067, 28.6746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9059, 28.6734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9312, 28.669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9352, 28.6693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9386, 28.6388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9394, 28.6341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9618, 28.6085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9644, 28.6074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9864, 28.5823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9888, 28.5803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0063, 28.5587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0101, 28.5565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0228, 28.5363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0261, 28.5369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0506, 28.5237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0535, 28.5238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0625, 28.5184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0662, 28.5188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0768, 28.5232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0839, 28.5283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0905, 28.5308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0866, 28.5331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.086, 28.5328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0861, 28.5328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0879, 28.5359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0878, 28.5406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0839, 28.5408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1113, 28.4287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1067, 28.4482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1014, 28.4575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0985, 28.4594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0963, 28.4612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0954, 28.4623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0976, 28.4615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1363, 28.4571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1545, 28.4602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.178, 28.4685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1989, 28.4789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2328, 28.5052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2612, 28.5367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2739, 28.5538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2886, 28.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2989, 28.5887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3073, 28.6058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3132, 28.6232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3213, 28.6402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3304, 28.6511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3386, 28.6582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.358, 28.6455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.364, 28.6396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3684, 28.6347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.372, 28.6306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3801, 28.6253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4009, 28.6281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4144, 28.6321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.429, 28.6398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4678, 28.7004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4678, 28.7119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4666, 28.7198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4645, 28.7263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4638, 28.7328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4632, 28.7396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4603, 28.7434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4592, 28.7445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4608, 28.7438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4727, 28.7406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5114, 28.7521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5627, 28.7756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5822, 28.7865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6241, 28.8121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6645, 28.8471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6874, 28.8664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7091, 28.8868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7826, 28.9544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8168, 28.9713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8596, 28.9883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8788, 28.9957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8951, 29.0017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9111, 29.0064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9285, 29.0089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.965, 29.0097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9846, 29.0089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0269, 29.0077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0504, 29.0083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0802, 29.0002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0975, 29.0113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.121, 29.0126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1873, 29.0158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2062, 29.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2225, 29.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2731, 28.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2853, 28.9936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.299, 28.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3166, 28.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3344, 28.9783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3495, 28.9726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3836, 28.9607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4035, 28.9574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4184, 28.9542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4326, 28.9536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4491, 28.9541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4631, 28.9559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4769, 28.9581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5001, 28.9627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5095, 28.9651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5193, 28.9675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5295, 28.9708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5399, 28.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5601, 28.9741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5889, 28.9769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6084, 28.9753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6278, 28.9694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6529, 28.9646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7009, 28.9574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7363, 28.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7597, 28.9563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7794, 28.9572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7976, 28.9583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8419, 28.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8681, 28.9498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8815, 28.9496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9319, 28.9532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9488, 28.9554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9626, 28.9569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9894, 28.9622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0021, 28.9609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0138, 28.9595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0272, 28.9562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0676, 28.9516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0829, 28.9505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1179, 28.9487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1366, 28.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1525, 28.9465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1757, 28.9468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1872, 28.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2054, 28.9497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2632, 28.8791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2398, 28.9006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1876, 28.9827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1854, 28.9873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1357, 29.0311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1171, 29.0548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1127, 29.0665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0996, 29.0849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0955, 29.0898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0686, 29.1003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0193, 29.1047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9827, 29.1049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9774, 29.1024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9491, 29.1251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9178, 29.1293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.848, 29.1224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7927, 29.146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7551, 29.1607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.751, 29.1617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7476, 29.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.782, 29.0896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7898, 29.0546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7888, 29.0437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8093, 29.0082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8084, 29.0058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02, 29.0084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0423, 29.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1287, 29.0716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1721, 29.0663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2893, 29.0166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2954, 29.0067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4947, 28.9546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6112, 28.8992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65, 28.8656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7001, 28.8211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7588, 28.5109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7647, 28.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7614, 28.4858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7382, 28.5144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7174, 28.5497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.716, 28.5495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7074, 28.5833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.696, 28.6496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6977, 28.6513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6821, 28.6968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6605, 28.7041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6612, 28.7065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6352, 28.7125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5697, 28.7504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5657, 28.7527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5607, 28.7781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5589, 28.7819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56, 28.8006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5423, 28.8077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5367, 28.8105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5316, 28.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5091, 28.792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5135, 28.7774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5152, 28.7825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5356, 28.7715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5382, 28.7694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.546, 28.7646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5304, 28.7532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5187, 28.7852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5173, 28.7926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.496, 28.8078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4806, 28.8226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4829, 28.8226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4647, 28.8373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4524, 28.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4189, 28.8746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.097, 28.5504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3896, 28.9184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3862, 28.9186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3786, 28.9331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3657, 28.9395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3601, 28.9473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3395, 28.9807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3361, 29.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2439, 29.0062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2201, 28.9921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2038, 29.0104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2024, 29.0171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1663, 29.0295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1597, 29.0299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8754, 29.1731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.79, 29.1774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7642, 29.1753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7602, 29.1773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7327, 29.1782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6983, 29.1856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6686, 29.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6755, 29.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7144, 29.1191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7485, 29.1112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7535, 29.1049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8802, 29.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.885, 29.1289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9817, 29.1129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0103, 29.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0565, 29.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0917, 29.0468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1745, 29.0242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2147, 29.0213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2137, 29.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3783, 28.9319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3857, 28.9208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3904, 28.9157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4002, 28.9106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4044, 28.9059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4067, 28.9065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4363, 28.8828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5095, 28.8698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5451, 28.8226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5217, 28.7879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4871, 28.7797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4855, 28.7801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4985, 28.7568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4931, 28.7878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5749, 28.7498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5735, 28.7525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.612, 28.7356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7372, 28.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6893, 28.7496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7345, 28.6847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7513, 28.6535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7933, 28.6464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8015, 28.6426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.813, 28.6354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8325, 28.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8192, 28.6438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7974, 28.6496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.793, 28.6203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7752, 28.6249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7722, 28.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7668, 28.6317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7942, 28.6449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8399, 28.5882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8429, 28.5878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8176, 28.6016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8159, 28.6019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8097, 28.6259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8086, 28.6312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8003, 28.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7966, 28.6456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.783, 28.6575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8073, 28.6474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8785, 28.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8759, 28.6141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8522, 28.6055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8495, 28.6229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8483, 28.6217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8451, 28.6832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8054, 28.7437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8069, 28.7447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7829, 28.7792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7843, 28.7818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7618, 28.7902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7395, 28.8057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7409, 28.8054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7154, 28.8112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7146, 28.8249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6902, 28.8172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6665, 28.8326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6653, 28.8353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.615, 28.8536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6116, 28.8546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5839, 28.8571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5601, 28.869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4948, 28.8924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4927, 28.8882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.483, 28.8777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4807, 28.9325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4809, 28.9631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4904, 28.9612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4953, 28.9593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4801, 28.9649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4509, 28.9694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4158, 28.9754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4104, 28.9806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3947, 28.9867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3923, 28.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3887, 28.9768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4318, 28.9576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4347, 28.9583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4916, 28.9311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4208, 28.9365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4344, 28.9567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3882, 28.9901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3767, 28.9917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3438, 28.9932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3312, 28.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3223, 28.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3971, 28.9517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4604, 28.9606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5169, 28.9531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6246, 28.8384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6609, 28.8132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7054, 28.7415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7108, 28.7269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7066, 28.7095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6883, 28.7245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7154, 28.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7169, 28.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7973, 28.7295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8416, 28.719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8741, 28.7014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9105, 28.6851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8972, 28.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8661, 28.7376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8574, 28.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8595, 28.7493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8491, 28.752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8107, 28.7686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8081, 28.7718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7775, 28.7747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7616, 28.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7521, 28.7842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7215, 28.7962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6724, 28.7972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6518, 28.7859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6456, 28.7886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6491, 28.8303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.651, 28.8339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.6713, 28.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.675, 28.7896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8276, 28.7193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8585, 28.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8601, 28.6992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8826, 28.6777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8938, 28.6768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.922, 28.6604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.922, 28.6571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9248, 28.6477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9405, 28.6391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9589, 28.6273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.981, 28.6026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9828, 28.6004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0554, 28.5421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1021, 28.5321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1149, 28.4439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0562, 28.8762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5111, 28.8106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6707, 27.7439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7, 27.7315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7004, 27.7293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7334, 27.7216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7343, 27.7204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7583, 27.7242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7583, 27.7234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7582, 27.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7589, 27.6893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.764, 27.6791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7548, 27.6597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7534, 27.6584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7441, 27.6394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7453, 27.6364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7435, 27.6229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7444, 27.6198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7446, 27.6177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7446, 27.6091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7491, 27.5722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7502, 27.5701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7718, 27.5361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7719, 27.5361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7958, 27.5239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7957, 27.5238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8295, 27.5065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8294, 27.5061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8558, 27.4836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8557, 27.4826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8923, 27.4666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8903, 27.4648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9167, 27.4805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9162, 27.4815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9185, 27.5096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9137, 27.5342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9116, 27.5347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.927, 27.5539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9249, 27.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9178, 27.5443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9153, 27.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9292, 27.5707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9273, 27.5721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9293, 27.6026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9267, 27.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.916, 27.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9141, 27.6251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8803, 27.6481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8823, 27.6496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8537, 27.6643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8515, 27.6637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8316, 27.6815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8284, 27.6789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8158, 27.7032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8128, 27.7005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7902, 27.7221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7897, 27.7231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7636, 27.7377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7626, 27.7386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7528, 27.7626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7506, 27.7625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7251, 27.7687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7231, 27.7689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7014, 27.7767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6988, 27.7774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.672, 27.7743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6695, 27.7748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6453, 27.7748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6429, 27.7757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6155, 27.7889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6144, 27.7903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5875, 27.8071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5829, 27.8104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5668, 27.8298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.563, 27.8381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.544, 27.8622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5424, 27.8642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5348, 27.8938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5341, 27.8922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.558, 27.8786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5573, 27.8787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5774, 27.8651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5778, 27.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6086, 27.8516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6392, 27.8364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6408, 27.8348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6723, 27.8425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6739, 27.8407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7016, 27.8332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7033, 27.8323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7106, 27.8306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.739, 27.8306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7402, 27.8285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7702, 27.8144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7725, 27.8136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8105, 27.8183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8408, 27.8297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8426, 27.8287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8637, 27.8225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8635, 27.8209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8732, 27.8113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8761, 27.8053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8823, 27.7924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8832, 27.7908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8845, 27.7864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8828, 27.7843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8842, 27.7819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.886, 27.7695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8863, 27.7678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8923, 27.7618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8946, 27.7598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9132, 27.7644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9174, 27.7598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9405, 27.7357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9414, 27.7355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9775, 27.7249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.979, 27.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9902, 27.7331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9899, 27.7327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.999, 27.6998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0002, 27.6997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0179, 27.6725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0195, 27.6725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0432, 27.6478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0439, 27.6494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.073, 27.6306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0731, 27.6299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0992, 27.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0975, 27.6052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.13, 27.5964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1307, 27.5962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1588, 27.5843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1602, 27.5848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1898, 27.5785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1905, 27.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2157, 27.5838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2176, 27.5826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2437, 27.5635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2455, 27.5636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2729, 27.5572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2737, 27.5567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.296, 27.5438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2961, 27.5452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3303, 27.5377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3318, 27.5371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3668, 27.5331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3692, 27.5366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3961, 27.5424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3969, 27.5425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.423, 27.5497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.424, 27.5492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4532, 27.5406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4773, 27.5346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4775, 27.5356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5023, 27.5422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5025, 27.5431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5215, 27.5578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5269, 27.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5446, 27.5598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5457, 27.5597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5676, 27.5536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5672, 27.5532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5886, 27.5412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5905, 27.5419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6087, 27.5559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6088, 27.5576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6394, 27.5451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6394, 27.5461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6656, 27.5368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6664, 27.5363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7047, 27.5305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7056, 27.5302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7415, 27.5252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7403, 27.5234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7756, 27.5226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7761, 27.5222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8014, 27.5203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8023, 27.5196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8125, 27.4937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8136, 27.4933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8197, 27.4716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8214, 27.4716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.836, 27.4599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8393, 27.4596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8676, 27.4436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8723, 27.4422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8999, 27.4309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9015, 27.4301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9326, 27.4226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9343, 27.4228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9588, 27.4352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9601, 27.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9812, 27.4436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9824, 27.4448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0026, 27.4489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0037, 27.4488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0224, 27.4607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0234, 27.4606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0414, 27.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0324, 27.4869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0311, 27.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0313, 27.4891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.029, 27.4914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0258, 27.4937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.027, 27.495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0238, 27.4959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0212, 27.4995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0188, 27.5013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0128, 27.5027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0085, 27.5071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0064, 27.5097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0039, 27.5135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9988, 27.5165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 27.5181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9938, 27.5188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9932, 27.5202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9889, 27.5221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9884, 27.5234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9829, 27.5255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9792, 27.5327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9558, 27.5525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9529, 27.5533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9097, 27.5666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.907, 27.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8667, 27.5852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8635, 27.5856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.826, 27.5957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8228, 27.5964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7838, 27.5916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7813, 27.5894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7516, 27.5818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7437, 27.5529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7431, 27.5517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7542, 27.5276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7545, 27.5266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7759, 27.5084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7763, 27.5078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.805, 27.4938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8062, 27.4933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8366, 27.4842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8373, 27.4828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8696, 27.4706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8702, 27.4702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8915, 27.4584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.893, 27.458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.919, 27.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9204, 27.4678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9325, 27.4758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9314, 27.4751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9206, 27.4549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9199, 27.4551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8898, 27.4652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8886, 27.4638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8646, 27.4541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8635, 27.4545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8356, 27.4504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8346, 27.4506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8069, 27.4367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7789, 27.4401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7782, 27.4393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7505, 27.4293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7498, 27.4319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.724, 27.4237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7212, 27.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7121, 27.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.681, 27.4269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6786, 27.4284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.651, 27.4437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6489, 27.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6181, 27.4562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6164, 27.4575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5937, 27.4728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5919, 27.4743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5685, 27.4857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5659, 27.4867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5714, 27.499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5726, 27.4995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.591, 27.4893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.592, 27.4891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6074, 27.4923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6066, 27.4951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6337, 27.4833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6359, 27.4837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6525, 27.4831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6537, 27.4848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6804, 27.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.681, 27.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6957, 27.4543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6961, 27.4535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7049, 27.4357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7028, 27.4358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7234, 27.4348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7247, 27.4334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7459, 27.4245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7456, 27.4233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7607, 27.4132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7604, 27.4126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7552, 27.4115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7496, 27.4118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7489, 27.4144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7435, 27.4117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.738, 27.4118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7393, 27.4094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7382, 27.4095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7304, 27.4208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7312, 27.4218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.745, 27.4421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7458, 27.4424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7606, 27.4572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7584, 27.4593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7731, 27.4536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7735, 27.4544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7835, 27.4421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7828, 27.4413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7795, 27.4418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7805, 27.4422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7818, 27.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7804, 27.4428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7915, 27.4216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7923, 27.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8238, 27.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8247, 27.4106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8492, 27.3949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85, 27.3946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8743, 27.3835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8745, 27.3831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8982, 27.3722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9014, 27.3698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9137, 27.3578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9133, 27.3574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9341, 27.3492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9344, 27.3497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9606, 27.3484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9613, 27.3492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9818, 27.3499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9821, 27.3502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0035, 27.3481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0032, 27.3502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9947, 27.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.993, 27.3582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9888, 27.3593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9714, 27.3834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9734, 27.3818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.984, 27.3909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9833, 27.3933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9823, 27.4011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9822, 27.4009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9837, 27.4016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9841, 27.3927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9791, 27.4029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9784, 27.4032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9789, 27.4015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9785, 27.4067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9721, 27.4073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9719, 27.4077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.969, 27.4088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9692, 27.4092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9866, 27.4286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9864, 27.4297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0073, 27.4459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0047, 27.4501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0265, 27.4649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0244, 27.4667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0389, 27.4829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0389, 27.4906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0677, 27.4993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0829, 27.4943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0931, 27.4908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.094, 27.4912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1219, 27.4863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1218, 27.4874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1223, 27.485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1358, 27.4696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1358, 27.4723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1637, 27.4739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1646, 27.4743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1895, 27.4671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1983, 27.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2149, 27.4607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2167, 27.4588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2259, 27.4392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2241, 27.4408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2337, 27.4238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2244, 27.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2548, 27.3901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2556, 27.3891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27, 27.3653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2657, 27.3656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2626, 27.3476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2624, 27.3449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2672, 27.3242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2668, 27.3226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2684, 27.3042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2711, 27.3002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2715, 27.3174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2719, 27.3186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2791, 27.3219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2796, 27.3224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2814, 27.3249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2805, 27.3257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2801, 27.3264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2757, 27.3478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2913, 27.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2923, 27.3614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3126, 27.3732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3134, 27.3741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3314, 27.3886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3324, 27.3898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3513, 27.4038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3571, 27.4273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3573, 27.4285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3636, 27.4474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3645, 27.4488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3876, 27.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.386, 27.4575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3993, 27.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4, 27.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4171, 27.4661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4176, 27.4687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4368, 27.4857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4372, 27.488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4497, 27.5022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4508, 27.5019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4736, 27.5008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4745, 27.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4857, 27.4942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4845, 27.4941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4741, 27.4695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4743, 27.4693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4743, 27.4559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4742, 27.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4945, 27.4434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4921, 27.4431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4986, 27.4238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4974, 27.4227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5216, 27.4107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5218, 27.4104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5365, 27.3949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5371, 27.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5394, 27.4136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5378, 27.4153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5266, 27.4364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5237, 27.4362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.498, 27.4335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4943, 27.4319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.472, 27.4405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4689, 27.4402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.449, 27.4528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4593, 27.4544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4385, 27.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4386, 27.4671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4191, 27.4769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.401, 27.4873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4002, 27.4873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3858, 27.4984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3855, 27.4988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3661, 27.5104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3654, 27.5107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3575, 27.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.349, 27.5335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3483, 27.5347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3479, 27.5355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3474, 27.5369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3468, 27.5389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3464, 27.5396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3459, 27.5431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3432, 27.5423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3433, 27.5425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3426, 27.5434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3386, 27.5488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3348, 27.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3593, 27.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3604, 27.5336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3807, 27.5178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3814, 27.518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4076, 27.5025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.408, 27.5034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4358, 27.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4363, 27.505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4566, 27.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4563, 27.5072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4688, 27.4806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4692, 27.4802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4912, 27.4717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4902, 27.4736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5296, 27.4707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5293, 27.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5516, 27.4749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5507, 27.4737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5645, 27.4492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5648, 27.4508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5961, 27.4386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.597, 27.4386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6146, 27.4248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6154, 27.4239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6501, 27.4239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6518, 27.4238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6755, 27.4225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.675, 27.4218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6909, 27.4042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6912, 27.4034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7377, 27.3873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7374, 27.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7445, 27.3669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7489, 27.3668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7799, 27.3736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7805, 27.3733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8042, 27.3741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8041, 27.3737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8165, 27.3538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8194, 27.3528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8398, 27.3483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8392, 27.3471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.839, 27.3454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8375, 27.3463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8369, 27.3489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8373, 27.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8345, 27.3487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8379, 27.3254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8399, 27.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8384, 27.3395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8338, 27.3419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.835, 27.3396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8328, 27.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8319, 27.3379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.832, 27.3372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8217, 27.3176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8244, 27.3185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8267, 27.3192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8269, 27.322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8085, 27.292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8087, 27.2892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7772, 27.2703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.776, 27.2686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7488, 27.2498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7475, 27.2479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7506, 27.2218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7496, 27.2219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7634, 27.2004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7638, 27.1987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7749, 27.1799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.773, 27.1784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8112, 27.1779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7962, 27.1679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8162, 27.1741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8174, 27.1755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8356, 27.1927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8383, 27.1945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8574, 27.2045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8614, 27.2079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8901, 27.2192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8927, 27.2209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9167, 27.2299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9178, 27.2317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9448, 27.2459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9634, 27.2573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.965, 27.2591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9639, 27.2852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9657, 27.2854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9973, 27.2893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9981, 27.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0122, 27.3073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0127, 27.3095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0008, 27.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0004, 27.3048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0266, 27.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0287, 27.2933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0292, 27.2942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.029, 27.2949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0284, 27.2959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0292, 27.2957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0266, 27.2962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0257, 27.2985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0266, 27.2981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0253, 27.2983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0264, 27.2988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0267, 27.3009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0265, 27.2991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0268, 27.2992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0273, 27.2994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0256, 27.2996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.025, 27.2993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0238, 27.2995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0233, 27.2985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0184, 27.2785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0176, 27.2788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9973, 27.266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9952, 27.2646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9875, 27.2452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9861, 27.2439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9666, 27.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9655, 27.2235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9521, 27.2055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9517, 27.2038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9376, 27.1869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9362, 27.1854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9135, 27.1766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9117, 27.1763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8904, 27.1741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8934, 27.1789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8844, 27.1801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8833, 27.1783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8514, 27.1815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8506, 27.1819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8341, 27.1768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8337, 27.1778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8337, 27.1982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8328, 27.1994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8297, 27.2234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8311, 27.2237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8423, 27.2428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8418, 27.2442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8506, 27.2673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8503, 27.2706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8575, 27.2956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8572, 27.2977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8679, 27.3145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8675, 27.3161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8701, 27.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8873, 27.3493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8864, 27.3509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8946, 27.3644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8941, 27.3655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9051, 27.3755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9051, 27.3761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9037, 27.3769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9037, 27.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8978, 27.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8661, 27.3753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8639, 27.3754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8357, 27.3673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8338, 27.3657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8088, 27.3565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8071, 27.3548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7891, 27.3389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7888, 27.3365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7764, 27.3275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7662, 27.3225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.742, 27.3147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7389, 27.3124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7199, 27.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7181, 27.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6914, 27.2913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6957, 27.2827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6829, 27.2504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6845, 27.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.676, 27.2483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6617, 27.2237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6577, 27.2207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6311, 27.2093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6289, 27.2096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6034, 27.2023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6016, 27.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5712, 27.1952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.569, 27.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5378, 27.1915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.535, 27.1911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5142, 27.2017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5119, 27.2027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.483, 27.1933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4808, 27.1933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4553, 27.1838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4514, 27.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4192, 27.1869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4161, 27.1867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4018, 27.1732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3984, 27.1716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3778, 27.1907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3755, 27.1921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3507, 27.1771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3495, 27.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.323, 27.1809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3208, 27.1824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2988, 27.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2967, 27.1866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3002, 27.2066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2999, 27.2072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2922, 27.2276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2916, 27.2294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2864, 27.2538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2735, 27.2764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2737, 27.2749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2739, 27.2988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2729, 27.3003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2702, 27.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2681, 27.3221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2549, 27.3424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2516, 27.3443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2282, 27.3636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2269, 27.3655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2146, 27.3889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2146, 27.3905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2085, 27.4152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2081, 27.4173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2036, 27.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2016, 27.4434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1898, 27.4584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1881, 27.4615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1662, 27.4709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1639, 27.4726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1362, 27.4766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1348, 27.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1077, 27.497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1073, 27.4981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0921, 27.5187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0897, 27.5189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0634, 27.5191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0614, 27.5199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.047, 27.5091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0423, 27.5105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.026, 27.5167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0164, 27.5121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0135, 27.5087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0082, 27.5053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0073, 27.5042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.002, 27.4982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9992, 27.4921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9976, 27.4878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9956, 27.4802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9929, 27.4583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9941, 27.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9913, 27.4203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9774, 27.4034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9755, 27.4034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9401, 27.4002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9376, 27.4005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9102, 27.3966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9089, 27.3957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88, 27.3961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8784, 27.3961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8561, 27.3877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8563, 27.3866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8495, 27.3647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8485, 27.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8322, 27.3429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8276, 27.3427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8032, 27.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8009, 27.3262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7736, 27.3001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7754, 27.2951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7543, 27.2732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.753, 27.2718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7406, 27.2469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7402, 27.2473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7464, 27.2226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7443, 27.2223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7371, 27.2038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7371, 27.2028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7373, 27.1811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7355, 27.1819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7514, 27.1645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7545, 27.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7678, 27.1433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7671, 27.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7825, 27.1311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7816, 27.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.796, 27.1145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7946, 27.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8033, 27.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8016, 27.0849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7919, 27.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7921, 27.0533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8132, 27.0477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8099, 27.0484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8179, 27.0177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.816, 27.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8355, 27.0108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8358, 27.0114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8362, 27.0123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8341, 27.0106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8344, 27.0104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8365, 27.0135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8377, 27.0111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.837, 27.0077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8335, 27.0051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8271, 27.0005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8227, 26.9972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.817, 26.9993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8096, 26.9989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8089, 26.9985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8038, 26.9938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8002, 26.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7902, 26.9977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7831, 26.9968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7777, 26.9995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8215, 27.0274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.143, 27.0342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1297, 27.0358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0738, 27.0362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0601, 27.0361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0465, 27.0391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0293, 27.0404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0145, 27.0373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9813, 27.0379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.966, 27.0321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 27.0284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9337, 27.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9154, 27.0199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8956, 27.0156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8764, 27.0105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8394, 26.9985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8217, 26.9923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.803, 26.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.766, 26.9696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7498, 26.9596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7368, 26.9534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7208, 26.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7068, 26.9447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6969, 26.9321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6797, 26.9282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6621, 26.9251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6312, 26.9164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6127, 26.9129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5737, 26.9049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5535, 26.9003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5332, 26.8951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5116, 26.8904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4852, 26.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4344, 26.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.415, 26.8502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3959, 26.8347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3353, 26.7767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3115, 26.7525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2994, 26.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2889, 26.7327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2662, 26.7181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2538, 26.7105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2401, 26.7039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1434, 26.6677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1241, 26.6611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1024, 26.6531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0836, 26.6448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0661, 26.6353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.047, 26.6267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0105, 26.6055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9942, 26.5924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9523, 26.5564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9416, 26.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.933, 26.5323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.924, 26.5207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9156, 26.5082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.906, 26.4944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8868, 26.4679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8776, 26.4548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8695, 26.4419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8607, 26.4295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8513, 26.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8337, 26.3958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8076, 26.3663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.774, 26.3432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7604, 26.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7361, 26.3101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7221, 26.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7088, 26.2751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6669, 26.1917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6611, 26.1677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6577, 26.1449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6562, 26.1219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6562, 26.1021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6573, 26.0484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6584, 26.0338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.654, 26.0095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6485, 25.9975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6404, 25.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6317, 25.9734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6213, 25.9621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6116, 25.9487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5586, 25.8663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5484, 25.8445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.53, 25.7975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5231, 25.7729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5176, 25.7476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5145, 25.7219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.514, 25.6777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5205, 25.6393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5224, 25.6203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5227, 25.5829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5207, 25.549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5189, 25.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5153, 25.5186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5114, 25.5048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5056, 25.4904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4977, 25.4764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4912, 25.4585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.475, 25.4256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4655, 25.3866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4605, 25.3667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4475, 25.2805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4462, 25.2576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4461, 25.2369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4465, 25.2166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4462, 25.1954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4518, 25.1571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4551, 25.1414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4593, 25.0743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4608, 25.0592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4625, 25.0436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4682, 25.0319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4638, 25.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4642, 24.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4648, 24.9698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4646, 24.9368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.467, 24.9237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4714, 24.9081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4795, 24.8304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4833, 24.7996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4845, 24.7841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.487, 24.7685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4884, 24.7549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4932, 24.7242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4958, 24.7093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4986, 24.695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5026, 24.6817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5072, 24.6674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5124, 24.6534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5173, 24.6402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5218, 24.6289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5253, 24.6195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5277, 24.6092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5288, 24.5995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5294, 24.5895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5293, 24.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5286, 24.5646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5285, 24.5509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5297, 24.5368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5329, 24.5207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5381, 24.5064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5447, 24.4921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5542, 24.4811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5593, 24.4687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5655, 24.4575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5783, 24.4373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6024, 24.3956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6165, 24.3727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.624, 24.3619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6394, 24.3407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6473, 24.3309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6545, 24.3219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6612, 24.3136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6665, 24.3051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6719, 24.2953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6789, 24.2844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6862, 24.2726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6939, 24.2596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7031, 24.2458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7133, 24.2333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7352, 24.2096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7575, 24.1877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7967, 24.1597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8086, 24.1509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8224, 24.1431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.873, 24.1071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8813, 24.1003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8908, 24.0924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9003, 24.0824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9105, 24.0726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9171, 24.0655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9256, 24.0587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9344, 24.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9434, 24.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9515, 24.0348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.962, 24.0234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9737, 24.0116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9871, 24.0005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.002, 23.9901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0327, 23.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0488, 23.9674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0645, 23.9598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0801, 23.9533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1123, 23.9419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1428, 23.9358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1588, 23.9339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.176, 23.9314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2069, 23.9301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2219, 23.9284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2523, 23.9265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2673, 23.9264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2824, 23.9254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2982, 23.9237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3327, 23.9174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3514, 23.9144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3709, 23.9115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4766, 23.8927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4984, 23.8887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5227, 23.8832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5471, 23.8778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6272, 23.8676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7013, 23.8638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7262, 23.8639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7734, 23.8667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7963, 23.8683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8199, 23.8708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8438, 23.8715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8687, 23.8718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9466, 23.8736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9735, 23.8739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.001, 23.8742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0868, 23.8764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1457, 23.8812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.2911, 23.9017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3184, 23.9086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3719, 23.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.422, 23.9396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4464, 23.9497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4703, 23.9607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4933, 23.9733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.599, 24.0357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6187, 24.0458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6574, 24.0657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6967, 24.0849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7164, 24.0946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7364, 24.1054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7786, 24.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8457, 24.1658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9571, 24.2522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9803, 24.2724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9997, 24.2918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0679, 24.3628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0862, 24.3886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1064, 24.4171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.121, 24.4471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1507, 24.4983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1648, 24.5229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2103, 24.5984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2368, 24.6455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2862, 24.7357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2994, 24.758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3248, 24.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3839, 24.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4128, 24.9443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4249, 24.9686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4365, 24.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4479, 25.0165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4686, 25.0639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4782, 25.0866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4876, 25.1099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4973, 25.1326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5076, 25.1547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5193, 25.1875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5279, 25.2213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5399, 25.2455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5478, 25.2667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5683, 25.3293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5692, 25.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.58, 25.3709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5902, 25.4127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5949, 25.4256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6011, 25.4541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6041, 25.4752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.608, 25.4975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6133, 25.5407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6115, 25.5608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6151, 25.5833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6179, 25.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.621, 25.6253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6244, 25.6468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6275, 25.7141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6253, 25.7578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62, 25.7999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6166, 25.8201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6133, 25.8393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6077, 25.8962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5995, 25.9525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5959, 25.9707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5885, 26.0067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5777, 26.0576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5761, 26.0772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.555, 26.1408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.545, 26.1629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5257, 26.2008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5074, 26.2307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4695, 26.3345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4477, 26.3899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4407, 26.3993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4369, 26.4091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4339, 26.4221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4326, 26.4369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4283, 26.4541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3911, 26.5462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3828, 26.5629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3715, 26.5798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3597, 26.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.347, 26.6099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3328, 26.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3205, 26.6335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3083, 26.6447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2867, 26.6641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2662, 26.6835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.258, 26.6927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2492, 26.7015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2262, 26.7323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2077, 26.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1979, 26.7689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1895, 26.7818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1809, 26.7946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1729, 26.8079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1645, 26.8213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1331, 26.8734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1112, 26.8979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1003, 26.9089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0891, 26.9191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0771, 26.9294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0563, 26.9475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0339, 26.9632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.023, 26.9707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0136, 26.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9852, 26.9924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9769, 26.9963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9711, 27.0019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9603, 27.0136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9563, 27.0204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9477, 27.0281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9425, 27.0348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9298, 27.0459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9284, 27.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9238, 27.0701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9176, 27.081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.902, 27.1049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8596, 27.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8498, 27.1503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8231, 27.1633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8135, 27.1668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7875, 27.1725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7798, 27.1738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7717, 27.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7648, 27.1759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7452, 27.1797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7435, 27.1821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7415, 27.1853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7401, 27.1899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7376, 27.1949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7353, 27.2003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7265, 27.2172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.722, 27.2226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7054, 27.2444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6974, 27.2522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6786, 27.2663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6565, 27.2808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6582, 27.2764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6259, 27.2842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6154, 27.2839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6073, 27.2828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5946, 27.2817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5909, 27.2803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6002, 27.2976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6021, 27.3043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6024, 27.3398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.591, 27.3654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5859, 27.3726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5732, 27.3851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5654, 27.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5215, 27.3993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5183, 27.3993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5171, 27.3988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5184, 27.3997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5294, 27.4105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5318, 27.4188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5353, 27.4433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.534, 27.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5312, 27.4602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5231, 27.4754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5071, 27.4931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5021, 27.4964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4963, 27.4993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4773, 27.5065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.478, 27.5072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4814, 27.5117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.485, 27.5143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4928, 27.5214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5087, 27.5355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5148, 27.5419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5325, 27.5724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5378, 27.5961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5376, 27.6035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5404, 27.6433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5717, 27.6725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5735, 27.6786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5749, 27.6844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5669, 27.7002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5745, 27.6852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5849, 27.6807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5905, 27.6805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5962, 27.6818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.619, 27.6902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6429, 27.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6403, 27.7304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.639, 27.7462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6461, 27.7462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6493, 27.7468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6628, 27.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6662, 27.7466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.689, 27.7435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6955, 27.7473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6941, 27.7654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3294, 28.9126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3244, 28.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3221, 28.9271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.322, 28.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3267, 28.9121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3279, 28.9097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3425, 28.8993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3464, 28.9016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3495, 28.9024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3644, 28.9029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3774, 28.9046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3943, 28.9123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.396, 28.9114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4098, 28.9002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4203, 28.883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4215, 28.8822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4371, 28.8938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4377, 28.8922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4564, 28.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4561, 28.8959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4707, 28.8958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4696, 28.8954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4535, 28.8997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4526, 28.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4431, 28.8933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4331, 28.9036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4301, 28.9055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4212, 28.918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4199, 28.9191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.416, 28.9342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4142, 28.9353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3984, 28.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3961, 28.9429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3834, 28.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3819, 28.9574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3654, 28.9713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3664, 28.9724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3552, 28.9906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3548, 28.9927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3455, 29.0108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3438, 29.0122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.333, 29.0244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3316, 29.0259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3111, 29.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.309, 29.0332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2876, 29.0412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2853, 29.0427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2632, 29.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2626, 29.0531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2586, 29.0548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2344, 29.0569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2319, 29.0569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0929, 28.3546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0883, 28.3899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0865, 28.3912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0895, 28.3972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0856, 28.4223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0863, 28.4289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0668, 28.4502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0647, 28.4526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0403, 28.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0402, 28.4818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.023, 28.5063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0224, 28.5065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0057, 28.5272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0047, 28.5275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9756, 28.5411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9736, 28.5414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9449, 28.5567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9433, 28.5573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9068, 28.5553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8692, 28.5325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8674, 28.5321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8503, 28.5122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8482, 28.5118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8171, 28.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8151, 28.4799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7806, 28.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7797, 28.4768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7799, 28.5056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7803, 28.5073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7937, 28.5405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8136, 28.5663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8152, 28.5675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.85, 28.5877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8515, 28.5871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8729, 28.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8728, 28.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8973, 28.6018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9025, 28.5929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9056, 28.5851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9052, 28.5787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9052, 28.5769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9051, 28.5667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9058, 28.5649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9065, 28.5567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9074, 28.5534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9102, 28.5464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9108, 28.5454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9125, 28.5388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9109, 28.5385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9121, 28.5362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9104, 28.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9157, 28.5301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9242, 28.5129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9231, 28.5146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9181, 28.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9218, 28.5205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9183, 28.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9187, 28.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9033, 28.5573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9027, 28.5588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8928, 28.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8925, 28.5828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8993, 28.6112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8968, 28.6396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8968, 28.6407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9084, 28.6724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9099, 28.6732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.914, 28.6975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9135, 28.6967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9031, 28.6808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9054, 28.6791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9192, 28.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9191, 28.6749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9217, 28.6748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9241, 28.6716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9349, 28.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.936, 28.6466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9348, 28.6407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9363, 28.6384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.936, 28.6068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9108, 28.5806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8959, 28.554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8805, 28.5085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8806, 28.5055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8601, 28.4824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8594, 28.4798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8544, 28.4469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8546, 28.4454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8581, 28.4059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8591, 28.4045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8759, 28.3818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8744, 28.3809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8789, 28.3559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8802, 28.3559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8679, 28.3615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87, 28.3621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8803, 28.3713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8847, 28.3711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8839, 28.3726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8869, 28.3712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.886, 28.3725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8864, 28.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8865, 28.3752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8871, 28.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8869, 28.3837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8862, 28.3861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8863, 28.3875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9196, 28.4078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9202, 28.4089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9517, 28.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9698, 28.4487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9707, 28.4498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9872, 28.4694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9899, 28.4715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0105, 28.4766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0106, 28.4769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0336, 28.4896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0323, 28.4891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0541, 28.4841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0527, 28.4835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0517, 28.4834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0503, 28.4827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0478, 28.4785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0474, 28.4782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0505, 28.4594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0473, 28.4588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.037, 28.4241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0365, 28.4214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0383, 28.3815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0588, 28.3526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06, 28.3517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0944, 28.3409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0966, 28.3399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1324, 28.3444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1589, 28.3473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1886, 28.3556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.191, 28.3549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2154, 28.3484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2172, 28.3469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2534, 28.3246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2555, 28.3235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2588, 28.3027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2597, 28.3018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2684, 28.3039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2707, 28.305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2762, 28.3021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.278, 28.3018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2816, 28.2992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2836, 28.2986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3201, 28.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3224, 28.2936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3548, 28.29 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3561, 28.2899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3863, 28.2689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3877, 28.2682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.409, 28.2565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4099, 28.2575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4495, 28.2572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4509, 28.2565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.476, 28.2514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.477, 28.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5078, 28.2383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.508, 28.2374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5153, 28.2117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5144, 28.2106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4954, 28.1826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4923, 28.1812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4904, 28.1796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4986, 28.1638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4987, 28.1563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4987, 28.1184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4709, 28.1162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4698, 28.1164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.438, 28.0999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4386, 28.0997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4413, 28.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4417, 28.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4518, 28.0276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4552, 28.0268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4654, 28.0355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4665, 28.0327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4368, 28.0538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4365, 28.0542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4389, 28.0821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4413, 28.0821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4477, 28.0872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4495, 28.0875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4576, 28.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4587, 28.0905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4752, 28.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4762, 28.0982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4796, 28.1001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4821, 28.1001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4937, 28.0979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5291, 28.0794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5311, 28.0798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5617, 28.0837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5651, 28.0839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5843, 28.0966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5843, 28.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5523, 28.0969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5517, 28.0979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5258, 28.0856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.527, 28.0865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4962, 28.0787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4936, 28.0799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4712, 28.0716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4684, 28.0714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4503, 28.0874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.448, 28.0891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.447, 28.1108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4463, 28.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4454, 28.1189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4423, 28.1192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4384, 28.1218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4389, 28.1232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4282, 28.162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4268, 28.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4262, 28.1952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4434, 28.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4537, 28.2443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4525, 28.2452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4521, 28.2107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4502, 28.2089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4433, 28.1755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4463, 28.138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4473, 28.1365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4691, 28.1043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.471, 28.1038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.494, 28.0777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4938, 28.0768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4942, 28.0924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4975, 28.0927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5097, 28.0946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5204, 28.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5246, 28.1097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5275, 28.1269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.528, 28.1282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5275, 28.1288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4599, 28.1426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4297, 28.1366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4129, 28.1498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4135, 28.1525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4117, 28.1565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4097, 28.1575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4045, 28.1532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.404, 28.1526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.401, 28.1493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3923, 28.1412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.37, 28.1188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3703, 28.1128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3722, 28.1152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3845, 28.1231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3927, 28.1262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3935, 28.1281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3961, 28.1321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4069, 28.1746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4307, 28.2098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4522, 28.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4521, 28.2436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4824, 28.2709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5056, 28.2985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5053, 28.3006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5171, 28.3205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5179, 28.3213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5353, 28.3035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5367, 28.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5445, 28.3031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5441, 28.3058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5529, 28.3107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5569, 28.3086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5602, 28.3066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5614, 28.2848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5628, 28.2826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5643, 28.2804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5876, 28.2536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5903, 28.2533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5878, 28.2698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5722, 28.2902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.551, 28.3093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5509, 28.3097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5202, 28.3187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5197, 28.3204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4915, 28.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4588, 28.3297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4234, 28.3167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4221, 28.3177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3999, 28.3016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3986, 28.3028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3887, 28.2813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3866, 28.2822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3345, 28.2732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3322, 28.2748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3074, 28.2556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.304, 28.2567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2788, 28.2653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2513, 28.256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2379, 28.2532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2105, 28.2576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2048, 28.2601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1775, 28.2623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.175, 28.2629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1526, 28.2613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.153, 28.2595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1734, 28.2577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1724, 28.2576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1785, 28.2603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1813, 28.261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1855, 28.2636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1873, 28.2644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1886, 28.2654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.194, 28.2641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1985, 28.2645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2027, 28.2635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2151, 28.2634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25, 28.2594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2553, 28.2585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2633, 28.2557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.272, 28.2526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2746, 28.2518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2821, 28.2507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.328, 28.2559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3629, 28.2706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3653, 28.2727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3521, 28.2998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3538, 28.3022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3444, 28.3258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3474, 28.3278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3503, 28.3179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.353, 28.3193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3827, 28.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3855, 28.3047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4204, 28.3086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4214, 28.3116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4429, 28.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4425, 28.3354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4316, 28.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4308, 28.3618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4701, 28.3376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4628, 28.3394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4968, 28.3172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5426, 28.3042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5437, 28.3045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.591, 28.3006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5912, 28.3009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.639, 28.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6388, 28.2966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6663, 28.2762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6667, 28.2755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6402, 28.2807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6386, 28.2814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6089, 28.2729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6083, 28.2713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6538, 28.2662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6549, 28.2664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6974, 28.2673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6981, 28.2669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7066, 28.3008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7049, 28.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6728, 28.2859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6718, 28.2841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6756, 28.2742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.676, 28.2647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6749, 28.2622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6702, 28.2594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6697, 28.258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6688, 28.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.666, 28.2552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6134, 28.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6127, 28.2743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5811, 28.2554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5802, 28.2536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5668, 28.2296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5417, 28.2092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5231, 28.1817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5248, 28.1489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5229, 28.1182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5017, 28.0879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5011, 28.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5021, 28.0579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5013, 28.0607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4649, 28.0672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4642, 28.0696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4348, 28.0923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4334, 28.0948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4013, 28.1207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4006, 28.1235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3765, 28.1547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3745, 28.1562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36, 28.1829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3586, 28.1848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3584, 28.2077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3568, 28.2089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3512, 28.2256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3498, 28.2253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3456, 28.2275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3468, 28.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.346, 28.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3439, 28.2335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3334, 28.2402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3311, 28.2401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3155, 28.2479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.314, 28.2479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3116, 28.2474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3053, 28.2498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3115, 28.2485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2954, 28.2474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2904, 28.2458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.293, 28.2426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2849, 28.2449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2834, 28.2428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2826, 28.2428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.281, 28.2449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2798, 28.2455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3169, 28.2602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3162, 28.2618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3522, 28.2653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3533, 28.2643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3904, 28.2599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4237, 28.2402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4246, 28.2368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4582, 28.2385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4595, 28.2383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4879, 28.2109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4889, 28.2103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4856, 28.1833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4906, 28.1546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4917, 28.1544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5104, 28.1261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5236, 28.0848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5308, 28.0485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5299, 28.0487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5178, 28.0201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5165, 28.0202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4998, 27.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4974, 27.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4763, 27.9788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4742, 27.9793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4769, 27.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4767, 27.9982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5015, 28.0092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4982, 28.0105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5195, 28.0299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5171, 28.0328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4842, 28.0522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4803, 28.0521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4822, 28.0836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4806, 28.0838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4773, 28.1131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4763, 28.1136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4706, 28.1347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4714, 28.1343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4728, 28.1448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4773, 28.1516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4787, 28.1751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4797, 28.1738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4849, 28.2017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4856, 28.2011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4825, 28.2307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4957, 28.2569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4962, 28.2595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5255, 28.2855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5285, 28.2856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5511, 28.3023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5539, 28.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5845, 28.2832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.586, 28.2821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5934, 28.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6013, 28.2554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6028, 28.2549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6085, 28.2425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6105, 28.2434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6097, 28.1763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6106, 28.1763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6135, 28.1354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6129, 28.1351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6305, 28.1006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.648, 28.0684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6479, 28.0688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6656, 28.0388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6632, 28.0387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6735, 28.0087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6991, 27.9984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6981, 28.0003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6906, 28.033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6867, 28.035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6545, 28.0463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6497, 28.0473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6144, 28.0456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6099, 28.0457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5839, 28.0684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5801, 28.0677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5741, 28.0847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5722, 28.0851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5635, 28.1088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5613, 28.109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5644, 28.1278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5623, 28.1254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5477, 28.0957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5454, 28.0945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5435, 28.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5416, 28.0637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5577, 28.0366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5566, 28.0354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5439, 28.0084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.543, 28.0069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5497, 27.9877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55, 27.9878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.579, 27.9667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5796, 27.9659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6047, 27.9442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6051, 27.9449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6261, 27.9115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6264, 27.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6487, 27.8894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6801, 27.8798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6811, 27.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7138, 27.8815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7143, 27.8832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.726, 27.9115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7261, 27.9136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7173, 27.9426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7153, 27.9438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6892, 27.9627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6871, 27.9638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6499, 27.9725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6478, 27.9744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6199, 27.9947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6174, 27.9962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5991, 28.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5965, 28.0238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5917, 28.0555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5894, 28.0569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5805, 28.0764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5783, 28.0761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5585, 28.0889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5584, 28.0901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5529, 28.0998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5515, 28.1046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.551, 28.1107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5512, 28.1142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5442, 28.1218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5416, 28.1201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5388, 28.1182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5369, 28.1171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5333, 28.1142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5358, 28.1056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5368, 28.0959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5344, 28.0867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5328, 28.0848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5301, 28.0856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5373, 28.0527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5505, 28.0201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5452, 27.9957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5444, 27.9916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5265, 27.9696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5239, 27.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5295, 27.9756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5296, 27.9782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5308, 27.9847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.535, 27.9785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5348, 27.9797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5413, 27.9833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5355, 27.9923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.537, 27.9998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5412, 28.0055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5422, 28.0067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.565, 28.0321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5643, 28.0345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5604, 28.0693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5587, 28.0716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5663, 28.0936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5655, 28.0957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5538, 28.1157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5495, 28.1157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5244, 28.1271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5205, 28.1281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4893, 28.1509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4874, 28.1527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4694, 28.1841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4673, 28.1851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.452, 28.2073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4507, 28.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.431, 28.1969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4286, 28.1945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4267, 28.1898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.427, 28.1839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4257, 28.1849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4284, 28.1788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4346, 28.1751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4379, 28.1764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4427, 28.1792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4568, 28.181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4589, 28.1811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.489, 28.1694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4941, 28.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5318, 28.1499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5333, 28.149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.567, 28.1363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5667, 28.1357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5788, 28.1069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5795, 28.1056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6096, 28.0892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6092, 28.0882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6241, 28.0647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.633, 28.0354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6306, 28.0357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6454, 28.0164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6449, 28.0182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6601, 27.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6578, 27.9893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6808, 27.9644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6786, 27.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.695, 27.9327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6933, 27.9311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7252, 27.9175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7249, 27.9166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7494, 27.9313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7461, 27.9329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7472, 27.9359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7512, 27.9391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7517, 27.9397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7545, 27.9467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7751, 27.9843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7754, 27.9853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8062, 28.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8301, 27.9866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8295, 27.9845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8178, 27.9472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8173, 27.9072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8161, 27.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8272, 27.8709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8259, 27.8702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8454, 27.8448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8576, 27.8306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8582, 27.8292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8913, 27.8117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8913, 27.8113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9197, 27.8022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9195, 27.8017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9406, 27.7793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9404, 27.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9711, 27.7768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9708, 27.7765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9986, 27.7704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9978, 27.7701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9799, 27.7644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9779, 27.7649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.947, 27.7744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9453, 27.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9454, 27.7798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9445, 27.7809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9352, 27.7805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9336, 27.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9266, 27.78 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9185, 27.7787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9186, 27.7784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9135, 27.7782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9131, 27.7784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9085, 27.7767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9076, 27.7776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9057, 27.7794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8724, 27.7638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8705, 27.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8475, 27.7458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8451, 27.7466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8256, 27.7735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8239, 27.7753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8219, 27.8036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8209, 27.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7926, 27.8291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7908, 27.8305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7608, 27.8514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7601, 27.8527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7428, 27.8812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7415, 27.8829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7078, 27.8971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7059, 27.8982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6742, 27.9057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6853, 27.8925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6861, 27.8923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7108, 27.9018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.711, 27.9024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6909, 27.9067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6699, 27.9024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6683, 27.9031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6377, 27.9046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6362, 27.9055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6057, 27.9037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6045, 27.9047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5824, 27.9181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5812, 27.9196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5787, 27.9415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5798, 27.9427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5789, 27.9484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5735, 27.9553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5733, 27.9546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5718, 27.9593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.572, 27.9603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5712, 27.9682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5729, 27.9715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.576, 27.9793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5769, 27.9789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5757, 27.9813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5715, 27.9886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5708, 27.9894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5697, 27.9926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.569, 27.9935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5682, 27.9952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5688, 27.9988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5683, 27.9997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5637, 28.0073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5631, 28.0086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5611, 28.0108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5581, 28.0152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5363, 27.9912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5348, 27.9909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5178, 27.9571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5178, 27.9562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.536, 27.9217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5376, 27.9214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5702, 27.9204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5737, 27.9316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5984, 27.948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5994, 27.9493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.609, 27.9712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6071, 27.9731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6181, 28.0041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6169, 28.0061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5851, 28.0216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5836, 28.0236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5715, 28.0492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5703, 28.0512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5607, 28.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5604, 28.0703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5403, 28.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5379, 28.0964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5295, 28.1156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5312, 28.1179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5085, 28.1366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5097, 28.1384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4898, 28.1564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.489, 28.1583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4745, 28.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4747, 28.1683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4713, 28.1731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4663, 28.1785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4655, 28.1854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4674, 28.1933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4666, 28.1998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.457, 28.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4488, 28.2145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4474, 28.2201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4165, 28.2287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.382, 28.2605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3809, 28.2635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.339, 28.2915 ] } } +] +} diff --git a/data/spermWhale.jpg b/data/spermWhale.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9f5e1817dc4a3acd90e2c6f3bf12654e3d27b21 GIT binary patch literal 73816 zcmb5VcT|(x6E^xLCQ3OfAfQOE1`Hse^b$kwp@=jAfq)2#fb?SIfJpCP=)EYtiqcei zfQS(gP*5oW0g);o>fJfNd)K;aeSdu~lCl%_o;~x-%zoz?|9<%U8Di4Y($#`sFbINy zAL#E4qz)ZNAde#v$B!eApEz-xj)94Rfu5d$_0;Kqn9j1EJ9n0qo&7wwFz(;kkZBMEuh2{rhODl#5ExNR1rWnkhlXxZF{Vmf;Z+DG>evklJgx)l z#aKdod^iZAtD|=uf{F24pwUHeG|OX6^y5-OEE|ddvBSmq%!~AdN(teX^^UK^ED?2e z>=1Np*~)jR5Qc&iN>CUvFhd2Zp%k)2!60)n1_)v`Y7;X>Llu^2B*X++!n+X#7_gis zgs9V_t%u=9;|lmPx+`@cKA~?Y0-7lUs)OLA;g*OZNH~_A-nr7Tl)$8yhCyMY9ZWXr zYvput%=iL`6#>H|`QU^?b{zbbhA_mcj|@*L0Lu`>EYT257lT3AfQ4egFN_sYh=v|w zAc&781EOQ)gCK%FD;+!CLkxzg@*3DBs{kCSkEk~tH0`DnW~yU{36~x1#wgCu;U|gs zhEjHO2>v<(-U~56$TS2{A~wPjVyMReNg+B@WI7~f4zWRyKsQjgr485`gkgoju%-|@ zLPd%>e0|gSQvw7ZLJLENUpbhwpRkP)fD`IsQG~im4NI`5H3Xw~ zfao0w8L(T}ZUjWH59HA#U>W$*>X=aU4hVCgiV8SP42sFX#2^$h7W;WTwT=9@cjv!* z?l|=y#MU;Ba<{=YIJa@=QoS^Q2sAJc4${|0($(Q0?Az15S7)=5S zqO*jU*%>l$CAWT3*8Wr$v7y@9qG$}(&K0Sgu_^rctjwkmw znYZ?ASK?$MTQFURlJ!Kj=GFU?6w|#3&Z6i-#(4$Z$d$%%MUbSqUHt!LJeE z+YY4&Bt(E%UK7A0gb?c%CZOopp#LzS2ZIm{5p+dR0Y+F1!dk)$gqczZ8DcEO=*e7i z>ZFn{DKu2ILn?~A8&dPUlNhQRr0Aeor%IU1ATVU~rdfeiEK!&O$Wn~ap#T7z9s}&3 zPH(PJ0lNx+%Ll;=>Y%F_h-Pg#E5roDL399H5EB|nhbSdr^x4GtaC|TaxWFqkj-^+h zk4{rd{?qpJ&BN$9m6i4FU&S*~nTr!yi_5!#8FojnyZJJgPaa@QGZyU)kWiAADqjr=bIA`~Fr1M32Lvuhpfa z=;|!lQ2ZFM@&8x%5F1i2f}Q4AAfVKl0x9Zfp#&;o2ibrDL=Yr_iM=!l35S^AC^|7F zAR;})S41E91{F`n<94Lw#mt-@D(T zDn61YRR2P%)V$r4JMt4`kz8Z@B$aa@GSuS;=5>e1%CkTqhdEZTvxJwz*dcaC_6QWs z%f%RI8wDmP0FFQl`*1$UlmXif!5INO_@Jw|8Nnk6qYy|@b<9|xn1>=+HSAF?;33P>B&o!bDHb{&dP$;tU%Wt zqE?m)EcGB-@?>C014dzIh^d1rF(?dhNO(aZ3Un)y`>`LEm|t?R|4VAMpHuQ>Uxo*QQ8=Z$02vDF62FR}LqVoP zaC8A9Ef>)&#af3m7rqJv1Rwxc1_Td>ATeMiI02Xrf>^2mbRY~8 zFJt8XOy&-{w@SL>Rba}`K=w1bBMCXZ>sgl<#7~K|j4Dy1{a1SncO>(512%shg(b?W zF9+%r@I}-+;8fAN?U{gi7{k!vonA*5dsM^7q|%E7xo{fXyHb) zVE_UkgP`;J*)uEilM6rhcE8NcyYKpJ|J*cwpnSMbeO9q$?5u1Xd`bCeg%Pvc!=ze4SFcq1wJT|ZShTq1B^TJ7R z%L)|FCS@4t31&(F(eJ7U8;XwRde@jB90ph!LSo>rfVzbH@{qLKH)%q-ga$1VOz@aM5~*{}Ls z?r4(bWeTHr`_G*aW>>7Ga7rlw71h~qddt z6wepRFgQxVdvOmL#UVN*{1t|lylGh%;1z@*0)Q_A92S)MsAE3N|5<0KvT<>_%2D}; zRnGlSp)GPCnQto|+z2&l>`I?}_k1$S*z?@%bt9RY8-l6Dnb!K$7jI5UvTWX84ERdP zy`14&rg*`pbCulRsB=K}zp}JySh?FvRsWkEu1b}+;IQ&B$W5G*J^K86S-;CQ28xc*K&LLRp2C=6!?{DBx0Rw zt71c4ZTNL`vm}GwF#=N%oZO|t4prcw`fJQsG%E~~hJjfCSHywX@CpOFKQg$ys<>@z zZ#5Ucl+`SNhsbIE@vaI{_S)2Q$Ks(bwWq?@bC zJ#Mp_{R#P(Gs+v7tvPKG75~CVJn4BhW%{4`IJf(?x$eADq!L4U?p70Lznl%X8dG@3 z;Z<|rXR!KB>eys<^Nw43qfMsUr?0)=HK(29C76RqwjN~h2KiiXFU19NE0z@UAu`U&T3<1pw&Tw@0_7a`O+7olVtNXt~@9z5__$=eeVG=48TPrWkdK2Gv zC>)hfc1UgUx|H{ZzCJSQB%2@El%UHrODoRISW$E&Y`LZbJ@9 zt*|TS>bEUvxPL+4_0;DEuI(0ADSXqV)%+{Lfm@+x616$|RqQBAzS-og@-GhN<0ZtLmkSl9X=T!IgAeE{YO$cM(kA15x3{G zt-X3)Z0BF;oP`H(Z|%4bM@%wG7U%G<&HpnQCiRZ`GSRnOe%rM;M?uB*AV}pL6`dm- z=Qq@l>vTO2pGiEGYI8v@n{kA!8X7=JUo5;>Q_|>ZpSXPg%e0D}mpGk1grid_4iRIC zsS^X4-x5TTy(86;!>z?_)x=g_36{g>+qXPB?NSc6cl$niRt0#z6zrX>v09q_yyCG53YzDOh%9;l@rQSKOd?_2HXJ-<*`qz-Rcz=n0ZURvAxKX^_mD zY?UeB`o&f8MUstIprSS0?`F_e*>?1eP5FdCs^Hy#DE}Hw>Xo+LUW<^aW-^B7Pgsabn5Dv`iXj(zg8Hgs6TOFDnkMxtCFD6l|03bQF$Lv<+c~g*V=z`CbX#JVczTU@qt6x zu_>nz6gvw+)S>cfndIA@kDX_y$R{t64VLW=mS+q?W!+b|gU(R8QmZ;bZ+`5o+WMTe z+k7*>Tu`)7I?LNvHhpo!j(!5SDmwV?o_oLY(z=k+Ds#C^R%_e{m8s@L;4b6DZOQ}r zL+gMm#;!v zWTQBRy2~Cptvs04(GVS8IKOgx8&H6RgKk2W! zbMJ=k{i`nSCQLUKhvt)wzfR;xwAGW z1sWUMxvctvZ*{saw*)GFbpCeg-~-j5QI;%!KjTG$(Gtg0=bs>>?Ip54xi@b^Ht;-I zvZS?EB`dI@KTzTGMnZ5i$g<^J+pfBI(!b9J?B&%8KiUF^aAATT+yoW$ZiB#vgalrh zrmh`%HgEs#>&(ynz7_Oq=j7oK^zI#iwZp@|o*dcT4a?*azg}~>#bsmEw@>*x zI1l;V=}*m8F%2@18HPx z=&J;c>`B)4v$a9s)Pn)H42(Rp#-itl#tXlLdFrRP6)7vIUQCXAL_O^r-*{CreCHa~b~EW;^oZ|I}f&Q{2p%9HEF z8b90pr4Fuxx@u~yz6w`BW8-83+x_+x*C2<)JDcW*N+F$zegS5d-(T(o?vb=ig16@+ z%DeJU`Ku1MQw(MNT@-IA+-~#!HrV@>xXbz7s;WBe&f1)sT1yAdy;)%lDB2)kSa>+Q z*_czvEindW2Y4y(^~F%h3&qPn(+=#7KlR;kSKi22nqDj{`(rpNb7-fLWtf>?x#g4C znm_Q>-aawG&{g5Q{Rzem(vV^MDjsCG~Rcj1>D7cjq`lIhrQ|cLJXVw{7Xm z=A<;*luLip)o0V&S(X2#!X2bM=4y8pBb>wlw}im$Hyp>da()5SE5Q8~-`SZjJ6@}M z-W18i-B6{2Q1%xxk1wNrE?F6pYru3)sSR0bmwI3 zwVAlKE5vt$MvY6SsHQu&a@PA@?)=P@G!Bb+b3-of{#>*ddCX%z-$FZ#Bhq*D-;spQ zps)9p?L6yWA7xHx4^UTc+Vhfsw$w(=O>Or_oh}?)*!5gho>hChmY+AjVHI}aK|q+# zgXYQ~FAx8ykBkpb+RI(2-c>ysM@^KeBBY zYO?)n7rh_G+ch30xAZ`ZYE0$+Q~uRc)oy26`Q>tbi@JeF!%CiZF|VYen|#*j)Z)9J zH|d^@XC;_NT~nOop)6_ebBoL^QuS9C2yPtsXNcOcQtncJ6t+FjZR!vjkVAA znfRxyWrkOGQb}LgpOT(u{}#X68yFhId%@mc#8O!?FJH~dB9p%>?Dm}{z5UtK?+$$P zA5P?6KX-We{s(@wRrNyW^~5oDi9pWzD8`zQnP#Fx^M^vio8bH!VKqLiF!QzsSQ=*w;7q*}?_`*$q_ zHRnI0Zd1ATRlArEX1|{ai<1!P*na^|TVD?^rr))+oJI!N2X* z#(Ankxbm?93M%aZ&s9F|3;gB|!yQhAj0i5P-tJ7umor9ve|qpM(E2PwNoe9Gpa3gvbS(`j(RA(7o-|ixv>{wY#wU&$F*8T<)HD( zP@rK5v3K{NZENz`lIQEA_Fr4>irY(6v$xw+*M|K=l^6T^d!hD>Q<*c93x_^owJ(=` zA6xO6Cx)tYx)#|R=S#BXC0?*|mk{-o$*G#FmGtu^D@`Z_9b|IK8yu#z+aKHG&05Jv ze5t-JTVQHoQ=R zSYK;rJ-?~ib;@}%WD~vNDX~LtKkfSVK-pcbs!Q^d*UFPPRpXfh)1$wTTygJ}$UdH& zACKDSFOH2W*A`OOC?Orp!EY*deo~*UuJ)eRlJ{{fM<2*;i0j#Yl0<&nJci7+m*4fD zj~ZL;#s75sGHvhD8O+n!o|~`knO_u4eG+u<4e>gxmg6F?#2;>r5o6w3#(de}`N~Y& zZU6GH`@xDJo&AN>xAPu7xV~~!TPwGd9p*C`A6jeQJ14i|^mScD)%Iw2ZT_6sguaUL zg=^n7dQanjP%N-@pAXe8Om4k!{d#Q$?_1e#^P4B9^TFF)6;;go0IiO|25N?=a8p{j zoE3@yB?iqM%So{`cqs<{lz|a3m!NcDudUol8d;f7*tY|P1>ZdRnV#UI&Om#!)gybC z`dxduwC^D~WdB5C^mA7Q_j17+?9MXPuEQkn6NP7YdE00CwXOR_1)uR;8~miLEXe6L zS7rwB?Oz)PdvopFZ11<)`Noz^-01dzUZ{;}oizE}6DLkL!F^N7(U)~Dbem}Li zG-qKK5Tv-ZYrPPQYPes~pg0K+`u#wpd~P?)-J{Ep{ANb7c5-mSzO+BQyx~BpR-Zf^ zWM_AM;^4q)=iq?rTWD3MmUXbQnced@wWaIp{foiBCAIS`SAiBl(G=9nA-;4_x5lvY zg8>b=%CQiFrI?9{7z4vYeA&KFe;8Ty>|&^@^rW&UN#)$sy~&tSe{?4~_fx)&XOu+H zJgUPbo@GefsAkKjWtzA$8R%6WkmbJAEVFSYhsrh=ypwlac$YdVk}2Ua*Cp9GTz+}Z zAf&%MLC9^A`~1hMmj+tD0#Cf`I_+9bjd~gw`z_DNEad25s!Z9r>Of97)qBYIBt}?g zg>8JX@+O+;gpu|QFEgVCtJ(ndu~Bv1kp`n*jThJUd>6Mmy7X)QJWwmx=$62ybPI!w z1JeK-yQ&cj!A+4cI;1cRfg{{lb5GZI0EJPgp%4XsMJ3IA{&Beb+<$)0f5g>xvq`z_ zaKCNKXLYE4-VRNwd0AEVqrX;bY<_0>uz2xMH7;{_C-Aki8#!Nz!!@I9|7)w(wNNhn znHpE|^?chY$LdK{v(C-vsv**+uNJN6@&Y(ESF@m4Wr{Z#vCL zj6hE5YK^1aO;1}hZ8;NHooB8__^bwzhK=@v7e6;T?JwHbgYc|0{<4-Q$nb0If3>|x zI$Cj;4QvfWcL-Fd0qe{smIUcycFx#VKoxo@P#=cSjQu+M`=NiK-1*&umQ8!f@@4-o zGm3k@OFQ_oJiF_kCKH8zafdyKH-780HMTKHy&trFkf(W=_aHw#^q=-nwPM z@jt$hYbigRvsbGY#uu_uYlJJ%MM%B|OMpF|W~+R~xEJsG46nt%y;r2qR;yOH`ey!6 z_1XC1k3--43nH5imT*8`v4n#MCP3T*I)H!y4p*c}fCwl!MhwERv$7P>1s!kuugob< zfN0fvOO6n7-6Cb%XX9w&LSuhxwkr4UjsUk+GHf~U%Qtd@v6j_%b2CvT@Z)@~lGSL9 zgv;#t&e=ai-CGk3??^T5dP`J&d7o3OW0&);x1MbN<%8I0-~`cbB_p`> z&5gsxi*s_yFOn4|g%e7i(g&iOMrvPLZP~Yl+8L9B|D<&91Wo_~8E}q>IvgC(7)%f= zt*%Uu!JrXnR&42GL_HRE6=KHd#aDUeBJ}_%ubB?|CxCxJXGXrc+FvC9w0#-olSq;3 zBKaQPm8l(dJ3KAaC6jNQo#@^#r{q)a=e)C0b@cN+#p-}NG`8yK`qYxD%CA3b7kABy02K@?lSL3AY+z9wmYn0PK^`=fafaU-? zc*K9@aVAxrTY?ED9hA9YrXOgN{P#DkI7S+618U&30ywyYBWbt+x3Z!jkAdD5I=}!w zbg%?O3H%}W7=bAQuPh7r0TcEC`(L*K2K8vgcLWauT?hnAeRwIL_9|HjU?zk$wiH-a z3uVMti7U|%ilOqPDgVcv) zCE7p(1Oa{RDh4!N0N%C*g2IQGT0nyf=m4lQ0e=sf3j@BDFj(z z!63Y-0=#55wbV-k&!D{}1E?3G1F4;cSj2y0v|*SAP#TPu3_zcia0P7u1vnA3oPOX# z6QD78K&aw^@O-K=-s=v9aNR-P!+p1Ahqgz{Cf|I)Lx+!5@Q1FeeOyz!cCl zMQiE+hj^G6p!%578VGa{9m3;E3}~FdmKLxxq(cmVwFI3<2owUy%O;jo06Kth1qd)) ziGg4aFoyylJg9ymY(Vw`NlaGA}&g2*8j-rrrN3iyZ}MAsYV&E)0!|q$~K3zvqJ>W;Rw9 zFf|wg*2T3zOc)d$L=Tuk1iTxJ^21S_Cw(eVVxVb5Sg!!M0ATK73jU{BT)jgDZBAO9 z7UuYr0ZVvX0VaouIzW6t{fr>O7a##8%_PPU-VLThumYEZm^~o6G#Dez7T~*d%$Q?0 z10T}ZN_q$MHK2JcjR^vgkN_GyU>HDTf)~Iw2ypNOF1i8`O$jvqAI<I%RL2tIf? z{IMkrfuaLEJ`j#2iDqS(m?eWde)1Avz6GB)g1Ub0elVKjTXbft?3wH zS3w{G17HZ;NdgbX0O=vcA77C?gsd0pVoN=4z%v z=BzMBum|%BfElo(|9k?t5xCHR;HJ3&P8bl!1)!$}AO-OKG)4~S0fi_OMHixA$P7jZ zj)D-tJeD*kU?re5AOuhV22MC$v|XtOqJt%fILL^C3Q-0ov2IK79)*FJDxQXy0xBJN zg9ELr2m~|GAxCTY14nhBHVll`c!QvYItU2?!1DpiV~}(hCcqhE0ncwDkW_+(OdxhM z^H#uv*5g6IVTIwZVj4hy49vltl@b0LL`m2!KCmDgm5Okkuej2=uQ24i^;I z(}csjX_PMV>P-kqFOC8JP=uj(V02&xP`ZgC0NC?E(Cu?Ygi4$kh(_V1ARsU>gcF!h z$nXN776^3S5rCK#nh-sPoz|WOR-yyVbVwF}R~(R;se_cj2&O2p9r>41$A(OdtxJndKN0KjI9Z z)Kyl2OZRXNNNJ29R!AnP8#Haw!9cJ?!heUio&O8%C7y2G?WOlBWmF`-?FefnMHpFX zhLU$j(=`pLYLkqq`epMsiWo9iwSMXgmadEz+g*zKrN5i)oOc*>SKGLd^|pMU%&%QF zs}{ND^VWVlUvC>DpVcgAUSE~%+cSUsn`~&3D;{bicsObh{8~Z2pS#&b(|%P!r=u#S z(TKI~%0khDM*FIg{&tgcmdo)s9KAdJe<91kw?D(!nyx(;v#%2Q z3$e#NupE4c?wDPp#5Z+WlEUqdes`eW{kA2c@6JR=+o8u2zwPz)kp$PAH1DX3ePojy zuZ{~|d6sHxV)qZl_D{7(eSL;o{{=lI+?a)5Ki$W#k0sQuf&IqEuT%Qh)BHNB8mEMZ zew(JR?eh$KhO(u7;cbaxF_F6H>0G;OV6tL_kI#^mRe8aE430zLS=6yVMHzRM9c7ah zSnvs&Dapwv6~1xHX`34I8#u{}vP7fePcrVx9j1)qXBvFeiH?TJW7(Hq=n1~|FlCLD z+7joybjf*4K23k;V=jk`%$3EpYiCR?7Nv%N5xF@AqI9&i4H=U08TbZ)0dSGyuO{wL z(oY%2Og;YWFf^00w~&&`lScd?NT<<}Mx1p@icz|gn_)6gBH}C>qg`L*b^g|a(ogkn zxlK;mN-D`(f;JZK9Zep8Y0m7_vQa`Cc*L>}KNm_CKD3Bqs6EkqlC7ERaZ#dX=E1q= zbNo8>&!mJZ|0MUuh^VqPOUD`Lp^Dl!`i@Y$3y}hQ?|*X@eQ2_5dWR~CGx*2A-~r<% z_4W}PRiLM5AgimWm_sMgSVSW0!flkbw#PjwF2AA}F5L@_PLh6m24QFSt2)3>$OenF z(0W*;ZiC_(=OAZwBPl7V>J4`mDfJjs$ra}KlP6DmYOd{1lO)}_9&gDe2WyIDRp&>3 z|7jzzZ$DS>!or>tS?>DvzHi-*~Uq%(Pn##}awOr)DvyRH8J*iG}Y9`u^oSRaN7G>$k zKZZ~AZ&YCZG4b|RiBVE+Up-g*^?!NxB-eL_h5SnVESpSbVnn&p_8R)dYw@xdUMDT| zkhqeG$r&H%Gkls;SiGfTI0eu04{GY;a%$aqHayj*_U#S>W@`rA(r`yr9aCE!51f0S z=&TQ{%QX2V46(;3d0l)Rr#C%ppsigm{K7!TK$CcKU6Wp_hE)$`VX|C5I8YohTYDx` zN$t4fhjBS|8>xMh=;Amh$@Zr#3nq7(aAeo&s^BRR_31yYu}a=bW=iO_+z3AbKSzg1 zmKan|&lgXFqGZFT$&ZuQzdlNQRASMBSjwL|y&76w2Bt zB|`Vx8UHUEK`gw;3ycBe#gr3q-F%umEmBveT?=kPvQiO;X- zCQAk>V_z~L=Z@yNyq4;YczyTj=V<);SyJxllo%-`mn+Q~&Q>m(L=JWBo*bHoUOv@h^xlAB zI%amSaN@mFtDudEhKY{O(zjuY*$-3emmfU~78{lADa>JyTmD}B-2b0s^@Nd<8#w}` z>7HswN3-c+61q`f^p=yB(im14$sZ{be{*iBdkk7?fR zI=LRkZWVm}Yj7~CM!3}7#OYkUcQNm&5LM>{BfrvstrQMB>ABo`DJd+cJm)OwtN=FQ zy@_M6Gk;-*)DNp<{Q4l!JumY6hrNa)o&l1J^pOdR+AB9Vg`{^ny8O(V0_HN**D;$0 z^$!N|2jaikt=7uDzKlPSbx6r!o0OWzH~Vz3hDbj`6(*NmHVG~>C~Eg;7&K**dWt_6 zeJ}HDL$Z_8RN+1GRhJl*XfF2H={}OsUPpfV_oN=n+3|(P4~|im>BYCpb}RC#6HUsR z4W|5?nH~zoX>w)$Xl7RI=x#yBmT{l)ENN{nMgslxf{mSE{X@mlvE9n%dJ z!PZ(@PQ+vvgOQ9LA(d%Ow|GqYd0&rUK{07*1+>+vUP1n$u~#lmM34F|23O%2&CCvu zJF<{QawC6^s;+L%OZo@7O(S-ih2 zC3UxVAKmrJaqm;w5B*pz9pi|!jH=tJ3tuJsNSx^4kgxLGE%I+CX5(TzvN=1lgukN} zT$N0=tcb}Qw{`C87B=*Duv&~14g_1wDMf)GFx5ZzVZlYg zlUYg{JD~@|0f}!{@NIVEb%TdGiK-9UEVL!RUG7hmhJMcl~QRvF3jk<(r0h zODrbrhP{{i8>a?LS=*YNUF5#tOY) zU>l(+XOGTv35c;ivODLwDGRL7wUcWT>zS>^0(LDncG}D;d9A^6^XJ-_DE<4~SJK}0 zcMaJHX$cr;7t+;t6vh3c)l&V3=O}X?|2SCX$zH=x8|Moz#vLbkDn%EH_l9IB0`Gl! zN}P@EkocQ=WTiY>@4lVkjbx0kvirwig#UJxZA^VXo_oV@(8S#tXry7(D1^79N+(8# zl*QCXn#yN6H#hAdE2N?>CL`046U+I-#3Lao{Q;7~pE7fXSp&zORDhyqYY(L>V$AtR z_f_e#!Jdpk;h4LNO2ZFzKdU5S`b*B)-p|0jC*C{8O#Ra-{@5eXM;((kDs#O+&y z0@9kV)vq^ag0sf9g`+9j!#Lw-qkx%~g_WjP^SKxiVdf%RC0+q_tY${Yg2J|ci!h6H z!?4Htm>UZ|e~^<%RwRv4NEswwGskkK0~+s_OW5ihh$wESEJtt{*L; z^MbuJMQAuyTAhfGCic{y6hj*{F5b~3;-(xk*~Q1Sdo#ZGO(oyDoBxkvi0Iw^1{W=L z7NPok_cznbrd#etfs=+uu(KGRSoC)IM5(J=Zi~aPftHnHvXgjX>X?g*pR<*t?PZhY z;lYe45pS&vMP{5lBl~j+IcksWh|v$ZrLLZIeCE=>5)>(IH!s1d8J{Ih0pxr*pYs11HYEM>Y>T<{8NVIuy&fkqh%W@a(?QRLCTktO$xGD zWw&B8y+^Urc6~xp4TJP=Kg3EG-sXOFo8ORKFZSGC(T4@g1s4|uA_sjm)2`?#7p#kB z;)EObm*K_S7F{8gu`ugGQ-Dv54!Iv84&Q{N!#f-gOZDudaG%02OL%Lrg zdNTi)DqC_$$aE3wZB0Slt?wd%ufvv$?6SEc1JHT zezJIH?Jb3=(DhdL&V@H2K#QI^gGNJhZ$Fll?l*lo(x6*={3|C)fW+!yQuN$WDG<$a zZy`b>1(nXc)2Bid(2II8H!=Q&G&iL#d3(x}JNay%)00Kg_%GZ3rwTIzaTS!@&ZEnh zo4ZKm;@8V-YSRVz^*!C46BrcO8c=cH&)UfPqrS5&q@3Fu9&Y3xNE;)5wW{a<7 zV~HP?;^GpW(2dflUN$X_X6;IRg3dr%zch(CsqNy!R`LAL6w03q+D|lGUx(;f?8OkrmP^jM+duYJGCxgp7+Qwv zvD5f!&(@h3fso}Debb;^$vgLiTSXTKepaVSYgD-QB#qe`;zsH3sR>!(_urkL5pnT9 z^@T{}c0Kb#-*h-)U@S-Xb}mU8-_dZyAfa*j+5TwuZ{yUzkO^HXnzFY*T%oXBc#qQb z6;CwFo0slbTxk?>zOlAfJVAD!oB#K#fk*V?BGkDU!9?(TeyXR4C^RUdEAw6aV`<;C z*=u_!Ox$-a^>EZ>PUELsG}a%Gq);&grMV z(w)u9KNFSThz;j+Dmhqo6xhKrE%WmpR-WT*Pe-3}1%o&P{BgnM%ebPDzVlu|Ta=8} z#+WAE^}U2+6r~Fu>xl+I9@f%I=%;M_FKE4p6Jt;f{hH@e)iu7lubQM@Zt}e{o4+6LqJCs=%%XT+QHUz5Ih-bKw!9-`eB{hg z`A5xKs1OBiLo}I1gkM_tty$}2*CKN}C(kq+{ElOuJIi>EDDF(JQHt00n|BWjSYk^`A&}5!kYjNKBx-d>3 z&%*trUMu(9l$M~nCcRi;_qr93wVX9#LP1c8y%|L^Qt$5j2d62dcgsgwK|H$td#uRb z``DBR^H+$J2XXHx0(C~VMjGCCp9}TzpP`sqcl^USF_w`Xt$Ak|+`@fl8Rwc&a6y-u z*etddcAayZI#+rW{-w>z+1Z{R1hKJXm&6&abv4`TR$_7bUyVK$8eRi8oFPSf9qZ#6 z;$K%D#|Vhc2!ho75^c~y+-^R%t<%#N?eTUj+Q#H@A4x{IV)Z#CqvY|ZmN)AZN25r; zN1xW2F_bjKKE35BjJ+cv~O5xIa zF8ZWFN(wK-T=MAc+~+tO{<6%ipu3;>J7uF?)Lo4wo24CpWtwrYWa}$R^GpR?W48*E zoN~k`7xjen;4_?^U7YcbL=ciW=;KVwNqUjZtd8_e4=|Wlf?5P}C`84GH5={IC?lma;4MHxcP#f5#ockd>FP0_C~6{F=HfyO zQRGVAe6r+!Li&73-djHL9NqTo`lr_N#%6Gf{}f?g-g>H1WT4Yy*L**tXgscIF`r{I zmwO_r!ezMsqU4}Qn_!7h=GK_6sMJYoqpZ8yrFlQ5eh&@&-dbN7x!pO#IX`vZ*;$sB z3!SZktft15X=$!u;KlqS#WLWoWz7_ADlN?#7s)R@z_q@;_VgT4VeB&Q3n~6| z6ftRW*jLxU6kSi(fPUN(BUsdIwHBul&4Sink!cFK23Gb;4tEd z--?xt<(JY=2i9%yMjxc|jB3n@$2W?A=mmDdjg?^?7#b1Nidz|SeA0{*Fy;EQa^`-O zakNz0hfH?T{8Frtqwwg38>Q3lw{;$+CsXtfmKBqJHjtk*I6C9CQn8C6Q(~1XA`6uR z`DG+@1BojZ-O$6&AyzNlHyn%ZsO{SuXdp?SkwzOB0E7B`+ z@F}NhlC;3```pL-aZjy-a3Clq`Ij0a!5)#yEI7^KPb?%?~&BkP610hDi)1{C-vtp{wMgiCDqf5z;+Dl ztulqT|3Ws&E}BVga&Cog zEwTmnO4U`S=-6UGL4o18UMW&s6gXBr>iY{V4-68CxfA|YA6>kqT~!%m)vqSMi}{m5 zVyy_qjYVs+Ob?H)avrg2$)e6h)AQtHybI*GwbATCOP$$)dC>;FPiHe*8h<}Mju0?z!3@WhDFbGcnJ z)-K)XIQ2-{+gO)qBI@-Q68@tkEs3X>y1#waK%A}+d-3q7sHFMwM?}v+N9rebXXghi zr;1fn^RIJT>7S9_|9;9`&$;>3^5UD^`0eI^F@skL;yeSrtuq;>6fgJk4C@=rs_{K5 z_uf-7B7!1oDaJ-B7jRAZ_wN49HWINwOK+lMq@-L#M1(!@-9^f|RQa%=S~w z_fMGsCl}>lzp+Nue?c*GscOq8^Nt%6xAqyziX(XPD3hPRiO zvpQrWcGUWZq$XDHtu*cI?p(Rwk{^>SyQJ>C7MEv0rRQ8BSO3GLYC^gNl=qA6- z7Njuh(Ur(+=2kF>J_stNd(x9{L=@*J?9)QO*1qlPggbPLElu8udRM&S5PJD^*~6WB z)qI1)P??n-aydmc+u-mPui>$kqEKnobY8G5D!?@EdCn7?_L95bPN2_z6Hb9RutO zxWFssV+bY|z`vYf<-de6ali>+ZxRarV_%NJU}~_xkk%#MoRevs^wS|TmIUo0uY)qP zy+WSo(SsymspMet@I%qK*wV8XI1V1QvbbMb2yUUhIQgbbFX6T7&FY?;SDtIWEj$yU z=ast6njL|!I*{7>e5UBmxp9PK#gX9Rl%6jJR{DkWsS@*nMbk@-A(MLylENy#Rj;L$ zn@{w`NJMyw9v(emA?iYkk+c6bL}?j4!?@c6@`NCwt`8WlB1rjqRj_S=z+oUJI!{w8!4HdTwn@EXX$ z{n+IG4em+7gXemzd45CxEaV0*fY^(rR+^mYI#8Bmwe$=Hr zH&)`umY1NLnd+6iBV(s*Q*reaEXnxYXERQTGogHM)ih_%h^ibSNPK?=tXASP>GNp+ zV0p<66eS76*i^^Gb8UL=>1A!V!;%V(-?2WCwZum9R?E2u@BFxB^%rVP3qejNb(U0lt)L#s>m47+XH*($+{fl0Kx4P0dyumDtRC#Xv!b(TL&I?Dbzq!Q4 z6|kv5#(lY`QT_a*-EZERPuZ@6wNQ@-~2o{wq1r2Q8f zr1&eluT&46$~Ec$c`RFM>9v;5->ssVk`{eSKmU2lYSr{5mbG}F-1Avr+wNmYYrO%K zNefhKN>Q=uxKwrfy4K$I3qT%QqzzH=wOz<7`v%)u(|joh0kTcZz-?dLSA9*``t8#j zoVpDL?f;D;uAPfrlBf0m?DfRIP2@}3MDo^M<>ly5r=;WG?Ke0K&smy0*P*i%4-erImbjSgZDrGOB*qaAxFi3oJ!?U(aBe zlX5ms;UxiZni#Nk)?0h0*X~!vOh*#N#t>SJg#JbteH2y6!sm82ZZ-QF!Oib;R_O4Ae2$1- zE+i>MG0OFiQ_VZ*^#>w^$zq?EZ-!=*;4IH$MV+yN-iHMj0qn&_+vK5C1kc^{z05h8 zD#n6$OQ30uThY61lX5F5in{l(*FHqsGdz8gTCkw1(fMEcadIR9+&VnW+3&wC zxRA*ncnx?s9wGQf;dAcJ4V8---p`eeqk;p2!nZqS^}qCQ3%!rnC6a{ZWKVO_U zV)-RqZE^8p27Rt_M(y&hk*jZ}<6=x?7Vg)#G(O?C>Dp86d2?zLmyvN>QDOe&-$~Q9 zu*GjDSKJ5N&f8MgZx(ac?;r7bKUNuap)CAy7{E1UKw>X1FHk5giH0FIhJqypJK_ud zE<{i-8pRtc`2Lx$Xa2rlOQPEwh+{jqsu7beIM98N@-4dYLshpFUTV{r^VZSQ#$$F$ zOWNciC-3CVd+jzcI#q5%p`AvO$X8ldEH$s)OI&eP>yMFuhUv-ncTF*cMn7dovBAm2C_mjsn5en3}4z6(fS48HpbhGq#p? zjGTSP(UNFj$oV{NwJJ@#DpQ2>`F@jEG$} zM#+(Zv*MynA=jpr#nIi?pUV}uk6BmRFTQr=CVll{dp_jZIaE4QLlBbGP70*#d705rB9)LmN$szy`XS;qe%YRq z|EQYcF0exbc!3o(bPN|3U9=4UJKum(b0`3X<@NMwKrlsX8&8jrP;fllmQYE1pS0(d zL#$}+>;GTw2fZ%!KPs&BOjmH1aaXMUOqZR`$JZjzZ;KN-c86PwFQ0|KHCuibM@W2h zxb=@}b>g=D%H-h5b)|15D{HuhZ*gXP@Bj2wl?Kz!(5>; ze#kCb0M&qfoVTV7doM%%xcQ5E$AI^CZoa#hgwK`QFy_3`=-r^ed}(5wyN&Ir)f1nu|L@ZasdtGhst|5j`<&wr(l>Bm2+ z^gG|{AzN~n{mPL$4b=`iGV^t{qtl&USLL92Yhb+sBOA7f0&|#l6g13f8uxdUr8^L+ z2#U0uSfPep-TjJ#2VYQT(n_=JxsU-tbomQqK1jPRzXX<*}&DhvG@;96ipbsd>Fr@LIMbM4qgBH;G7 z7*)%%(Fw%@iyzuc%R`TFntmlGdnsG`|Q{KO(=zGGI}@0ZwPTJJMa4bzQI|6`Nxkk5}^u+-Xpye*|g4zp#B_VXa`o{ZW< zGX^hD@toG3IWBSp&!m}lTfA9m;=2~9Cnp(}KLYse7RdeEBEX3(6A{T)7dZP7ks59* znRA}Ly$dZ3y-{O6J!1F5l}U6vtK?Gd!QihfG3yt?zPRtIHb38gtpIkQX#QNQI_VwOsL6FrkBNmy~LW&n$%oRttHbaU6$s9|>}$Uz2yRO6y0q zmM}-(&=YiA?$cK=^h|B`og+i*M434(XOi5^-HNo?s$lN?AI*u^|QjYK-@_Q zcm61&E>!2WJ4-h_HRcJA;a)8_{0nmY_@iW7>&E^H|7d zo_y`Pbs=S29HVi%v-TINq`|&8pCQgL3+$)xk3LOhU9>qiW<85n?zPF5C@#^rJGcn0 zC>sAZ9-&HLi!6dtEx0&`7B?6q!gy{5mPYhF(tlp@wADFeNqFTl%fj`mGwP7;uWOd4 z)6~a=EG2!idw_t-pJyFNSjF2p+;7+N! zmfPZOu9)Yos`#sazG$)S%bWNx=m+GAZ>eo;&fb|As|JjQe++iye`Hxi_D$Xix2!i@ zX?p$%*S@)y_%fF3U^JkqrgumoGWT|Ot22@yueqC?8cVT4^QekkDNd%e<3TsVI32nV zpTZ6jA32y?dpuaP9f{MoVr>e4`&>sGM9$qUJ7{B2*wWq(xHV((k?Y|ZgS3%;Q&V1g zML^DeHb$d`yE$~}&H?gA$%DGqF><)=NDMHfgxg&sWlV!q2=b)h(cONJN*D(C`a$#t z6W#~rm#hHvpPZjSr97Wg*@{<~(bDSf7&*->6l>kp7zotxCq`c#XDl|oGI*!xrUXFj z+Kh`Q_W4a?D~_MM3)f4d8ZgrxUs=FU&U1ej+%&e)us>-35EDV#y?a+Q9dEY~rvAe| zaDH^404>1u{bE1?&TTWa{IVvX9}U|P3Y1;etU%B0KW_3@KT@ogf{m{+$qzY^(0tk9 ztYA+Y+i|K|FhmBW1AAr+#Y_=4dc9D;g#~o)tWKSM!n48=L1lE>67hB z!AGS+kGRAM9YW7b2Xf7xD?Xxm9U{UzJ)M zZnM*6zJB@y;Oy+~y+$Yb5RwUY^R-JiL@sYS+t`H7ym`U}co3St#e?FMxm({GTo6(m zdUu{^0s0TwgG2DnvV~@Xh}UH&bW0lc_O6vS^1nY)SGYam0A z8~ewSk}_8s9c&*vDn5R5Vz2Cf zY|D%75)BRQMI!${Y)cNPfz`Zu+4}#DZv ziaf#+aOU}$bT)6h7U%rz#8U~JQ;?J7?x|v2#&sy8Qr=y{VUjJi!gT$tO9XEH<0R#* z@z(K<&Pv>3;LI5j1B)+H5V!6nl~-8(`S}OVhbSXwR{U~+emdw%%f z_F2!@A13k|JU+m8?ba5{eF+>9c;+3`mgCH{j29=OLi2Zx1Pvp>YD9AmpHzGKUEIx9 z-i($W=S4NRqSzyg_%(lkc`lUCeNpU`dTCKLuw2yXBN&%N@F!k3FP1jd`DpX(#A05w z??aI&##(F$T{X9*)3tv-Z2X~VUNJHkyJ42aQkZ>;ts_2zkNveIh`V3t_1l4=?c{}H zOOW{ayq}D2S1~+`H=guBm_T|4xBW*oVzZ1*R9qLm4=0>fF1$Q^`leHsTV6L#!$))Yov*11|{wsM5wo zh%BLlthp!M{NQNn+Dpg9HLKG`2Zx2z4xxA`BP?-dxS`1 z4CmZ6^4sfP;qnt-2xDOf;F<?A69p zmRE1HPB8`kqv~SvcT9i+iQu6Qi8ZEW6!FF}-!$hpR{QDH)|}zr-{Newj%9TUri6c& znV5sEgla{9$LDWO*ibFh?XeW@gI`3VkYz&yFQEmlho}%RB%%}`KoIxjNdJnU{1M@&bg~` zZVu@Y!>j(7EB*@iNI?@u(A}#cU;P$?F33h`y5Qdg}W0Slu#xE8F7%QgkXQXi{`~#M&M|`5) z{aNpg<=xGjU7*~f#eLLG9ByA?W#qx8c;C|Qo6V)oeMdXaS+GT8W`OP-NrtBvRk^sY z?sf+X&ztRwQ`~m|2S>t_zj#?A1N~WBV$@x{{3(7(8p5V&>mCKFx}jG?&;;@#uduxo zh;c$Zici(%VVaqLkyD42OrUiM1JV%GF2_qk(AhOD#^C5$+%T z7~&@rurll(8k-;XQPusnc{W3_ z7+u$$9Z{euHtz43LH(oJSI|A8F#@Bk;@}oylR||Rv2lH?c<`UTnG4Ei8c%iYgLiwD z!lId|$zl;%Lor#Cs_XGjS`Aa^Dp{Kz)=IEy@KlaV8<0#s9$aG)c$`vOmI0RY9(rzc zdyt<;x_HCO#8W&Zkmxu1!@Fd_D|o<{csRTi%hsURl9TT*hY=i%wi}hIa+BA$Q85Xc zQ?*gq&5h8hkETsDNhb(^(SNYXJOMs-T%q6&oF&SD4XLM)Gf6}`6F9Q@-OPJlv_^ws>Kqlctq%) zXwmo`pi(HHa%wP>du%m7nsW>d%`_&tqY0!^`c1;BW$YG44L5TxUy8h*5B_neO@2W? z0a7?hZAQqkr&^5z+IZVqDhH-B9|~`EqNG!3Y{zmo+8hZPES9^D2C^&)O+0fF!+>Q? znl}wuA4r;e@(;VO3|+S(uYU|rLV83_$FRaqSpt_tQw;7H=&*AmocAOOxaa%ELH>JI z2IlF!2^Q8BP1n7V*=dP}3;W(s357~0#kQs!w1I))yd#vz%@3Z3i{YXhKLHh~ogK2f zGSlfF_Yo8kPbh5+hc)i+VJ!mZ+VuO1p4&3Na`69Ez|qq$Y3dx}ZSC+$@-V#?3PN z^~z$^qo4y-C=E)koQ|f!^}}|xjtZpk&z*ljo!*hQdsqP^21aw;iSwc zQA`2)R@p7N49W-xPZVES!fLFrzs4~te@!-La)u6dP?C0NG?*1M5g*H(O`#NS&g!jIDRpcEaqBA zy~6by;TxHe*9omb)BD!`%^CMJB;rBi@A2l=!}j@k7c`XA=e*Z*h8`!4^x&cPh_NGa z`4Qvb+`LE+vfVch?ifcv3Y|fF9-aul`>rPP4Y1bzkLq~lcl+7y zKdNZt&GC&`E3Qq^xLv(}RC`JDrvl|2MzS+wzskotXm{hNh4vWLQABpM=0<^4t^pf| zcpwU;q+@xM31CKEb=9=zi)4b|<-h*1U;%gZzZS@0!}Fl15HEkEGVR4LIzOpd&3Nh321w4^ffc z)~I7}8OZ$08o)%{eJlm%RaH}FBno}{L`fvX!~l&Cll33s7(8PiD}i)i?#cxLxe4F_ zMsdPk(+ESnBzi0#P++|ke)h@(_ZSi5(2<91>U}6?FLeW+k3|qBlW^=)RvireI|+8@?nCia zsYqCT?pUrF?1)jg$NPC@QIR(;BU7B%mpp=4MZ2Y0@rleXms9(Bw& z*QAXX5L7L_eKT2!-58?l>dn4cQJ8h|@^yk)UUwuHMFLl{z|EBWz)3qt!rQfAMC?%@ z*h(6BIJMh^pq(){y^>sLvaPzClLtml-9d!T*JfO=bQ%Pyst(~USlAQraoP_dZEAy? z>GGPaZA??#ZPKt1=r60uOQqw|JOyQS+_0#+{arh|Jnt=dG$n-MgPmq7qhCVVhzwVD zC^~(AAT9%tH%vD#G9+x{GuQ^jOI`~4$=pIRDiZ{8f=P4Ai2gMul&808)xITpK5c03 zfe0noz^B1G>l(WPVKb<6&O)WTWmNROCt4pYBqn58P{i&%x?DF{o`MR=lKwJcr| zqBWqMhRMi$YG4SZQ#LUPyM8~&P>|sH(~Cw3;+@8qpnHfY0%K6vmD6jM~e0JaYh|BnV79UGjFGXZ5T&Dz55(lm!!GK6 zA__e03A>8Q=v~or+GWw}IK!bsKCoGYsKIOWo6D@l#yR*#P+@{{y{C0#8=Qg%?4owB z@DW-DQp>M4r z_W`VaBpCza;8CR@ z&_p^UzJXH(Vro{pTBrbWK?U@uDJxXqS_2EENS0bi+$!dXZ=CR$KU8hk`5X`~JQ8WQ zd($kf;pg}mF)UA zqWINusbZmzg!B1w+xmu{$PCUvsFOfY*jH>=bEd;N=9CqT%1Ljh#X-BTa<0rhnw-`L;ad1gS7?C zEyr>>(U-B*HwcfCdyhb!R%mgkihR={pyNScaa0@+z&0y&ZJejo}5i!Vn!U~o%c-Y3%C_)eqBgm{e*HZbC)kJdA!Ht(A z)LD~H_}`4=IZatR6G~QxO-hwjUqDOmf)h%mD;B#!2nlJPHls*#!vkYK@@~jREhr3n zsEaai!G`8BQ=wm$#XC6PkbT!a@bVbd1?A*laGEZ;P+J=R9VuH9s@U?TJ-Iw!O?x}GGs{1j%hI7Hl3=V@eV3U(H3 zVtQbP&s>s8wJ@;zImi4r?xmu14XmIy_b)IkO4dK!jsAW`9rd;Lv9t~TX!<<-&D6k* z{trBuv|oL>{rrg08QNZvMBy8Irs?}Su56{3Ir)d$3=;Nr1`@`0E9pu(K-PBwjkLkp zChr_~YjmIhlt_kOr^fMWnQa*df^=Ybq||rDsvvs>Fp#n?vUin$DC1##Y{;QEKZV~i zy9^g}{&jHRHIit1n+pyL%Ipw5v_eOUj7Z+3wQGz`5=A%Z4*Dbq=GlDL+2+thP7S}_ zB&e{H=e?tBmpTl+OtbR)r<*#>P{oc`G%+I(lJly5A-ZU`SCN&wnI?)*&6d6_U`7u4 zL*G~I@odhAvh7AZckm2b)F+Vto6G5uwHwIAMtNg zTq6oS2hPYf$d49-?rZJoj0A?;kjI<-ObdXU{R#}|qQQC5$EYj#z=VDd(sxB{a#*^e zLlpD?)~4*1%D@62+vDFR)cTn=VuRRwTxe)(4OGq5w>p&`XcK{+05HvJH(u=wvWG=6 zdF3&O*)HHo>7CggFE@4-Tyrgi_QXfUC=BG16lLmQqEu$#=-5_qdS9uFZEs6WKoU)Wi1idt_HltO_GZ~jeco*>% zE84T6*^HFAxiEv@xDKO&8HK7p_5Mutf3oaP$*BBCmECm;v}1Lo-=15=;s-fGqI5X1 zZE$N!t@r+T-D*h)f`T7PQa3ot6nu8Ay!))O$&B0#jIY7>e^=v67eKO|^5CY-2^rir zj3E*xxA+b~h;@#aq`Gt;hDrYEgIf^o_C8m%INJG{s9{nMwBs24WJv}xzQHzBqM!HF zWTFI2$HSHCg&N=!ViETBn33jq!LC-u9`+Ip7+MrfKK4NYJ?!7e(0FGsSB{wBJOSM%*gRr!F1IF zEqD4GF-L+;_TB{cOZwc__g6*qf+>FUj>KE!RJ;1K=Ymb#<-FK*QCgSmLyRZzdv7k( zW-LcmoOu5t{9Xezv+}Uks0~QPD_SS$`wAHu2l_9pig;HU6|++<&9Rd*H(#3@Yi-o` z+h<5;h|qTXp9)Nf1F!NqB)BNViw^yAmS|i8OcCa&tt#he0ikUHOs_Kbu0;WCp`KP= zVnN`6ukk6;ELgn^na*FdcG*WHzEDwpk%ERO5V@WdJ`}W&@F8D4PrV#vC?YQ@o9c5X zS5hW{8E#i~0`8R4+K2JTw4lYYSHyXWFTYOwFe&E5<vDuy^#5Vy%0=8inb!r>w146(Qn<^?DTpbCEEfmyLl-=Y^o@ zrRY5%nNjky5BX|&go>i<;HJEPVeb2g^#$NNmE>fMUA*1{W$^`5I*|6 zD^epnU};F+By{)+zdEAur44x88(C6S0*NXc`}}R*Gtn_B96m;zT|Dq@80GRhht1&c z^HI2~kL6v1nIR&4a5C}6zyYtkb|oQ-?+*%!Rdq z@j!gxF~d}Etx62YE%g>j!-<0oyuET>uWAUt4ktj3R{Dl(q{LL= zGl7=Y<^{YhFx6ybB&kEM79$mSk2D1MO#i*;T^z{@DLB&)u!v#13w&^|&|0LH)lA1E zgq-Yk)Kj^00e%}eNRIPWLld6MR#NL@V+AtFR!&rqH8eD(D|_&V-G#dOJ6Ca5?(|p zj7>D%ip=K!g`RF>6@UlRco46p(SH$*Lx-j^K235ucG(jJ-r99nKzH`ihO5MYu{AcQ zdWSEaulB~*!cabxtJ76_2nu?n*uV2<6Lu~$|7s<$&4%?V0> zh)^#Pf_aI8V9ugD2<)9sLqSY|J@o<$4A!-@0W7YXi>S9;3vTZ=BOewee01i{c$6*x zU@0P|xiL6;*rbh>$nX`nC8SnFdJ|AKn>VruxWKL zYJt#o6RL)rXt6k?2~gbJ&%6xX3pX)&$0s1D$Tz3t`B~e+mr! zO?$t4iC2BPE(@w4&K)YxH)me~&7?(Pu88hg@(84m=EkZOP;OPvM^)S48k7?;wi_=x zy055D5En!-zbs!^N6wB%=qrwf#V;;bPw}L|tQgxk*!40imH5oS@LseBNK*{#&C$_Z znMPluoc5Vz6MoHP%G^8_UJ!!o-N%8`gEue^r(kujD=ZWXyrS48T8ZRz=7eO*9gx6yfq2`n03+V7 z)v=z_f|4a6!*pG9EKiIT&}=tbUz-Obrapc&n2Sk8S|=r2ZsEK3tjK$Xn^9wPDaP^i z#@KZXcIf?caLtRrESK%NRSBR70+(7_a68jX9+QC4bca=q1|9L)x}c>Ro+60%czB~9 zwGL&}FfO#9w7ZQfeck~ShOB`7?ckphK7x#>0z|@9`)6axpHd9~zv<%-ycU_){p5yR znOk=RwqC%xio;zUX{3;WGmlc)ru;*uGFOL%51DxdQnzL4nlr9wh6%q(xCS=lK>X#) zH8~rxR_Q(kyy0Q?D8hF}>U%QELWZDNn*)OHB3*<_)kZ;YI*U$c= zI&zm%J}ZRs&)X?&V@D;ol+`(cQ=RDo;6`blFwNQGA`V3NGv4@nNv{m;y6>tPT(MF2 zaLt9>vzox>FD?v@s~J83M}rIQ5RkIk3}Kx~E8muKIhI5SwRNPXPt4T202#oRg2CsJ zq|fF(EN4s&APo>zv^W?M_+84Ry>H|lvlxvd;U1`>3)+I_V8VBJsefiowK!gr4XKv8 zd4f4V2fSf*%pI$)C?P-0N(H{71t<|*IEP-VYN1?Z2r{Y#Lt?cV!4i#o`i~y?1thE1 zctux|oau{&3_ip^%>65hi6>TxouT}TWimKS&>z3zT=vAR12b3%v%2EzA6b*QB>D*a z3wv>gm%oFOsJ%a<3370&1m6)`MXRyZ!K9`5Kxabb+Zw~kL`mt&2W3X)EnZQA{k@w` zjUpdo7z+hQw}J8w@gpOu)k|h`fQrTpLNsuWqBpL_dIIiPHgHOcP-m`+q-4Hgx`+Np zRZDtrBb?&6BnKPw+t;{pIRb^2y`p1UKRe#xHIf=Q?yaT8&53|{MPW?R{RP^%-y&>= zS&tElt1j9@Zqzaz^S53InUG2>66?qDT3#q)J5o8w0m*6S6MnVlFjY#da7#57aA?Pvo@iDh znQyq|Nl+>3fR$Ql3HcRDR1e0}E~|!UAk;%l6)w>)plDeC~-Y~ zH}rIZ$xxf?ONK=FJw~PY+wfH!-M$Dh^Q~O}ZM#whl$e(QZGO??z@*YDhE(na>h}-$ zuz#NMmQ+f(7=;^bV5i>_v-Wrp}WhR{O`_z3@|J_U(8Td@8&oiCYbGqOorCzydMv*)^F;J%cVwzddXhi8b))u6b}3gvANClo0aG01Lt>9ed>XGFhD_ zjF}w2XAZq$s4K{9gQ)pOl_xZHHu(K287%R%GO2~+4ZfA2AtK@zIQ9(Bv1$WM$j3PG zV!L^h@^*)R4-NhpW~O6@`>KvYH!2?4_be%?X&`A&_$td!nN8Q`6r?9v3z|Y}u{t(C zP1=yJ{3Rs{TtLYBYe{RG$dQNCqW-Ckg+$v_Pen*uVx^R0NUrImeW6!3uoP`}AZv>dDr1!=I=Nr_o5q*L7?Qk^Q=0Uw;|6Q9K-;kA zwDb{od9JGTfMO+LD0M}H9}LmXB$muMUrtqrvngE9aWk;|Tbn2RizG}?9>P0T84?qT z_gG8#Tb1stxqG?n|U3 zxB<-4#P)xhrPmJre#|SNSX^kYYW<(ycGch*R%We*Y5k?!*w_8b~r2+Tx8v^fSb( zgCP<69{GD!=-&y^n|-e-@vD={GP_Q2EPxeomuoMz(QpzxY&|GySGopeen+g@d9Vuci*Tlh8Tt#~iE?&v=O?IBw&HG_sxb88C zd5offXpMvztaZOnHAp>U+(75B2xFr=9K$6#Hb+HyfL-JHtczC+7(F65o68YtR{b9N zL=E#70hpmp0Smos(B#9GX%?H*k#`q8LP`?4wcl;zxP$uS$ zhV15&;pUCuBc`9!fv}L#eAcW|C0WQ=_V~K!$ONk~lkYrZ@<)Ymd-W5E$L_G zRgAq7hRNO3R`&jk@G@E*E%%Oth!`r{Dw<|S&yiJ~3F>^!+#fFdNkZ{(JHT$5SI+N5 z!`Brd-N0q<9oIV6D1jacZ`;ihih-!$q)tJ~x_cDDbSj$X$;g*E3*hD5F=7i6 za+bD3xv46YGQL@$XME7XhV-CUujY32B9a7XRM%LWL{aBUo{qFa(fD>mkYde$-cra zWTZwwVx!X5;zb#5VN(TjJ}%Zr5}rd*G-SBQ^&Y5lhW`Gx0Y8F@{5)C$`(7Y%qYdV; zIp_0iHNh(&EcVwkOU4!0wOo>}y^{l&eW+T*&nJ1`BKvsWijs95e-@%oAMT6MC(~aN zy6&MsvVsvfrTBQs>kNWM&$&-Y?(1s1WvSoGQe8u;ag3timn@#FMG~Bry41d|3L;2r z&F5Ow-_-t5B?sSH(%czW$8e}G!R?8dDkc|Htx-S7cCB5eOM0Qa^Uk@hzL88rNQwrc z>CPDs#0Mj?5;FbWfBLyQ#_nuyAAP}o3r$F)Xox(`;iu1AOj z`uh4^cg7on0Q)i|@P&i#mDdTOd#R)+4C{i0Wv|zE6QjnKohUvQvLi%gk3z&x1kpoo zKGkSrPDM-TD~1{HD7j<~CIqsgM1e4Hgm>8RVT8^QR?qroU0i~sXR7IZOHh&*J zzKUbbMyX0cdkH$p=m>=;-J25WAM!J_=!T(YW|d5ejo^VFRrE7$%h{s1tigP(biRqr z=E2zH&Fzb&^Jca|n`1&{D7nz#jDB{=9`-Ekc9r56l2X5-+A&xRFZP=R%_sv&9q1(h zp+J2>8|F4H7A=9)gFEHE93qGFEEzrisSsL-Xc}sNbWg~ZQ{lH+;3B>Re zRuH!5cr%F#Gmg>sk1 zDezNVSdTS59u*x~rdw@JCR);Rm0fRHK>VXZVGuDjWwwwUQ*@*SajBf97!#Aduy?(- zDF0qBP=B*=7d2hy3wU6Tvmr=I_HZy7Rak-EzaHRXk$L9EsQ2s|TcrJo>InMhO}Z|x zH3<%hnRZbIvvT_DSfZ)lPv$4G>iTVrqOz5fIS*V!HccIfu6%pek*Y<>#ftn3H}VuL z-dR8vA02r$yS!y)Pm-H}Qd$uokz35Qyk6d=wya@m7j3kSw5!2vF|_UhqqEazljbM~ zYtqTSqy1%u-?Ag$RYT!|I$QoK>^Ke21#lCSiOt>qBz1*QKRbPV`27A=Oj{6}zYWKZ zw1LC2evof3yjhv&J;04TE>+5#5hV1IwL2Mw#50g+RpNu@-t&aI6X!OH2umO5?Gwpa zV>b84`XsL(LT0PAqu|9>tT~6ZuhyAv-}mqT*pUxx)Us#>MA7c%D>0C_&!$T8yziB; zOO_KLeo{<2Bex~KXWut@7|VXpJD=i9|nXa%iDXG#qf_qJ8gmyY1RO25BWnt2hjgH6pAU%Ro3* zW&2rUQwjX~w6O*H@`K~=wOPMn1^U-`Pe@l@&%PYm&a9kV*#?;uD^7DD!Vw3_t40T> z$%U;@zurB!k&ZfEzQ)Zt{XY!x2f|kv+7S|HE<*CX=>b3Uk~J+v`L;ek5ezhFyPS*& z9u|OD$x9x@zSyE7I=y3StOQEm+r%a3x>-)`#ceaKyTkuc;aQ_jX|?h2u_}+edhUWz zDg#6L7d)kQ{KII~gbS-CIngf}ATtCZWGIvts87prT$c#?G`Xe(nW9lRtv`&mqVIVH zKq7QN7|En8p+s>d*ejIoSCy{aM)v-KQ-%cW@Sg?ayrTDC4ztf~RNouPveW-r)%|{#;NhHfYQ<_TXHd4G`J2ossQqSO%-Y+9(u9cgMra8{N^)(y;S7&1*v+qAO z@OT;4D^16Fba!acCtqyyUSs|(Zn}G1|$f zeUd3Zf){B#sWG5mL^900nz&(~%yypocg#kJ`p1^NvuUvMd)uG9FTL`0$STW>RNNZ} zc}Lz~{!v}gr-G=^&xsy&Peh7ebODv};ERfaqoYKjwy!j^;lBowGfYh$-7ggS(e(T3 z4xQnWA?Dlwv z&Iy@y_a(07;9A5T#N|#FhK_5(~U{kg0ha)d7#GT5vv9$i9qAwhIRiWMA_pV_vxS2jZ8wn^@DEk0idX#g)xmun3GnvK5 za-pfN=sa0JFa1Z=OU16SH>wrAlMr{d+%zK*&Y<#-s`XX9+RA92#BHM;hFO{H+s|z7 zZXNynYw8luQ1J&hZQG)KzF!dckLvj&Io&dK>9*tV&);8C?t;XwYqtU}-bj(5u)}|b z?ol_mS|Rjb3(sr?(N48zpxJeuG9mr9Z6=W*jCC*|EIe3da*-X`tMS#msfD%oOQgqr zDysWGr`*()=XWlAhco0~*E{}ge7#WdBf{43E0y&xY@!I`c5KXke1)Il}7qkHrBQ|>)Cp_uHwkaVy*_iuCexvZA4|Ez?bEgr;vOfsDL zU`IR4dGC;y-e^L?DjaZ;!kq;V@^|jM?Wd7$>imjG=22Uj(LTxlQGL;~^MIQ#GIz?p zko9STUhSx?*;wmd>T`dP?YziRQFHyiq91A9ScwH$~xJL)yCYk4A7{x3ols}yQkku)O&-R z7!osSxlr02qN%8qy@w2Fk-uin`?KZCzBb7xoUf~+f3f^|H7461GOBt)S<&5xESi!H zpFLTSHJqsLmQ25NU_7dQ3-}bc_meL|T>Br@r(XgGnH-}t$jH?(APw8H^t;o!WyT*H z{9WhUR04EX$iGkO;?4&^$JVZ0o3{easqURe@N#~0_ha5^T^!QgRq?ZY`J}s|_aD`Z z-y|9fTI9i=MYkpJ-G#>U*LSfl>A1EuiQ>0JW4eAO%ge& z9}|)b>#3ujHvgkS@Z|QKz3Sd*pF(V5t)dQpSs?#W&0MUHCaZ6BWvHDqqG&(o=>4kC z);;}-yOehKre?s^Ae}3mVZC3_aadg%;hx}xS;$TQn?aV|KUkC##(s2aJPefgxJYId z6IiOWzW>=(_^?W)(N(I?aWmzn?wML z^IX@buIrOYTft;i`DV}*AD4uT^6*HGVIAgIbzP{vz^O$sgT$9fYJ2HFjc?%qeqX5Q zyHNKNIkk}&MXVo+)jr*k5;v&$H_bwq;>Y-N-)r}0oZ6N6qY3rN*xFw)`_aD}L z#MRn&Eb87NyRe(}8yx+PmXjDZbU&Ht+=gDCWX+rsV@oE%QFL?LN6Y0=Z;7-AKVxII z%6Z}zAunv9Ds707`PJX2GW`?it<|qxErroON+`YZ+<{c3BoTH_P5FR&QwwhOO=*Xh zmI5W`=f8_~PPo{ZqPC`93=Rx;n<&9T?3{_+$P7*kFO@rd`+=I0C*)*j#uj<+1(J55 zI#UwMgHoe@q*BP=i;An7(|ArF6ggr|`}REI8jbBkz!7F~wfwNm_`mR>zw0cWHA-Z!^8Wk_Z8ezP7xx|cr&1KjL+U_3{q-EScH?)RmDe0XdO6=yYPL`8 z`A%=3K~HpmFAC(Igv=+qH*%3%dnsm5hhsBWm)Zr`3G|LF~T{9p+L<&dpjvZ@vyTI8YH>41-qDK^!%#N(s^%+tA{BUvom|6(mvqaU~B;?$5@_;cJp5vWTD9*{;Nq-y5Gk?LMz(ax8zdA^_*;P_nLHdg|-`!4^ zId`QzWoklIh~VwuVcR(KOL|-nLpGFqLqo+2HO4nn=Hn+ceBrsN;PIIr+M^uU9Szf83PVy0IjEihI1dFno@&Mh5q9 zqzdCxiM5F5q@+Ekj&UyTJ<;N<3R9mr8=mCtcqHz>th=E8^frR`JD#v9H|&qhTTeoU z&QIIv$x8C&!|F^Dr(BOc7ex@_JF^P5FpkylocNxibk{w8vM(;II?I2`6mwnId4;+A z6eSjWU^^aK&CCQY#KBgEb)SDHQ!;CG6U~iEIi+(UKOi#Xc+Ii@XXE1Al&pf{hM2ki z3;II}O-Y9IoZwNbR-R~uXPVDD9S&35%cle3c&Ywxaz9Hb_b=bShH%|WY&Yj59ss5v zV;gGeqSukGB+_BmY578mZ+j+Vh(i=Eu5r824`;vQ&R=OGJo$I-Y~Gwm`k{KRQ|23Y zW?|*hExwEOmffe(8T$+m=rQ*<7g_ z!W#D{NDi<|rG{RY9By=ooy-2!TKwv&uldX2{aXv>x+*RIx63?Nd2k5>9Zekk_wJOn zW@!7EP!8q|TAqlHLAbXBO@^qJT(6LW<+XzjtCGPi0?zSti0~7gFt3HmkZmpS&gY4h z<4`HbY{k!_@tsF0TB# zUBz9VE^)G{SC4<={HDgfI!vg)d=m5TlE}c~J@3+f6ei+;QVA0T-Vsjl)0Lgzj+gw0 zW$^F`*}^Q8iqEF6%bOz6DP4Fbwv&1M?Om-Eg=>DVIHwA$^kWs|%NrT8N&&D~c9W*W zM@@-Op=j>IUz{>fHoS0P5EQ~v6R2iy_mWs3e#lB!m$ycTPwA!R&n!si07fxNn5A)% zCnQ{KWE2bE#1uw!5_r9!DLt-mHKBA-7aO6Gi$ES#I}SMU8Y_V=G&w8}2Z%EGuL4Ydk4%&K&$wOC~As(jIkwMpW`Ht2VE zxKR;GsRuGZcJkHnjkKwe!k=BEA`|7pFi`w|A85F@v-kwT(^ZFe zYYK37ECTizmT(k!f`g{KV2zGFBHX%ql+Ty$7O0#)lh#M(^|I|>i zOQtZIh`X5ZT`S#$LNs15)Q&HnW1_QpJ>veHc$~jbDegZk(N|FqXTU~`|BPL^7M}r1 zv~j9$sn-~4^pf5&I_&&%%aBAu;u^gbO|akn7oc#CMKkxwf0%uJLh}5jU^M-N4AdAx zY`qDlI*03TZJ776#d80l__Wk7+Eg38l%`7iiMD+s+Tav$f#HE27}kTqikGz?7f)m^43)|c zGgoFM`VILS($o#DRq@GXqSn-{PNLa-qrnpx7Nsy9X}ITr(Qct*4=-d!IB_UNVPV6~ zM8HN_wdZvt&JCi)a4rIDQem0D)49_s>J!YOJ*rrQ3Mh{MuozCde)05BO(;N_fhPd< z1NPKwKq#&y>>?{4YHk!6M@aiXl;lUsHhzGF4{k6DjqyVaQ(U&4Q}EDTZ17>T_hWq8KJY(D|1Vb?44-2}&r{CHvr9 z{clAU!(vIg?sgI;+Fwp%{s&)N#QES|l>Rlg!UomRvggkPzUYWkeIQoEAum4@+~$#t z?|jlKM^WFnX8ALYFsVcnm^|#}5pxa+c}a+L-EAe1%Ii})-)#$pcHpE%?k z3GZKjSW*Q;h5o~8&BZy!jVPo?08~A_`}NO_+5?YpiBm}=s+WEJUfkW;Ec0`g- z*Vsj<*_s2_vckoQiM7B;Zzw9?uxWK~bkDODtG58D(2LFH*=5z?jeZiaKG&ov>G2PAakP4Y zSHR7GSdU!TU_G2m^I{U|ldcuto){pBKyhGCUcsn+NZm@7L&1iDtCLGLu1$(A6&TL` z?`qoQ%gs85Xop@5k>X1{{@Z{(ee6D2BKc#-C(d9=D0x(fMdCYj2X*?1yM%WY3XtC$ zgZN;MgUx|Y-Sevx8&~#AzbRNo=qh7+>hAB)ep0?ZT~a9JR@+8GJReXzG7QUI`<8vR zM_qAUrk_B%Epb`zTBUes zKGjpPm^Mu;Udo*gW3%o5#2)U+o`AP_XT#~S8b2LmCBdqY5L~$sEd_>BDSvPZ3?H-W zJG#_Lm(-~JYWvp!!;5)U@)`6?BM_Lu5j2z!nu>$v0f zbBunOL&2weU>{sdkB1oN_!)DeMcx@ zzoxdGX&2@OQ}Cx{gWY`yADG1-*tX#w86O@Qh3_7rKddO_!v_|~=+Trv7Buvpkvfzl zG4X2{J7ki0s=LHJrS8-CE8)xMD&_06OFZ<0(s4t166y2PZslDRW_mB*3h?(45wT#6 zi>3@R{OSvTX|qGl#K6x$phoHB$k?x@@r=hov`)LOL*mzq!p7JHj4)~)`8VaK4Kuvs zx!5{KXeII~B{t+fdCwhb0VmzWwMfq27e{xL|6wiYHf+%C6Iyfe^#QW;2pmT_2)NV$ zP!6CLdh!E~glcgr$pZ2h3^8&bw^345v`@;}Gsk;JBtxl; z9_CnD#(zDlN=Nw??H2~qptS{APUiQ2)ov)e=3JNh9G#{5937n_h}YPsd1#I0HX-ce zFJuDvjlO73a86#DeoUU>F-e*JAlzr<`q`xjQVOlK5(tIXF#Uq@Z>2nOyITf}(pRYe=BIpRyv&y{!`-FDKI!y3fM5_F_v?Ms~bb*y=e>nE*w5=>U~ zBusKQ#ftXh`kxgk2uj1GB=KSs={$OX8FdSH(*5`Z zp;Sy$CLV%E>Jz0PQ?xS;zj1MTDN}S2?=rpu!5n{);BAg|x}K*V(qD^2x-MC27n1mE zsrK7?T5Xh2z z!4CKJ_;qq~>XAX_VaGdIYDh{ZD3+t7_bH}zrR*6ZVbUVL{P3eF%<3yeEGogM2$h^j zUCIy9&1UAAc)`5%Psd9xUf=_|c=9C|yyLFHxiqZgfU{)*!ZDS@YzBh&%CfLcI4|J~{f z9c=vFsLIPtr19mrK>5;_cJ)83D>AyTcVtZOFv*d^;zo_mcnv;u5SO`w%qi^{5vj&h z!&a_r$(YQLdC^y7A}B7=A>ii|0=+vj9Znad8AGWWu13pBS~enzgAlqSX+NB=bVhCA-V6? z{*6|$L;k}cFVD>b;U*|a%R(iRW(;!h`4osORq)O2 zB>%frJ0?jN#G1cr5`F1j$twpQSoL7#0(`M0Q2w4_Xf^)%bDI~XY?zi_*Ps}Wo6JH9 z>-r4Cy04rALGwhrrz_1`TMmDCjESKaAb&rOv@E?GDdzCZ2o^SAZgJjuVvO}OrV}!+ zuEAR$sDqA_@z0HHjC8JoDgig34o|d|zH?xHn(yE5Yrn(mhz%SW{Q~rdYa=Hp3`2lE z_77ZI@o0tqa6HyD@W<8l>(GLx(DnKe<>K4$)E(v2y+=EBpNLB-Od(FnZ)-<+nW@#& zrPeXMIH;46kt&v7N6IAKkcc-M_m*!Vfk%}vleie5tHI92#YIZD3z2TZAn$yW)L-qD z7(h-R=00c(8%d0v{LoAPrK5-$20UvOnv2ZRi0u8!d_4V5M8#(qtxY}1O z!t~O6U5R!;RNZC=FH+9i+qD)+fPf28TRHMj78|Ffy|CDRvHao`hrOUMzwn0 zp^FsAqo&a3?7s$8(5Xele}=V9ag?YXZbvWPOL4t;z7Rtp8neWqJ+Tiq+?xU1J2L9!jd74A^rXJW&p%2tyUcIzBGF zUc(Fy90fti+g%Ns&bk_hPsJ#BGL!)PHbP4k`46OCtdPqc}I=9MdSPZ3Re zRZaOB?3X;okBlan!~p1k&Cr7EcC}vfDx-Zh0)b!>zJe$Z`Mh*2>jMhQyU2+M}%!Y&~ZT@5UJ7W$%z^c zoxh=csvMkKMjyjl38v}i{@OStiPxFa?tk`7K>7uWb9!0CpZ#I8^d!Ym1H`2YA7ff^Nmx;X{#8SztAtG_UWFf=ix zUy}W$3xVVmpvi>GuKC`60Lt;2TS5c#SwM^iBLMSk^Mnczt$`?3QzNDV_7)Wr68Q3J z;zM1dT?o7<*eP{&Z#;vO3>3a{`6=O)7`bMt0bE_P+0h(?F&aGVNCGbH=n-|}4bcoK zUd=uk_76jx0oM=smYd0X!lF>1r-x{a?{?5GInUo0FI;078F^oDR^Y@#C8Q`>NQs!@ zVVvxF@q;&PeN1`e*>Cfq8N%BV5viOdktIsiv+9mO&1|=YEG7U*6VTZ#(0E)CTS4*B+=m(=Dz7yBrAzJ9i zt!bk)YCreMxToFWwOUJj9D2!~R9xyD6y444b2pB>@^6u(a)sf{>W~^2@ zAZEQ?_${(>nPOdYT%1MNtF?@=^D2U}NKx(xD3dy5%L`n$M4&)3O-~X2{`W&ey4}5l zPN%@x+zGrYfB#)=-NW)B%h^FNB;;veQ=?hFCwdBhM4v*DJu zwk@bePLZbg+g{j^&?QhJDED4iYR_2*xg>T8u{&k0DIa{bYp%QB4R;{wB&AUefW@g= z?|JzBoy}#zf7zTB2y@gLU{O@pUvqw)fbA4O`?3L@-@v<;I~J$irte z&eal0?2Jj&wogPk&tALfn|)Nsvbo#+xIg&YbjST*Sg7?d8c9<Sx=Zng1g60LWo067%9vgE5xdpvTUV!@R<4JmPO?*tWO3>Mm<)?_&i*(ogNgB7 zem=)8RhFaNO7LV%iOgP?&lSEjsVGcbI>(b3kT3kvPtW?%{X+4&{rDv?+w`%)l@YFtcNZ#6ioiT!OF4xf( z=3lL}8`Mmn$2Q)+mco4SSiHXkQZO4d8|PV4)N@a0{{vaPKRn#@h`-C*RU|*)Nl95k z&rTnf?xTR~a&<{gCDQxvcSwi6&RpO(NbIT`Ozv+5FBkU18|toC9Ni(452~e;o!-^Z z$_Z`vg6yEl@80*WK~uYwyV-~(k^u$12Q>=I%+865a9)a>p)Wbs>uV`!$c*%u>p{&{ z$&8Lked!^hHG<54YYQbe$L_v2)DQ8R`i{GSTz{?fPBzt?v2A5b=U}Rb#_0s$l&NgMwso_iu`B7(3j8zqbba>Nh!~oZ}5uT$G#* z%e`&cMG6|~Z3W^j>3z`1H82RVF`YfyV&D%h%9N7>;#Pr89at~a`C6>H{b9>k1*jjG#8^SMxV3YBt z?l7y4x}^xpM9EYaVb?Tc+ zwyu0mR)2pd7PdIo3Ddb6-ID1c_2OZY(Zp?spLP`*W*t1+^G~Ek!thmK4^R)N9FR znvy(ryd?#aO?uZU;@03VaaFwg4b38(8_M)4xuF$4PnC^Whqp299UDmSGM=$q-Oa9R zZ{D1?$;pZB{wSfps;Z<2U;@(+NyYAo)6A(eBqn19Sw-D3Ehgh-#>f1X-mhVC*@=k3 z+)DtRhev~?oGc7I>mz&i95M~m^{A{QW!amVMHl$uUDyhQDY#D95xPVrNslinQ?grR zuIGu3<-?f9-zhU-gDoMmv*5W)(Bz=p1?x9)%1eYHuW3n1p2fc;r>x7u%#&!TE;3|q zFN%sORL_O-`tz(-WHx@F9Ah4CA6W6d&$2BqV^#oT!ZOj7!pF3zuU3pg$TM<7p zz|vFg;4(LxOBaFBc0%8E#Ff+a5Qvy)c>8Lp*b+={d)-g)r0J>F?GXTq2)ngQxColI6zmUJMI5E5sJWtKnN08!kV-4bo4tXuLKy^(Sr3eJJ< zKnmgwy;v@HAjsG^fwr7of}E3PJ7a8?D_}sZ@t;n#>>=b93CeSq?7f>WNdA{!#t1~p z^`Xo;Wm1~Usy$c){hexn_ST3+?4QCG#iZP}r)IAipg@G8$?7o{-cXObx`|gwv+Ax~ z+WajtXHV3g-v!YLLL&Te4S@oHgZ1y1cURv$44$z+hYh*ilq=R~7iLY}%!g5DwttyU zJ(Vr6VZINpoSpcQFBd$EoX&@dXTN8$VX=h)a||S1R!QDF(esY3$d4E?gle@-uW*tC zL?-lqDUV^#7;=!-U+xTop#e}S7%cp$+2r&Ei}$9Ydf8kKz6DIGeuRbNwE8cIv|-m1E#EyZc(+V@Ix=bf{>qwc6(5 z^sI!wkI#pKE|JPdvf-qNA~FLet3O=YW_9c=E-1Cnq0k3`a!AFL&82z;K^6787~K!4 z)}W&tv*VqYyi|vJ!MU#fVST|>ZUxnEuBNuCS2|w#OC1vH&1cA@YAY&$rRTk4DsugS z{}>RvC3Cq4hhft6_ss7>irPi{cZsXB>1V8SC!{cE$KGQhwT&Q#EBfz4AHVJR)Edt@ z6-~y@aIgUmIAr#B)x#|8$khvA<{A>q&Q@-&SX|8gpTO1davMLpOUF1o)7a06R`uPRK2%^Qn<)n;QL;Yu-5=4 z0WfMjrdP2cwL;t+X|AC-Albf5V#&C-nQ1DX=ll zDtwx36t7Hb1h@43!7~sTtXUelzpic9I&|CdULM0>SZG1YDIbV&kK?pkm#tiu#0z4M zgAM~*lP$(EH!a%N&x9@irF1rB+D!9*N!E#4GmT+&{uk}jr^3)Y?$OYmyT3-cDK(!x zo=L1v>TMUKUqs-3lG0W&BznU7^;PtZ#Cubk8bzk{zAGnlTe;u^Nd78GS6smV&y1;>+PBM+^&XX;ZdRFT`TnOnjA`$l1U>UG(fQ_Z z^Qwj_PpJ)zgj|$Nxq!bpk)j{=yN5rs*a)E7_njv9uzlS#csT0$h}#iOyWZT~Z*St? zvbQO5ms$lT{DJDDDW0lP+$Iya>+V0e-Cuq#`r!^P6Zg&tnNDs%BPWr$V{JZ#z_QsP zoyqK+;LpQO=DIoRHd%+Qpd{nb<-&DEy6GWv7GYy!t&DX6vnPek?AsHG2+*f8Ec11{E?d2QWFL~| ze^o*ne9M{$tLh{TI}9?ApoaWOa$ato>4>=4q)UrWq1 zPPMA3r;xYaGH_Xyo*P5I^s3%{?bzBC`SZ$Mj^a!%52E%{69n5 zRPY(IfJeuAGH#O#-zGd1*!PV^(VKe}agcU{BLMF!WG%*oeyWU%B@BbE%j$o|a}V4G zyG=)T6-nB9oAs~m_HN1;%m12dpO^;^Y0Di+@A>aoqj-A`-Kk>Y^Yy)mIzo9Z4#p*% zO1cq4jBP%ZtS~vTp^nvlQKzi*pPT-HhLxjd4YPPS2MqfSX&5;L>$0(t4n_vs8( zxKPnXoSP(O2>Hn4*@p}(XyC_dQH2E`Iu*^Rm*nArvJu_zeHS!Ma9i${sR@`Y1B~>Q ze0EI?UzOr%Zj#ulNP2YMk-HGV%y$-fVx5ltnQ@9S-GmSwP0q7%P7*~?Q0qAF$*ct- zo%b$*$oaX{lqQhu6skvTBhjBGd5fn+vj#=F+AlJLSKp~p)RNav6wr^$@bU#oAB}kB zDKN>QXvzSD3A$$TF6D?PGmDU4_NwRn|HBf`?e|D%-*3tV)X23XWyK7>6Z?M z4QUr&(f%QatpE1A9NBrt{eInT4J1;1F+ZN$OQ&P~j_J~8YHt9!Kj4*haBzt^^Vi)p zeSolIizT-u&>NATKzB2PO`Pp_3@r6Dl_qFYPuzt5!JGD3#Efdv&NA-U3n%@(1^Re*P+JLu>Pk>w~S0mc6U`>~(XiMBw^?4>gt4o#vt$9oea36LX6OQLM zY*mJOKzyp3fQ^@4lLs!mx+Pm#_hif{oW9`$&|petYJ4UOTm1Z5YVTkk+BVMIDoRD8 zuAOL)&?8sX(!tDUMe{XX)}E*QObgDvZnNu9FN3;orY+kFVgxMj?);tT=^v-lPF`(B z7r?TCzW{AGcVbg#qyNG*&Di(^!sEnhx*+DAepy6ferYxo@d&9qm3wEPg#QO(aZk1c zOgTTByA*4zJy0$`DlrYmB%8^u!{7Ov2b+@I!SI(*BiM}!M@;2qXTsmE zXX(;IKf>?R5<7mxeMi?Fnrm0g3S6OnId#ZWq_0!RVV889Vvt^>pTt8D07 zO^vbZP);;I7e)kUxV+ibQ_jyb7Ru16iK9KauSy40Llj28Q>+~C<)LLJFojjv8boTZRE*4B;`#60@AC#A zna`EkhX&5BpFKQECNJ6Xv?hjnt~%|;Gv}^?W26uK-yK$tR|O^-+YX)>gQNlyb9v$4 z{@%E3>~Oe&{py;j#FxxgZ^U%kKkwnQkMg~0*nHfS2G4B0xlO1_dkqqKX3%@YfRrm^IW19ne{S|cT%F2+YZQ6y&J^#>Q()l@l1`Rq-_Z5PK;+ro9`Gz{DQ6w;K8rHg%k!IwIe}EW@Z&%-0?uJmLGRLw0`kT){-5A zakV8E{9$5}j}DX$uK{Fsxf*L2|LNGJPcRGNB!*vQ6|R&4EwAC@&eya16oOs!G%K^S z$V3*_GRp#A=l3Bqu;#L|uLn2M5ZUSA?vaVX&o$+H<}%5)^eE9Y)_l%WP)!A5s}vbY zZQ;G|rM<3u)+Tm#3T9zpVF=!L94YjAiM>G(<1UqDb>G#H09bmDN(L7jDH>h_#Ix*W8`o4D~p{+{wv2s%d6iFK-f zBB-upa!7mQM{=qDsQB&dXzS=zMMV*2R5r?nX7#GjO4rt@yRSGcN-Mf8c}@|`$5iC*U(RJB(v{SGUqm) zS+f?iY#_OstG>Ofi2njMd>_hLhS_xM8^)V5Ibo7Pis^vl`$%J)y$h64mu@YLS&|04~OV#hs5~|0{*2~Tb)o46%niaIP=fU=ZR=Rl=>9* z%BRk(m@nd!up)wD1_sNucYI#?8Iw?!Wv6U>Mw$Komm%J{VM()bUv}Y4MR~AQ&o`7o=%;q=j`0lv{PP*Rulrc-6()^A9 zXP+3zt=gE7N_V%k9^A-&PPR*)_2=+Zb!AplMHA@HUr0IK7Zs@1MXC6scVH zwy_;QjU}!33r=#jqZj}N+81RhI+`p3xBf+nn;Ba>vT7=Wgp^H&|GwpG58w1g1;r4F zDkNScQm-QfO*io=z=>L3B_&i< z;a-h$-e3_s2qwgO!V1w3+dnB=*Sxn5RbSs6`ZeO-a%&UPJ9ibXdql!fPLuoZh0&9) z|CI>Si*1~@Qw~a!#8DJUuv~bqW**Qw zPqfyG#YA0eu6ZW*b;tWpTwrB3ytErFbn-&|i_IYl8O+UTc}kQnb(cLM-ehNFMayb$ z#oNLyT>!xCkd)dQZCHDgxc;O`(pPkJ@f|ATbSE!Q8af*!k1Cp0&5KGK&69(X5W=uJ>4Gq3w}zbv z@!$q#6xGUmPV>Z?%ym0C(BybHz8d&!edxqMvO99>2ahv|bwqxaqLuBbIPgjAYj~z> z9Ng4hexMBZXh-~&^nr6}*>C#YE5d@uVT~6@AOj+FTwmo(v)_Ran+7)S4czQwNp0nl z7@ga$Sl;ldqm3<5@Ut0e%TP7nG+U1&)@al}YORG;DnF_okLe*2DvtO`;y$~d`h;Ly;GxR~zNzK}gw zE}go(%Nzo%%b{}&TSOTs(RDXS z^mH+crj6S}d4|sHeLu|r*%hUC!)fkB6SvF$jyEw#Jo=fRdgKHog^&1z@|i6cW!8-| zY{I1at6f&gpFh-|Nh8?SuY^i?XSk<3>XzFZ^phXd#|1uTsWhW3nj-%sX9gb$EWBMR z99#~}1U%17+>FHb((5nWJ2+y4?ss*z5ja{)UKNf^iWG(e{aX?KTV;7BQnGTk?a0jV zE4kpkcXHxz36xFiTG(E%HXF-W8H;UEsc|>Xcg@x>&fb0S9Y54bxP_Ja5-wXsZI|pC z*<6QZr7T%Cl<2GO^%{Wa5~ui%9FbMvu9AH zIlCaTs?(k`r4NEDH_Wr@9ZUi9GtZdsU!S@iJbfNZ*cAj{odgL=bpl3B80fU&xt}-I zyb1n-z-~fkbVj=g88>vpW&@f6_G{ei9VspnPsMJI?aODy;nu&Y;e+tbMay6Jnl5=; z4r(kYQ_zXDT8i+~DFH`u+g+5v-iy7V%GBstYqwD)rkHqmC{ONX+saQ6Sq}95ZUu6^ z=#?;T0!YL_&Rq^HQj#o{i44=bn_utAL*;(O^|jNSxcn{lRP$JQg%0Ps-T94AlaUCj zm*31zaCkF-`~uf#U6tPwVidPrmY(`5D4O+8FA?FVw;3|Fn~nkZi1e5yb}baj2>5#{z{&QobK<+|6*`JVOW*YCx z!E)W&Ns#wvuKG5sdi5}<_T9x(8cnHW6*8%Kb;s*u-I~@E;oug*=)8j>9YF&}RkZ$T z9NdDiZrqzz2dGoCpHnOwXUb*YO!avQn`3aKoLv_9)^SWoW76C;5&sO}ZFeRsY~FCx zvSy#ve>)i1TK}2gMId!6R=Jey{uE_DzKr_Uw9~$N*juk*S?(j}oorMjC z_OYCdo99NZpy{{3oh9AnEG?ZC?$T!fGvrTb<{h z^RuzL&!g;KZ!+R$gK3%A}UG=mc@6^g;X)DP`1W&uB}o_V_BzZ0z*l+F;kOTocnsuxvs-U`b$4R#Wv zS_dwjxVX$1qa3xLEOo`(3dFiU7W0hs4Ed8UCS7;E$?`gm{@lBU^>Kj)8y{f~E8b{Y zEhKT=)Ggb2`&HOf_?;IS?Ykf>TX6QFynZqZ{XNgu?$os`Ok+F$H$~2DaPFQQxT2}R z2LG2iCS9Ox8ayg_v}`CgK_~67XCbxzfwf<8hRHAFoo|Gw4aVPrsU@WRupzAPxM zpI0;rAMlCL<(gkE0(}EHUTsFM8t*8!G5z+`L46CspQ$JPtVc2y*%4nyYdMtSFm|y9 zY+}NeLAWR`ylPxbuEP!1$YNY>)Oo5F;AmSHKtx_)zxX>Sp;PLvp1!rZ&aox&uWt30 zV&UtJ=Q!VFT6$uadMfqgt!b0bQfw=7Q)t^c5f%E})2r_Ax{AUzIpt9nP5^rwj*^na)@ zgz6}8H!$naN}urAx)AM%J9_ymk{in$NDKtehk0YNGSXA`mvrO#SGJY&$@&H^$6fDP zWO9cTBOn)nWlHw5ixFWm(Q1i%IoWq(?F*k-S`>fI(G~B6`V@Pa-{5!Nsc4FCx9}01 z>JNXd9yG;%&|k3qlT%|sqX{Jie@GxODv73t6Meg%kDVUjJ^H@0J6`bFuL zPz7~as#RfiIPLN-PQq*aAM&L)%9C^q=x6IHQPP$t|Dt#~5klO^9{s=M<|I92e@Ptt z2l~<%OkIWVC=BrNvpU}f$M{*z{182(uqX4?L`k9oW0HC}IXm8z2bQK!rH-!X=DR|x zv2RTJVnfxtWD_j9ye;)as2KDIhkO(?R&Vb6%`;{R5M)Tuft&{~6~~&VgGV<&hH&_M z%pLc~Fx6C~qu<8$nr9i)Os56KPxBUy=dsqoL^;~p;JiPX<~L#^VM&Cq?@_!W6}cHC zbTBIi7?!Utzr~B;iMCQX+!n`5tDuy_7WUE~3vqgam37w$%N98DH$a33@s!EQR}mp_ zVr1s0YBbJSym$YuKS*cptorb9yDMgNx5PWnyI{Atq_iP3E-bLedL{YV^q>8!#mpsL z$Fk7??WJ+XE8+)NslzMrDmz#Fh{nk7v=-XlyB zTFPc~iBYhB=M|C8z?{W%Y8N|@(HpgYqqN&+6f6hVCnB^cyMU8XtfMm=dCA=@yct#} zhTe^2;*ZU&>?Nf2k=;Nni|RU)9y|sUfWe=^n4+Icwm3RRBK?b_IyNjN>9BTH+_IE2 zmqihhz;dbvA}>>>Iflr}839~F*>cl>z?WTupG#csRrr4fVJt;xexrA+rx9}Tl=prvSC1F)%AWMBuo75UKV|GStz;ur z+r=-^AXibV>#x;oBXjdyp1qxGP*opTSPyF4jHFK7@l;_RNq;)9G0^+diAg(`^h-uY zhk@Dk(euD3Ro*hj>g1w8B6^xN<`wzg#+9=mm=M{G@AB&vu&ML2Q6=sRRckGC{+yy= zIIQNoZJh9AY#}@0hod#mQ42|+r5oh%a3*){OKacAB#LSD;TQMlXmT&<^m^jDaH=-q z@6+&A^pibh369x!6{+$@s3FzZZo>q5&=`Vyc+38C0|~Ga0b!=EToS0mEB5StnXT$X z(Y1W-oUs@Z{5j(@t*&_t1uw@Aw?ljUmmYQ+A=};t9B%a2IIZf0nYlp zo?v4SG-cyWx{B0=db(C?{zav=r8A5ch$Ae6gngOtC_DK2D36xv4ftCWT#aG7mb?X)3tXYc!gTgy3Kx|#P|!=9-W%B{mP16Fm>XhL zBj8U$C3r&AYdWlWbw|p#m~-VW%X?*+XnX~sQ?f!yoAU4tdyrP=TxK^5x5JJEcQC@} z`9cP%RC{*rf?bv^ZQi13CT&v^78Mk3Ln1s7s_ws@IJ)H>5P4?cLqc18z$^CcwFYU* zirBnU$|!FCTcakC(IDYFU075e%AL)~eYlxvG|=%DmR%cRw6o+j@>p!mcau$8eDu)c z>D@8JG$U^~)9~#&ov;5(7TyKklW(ft&FP(q&%~XpOGyQUUIqW{NmsNEe2Y#lw`+;g zI%V$7^7Pb+m(m@?lxH+$ zq~AzF5}2fqO~h}Z(sl@k1O=23?a6wBFTv|m{S8)S5II++Kk-iy04pXq3aZ+2m8ynI z@%0c?qr-2CaV#Ps^!h47W+#EMQ4vkT2nFG2=Zo)y}G zV74p)`(brX>IDMscSi}d)5-!_@}#%0R|S53DLk)mSfAT~Y>P0nY8qobA+Q`VBFQh2 z8L_KIE1l#V?>E+j7sA4~1ltAi9yy#zJ!R0a8CLHA$4FDV;}cTZHwDK`r5&$c_mBlt z)S9J8hM@AN?OV>6H|t$E+b}b~lz-KQS$;@P>gP}1TJE%?GfDV6Ui9iZ>PS0|OXrxg z|A+N^G>PECTE&K#S>^v@=)C{gdK)ktd+$AKlp3*XmA1ClXze{?mzb?ls%FHdR@A6b zYVR#Zh?%HTl!zdRe$^;yw8s1T1M=JXCdRE>rpW%c@7<$Q+VE(Kn{iqb(vpVi+2B;b!7D(vZAD_Q(t+;%eeHY(SrPw0JwvJfzSJxuPqC3pS<6>WQ``ktbrw5x z`X=ImuAn5kqL3guwPPu>(QY4GT`rie8j7Cnm~;NWT_#^LhF3TnN0L`=bckbV2?mAx zJfSi9ZoSfDtRkhS?sI4N5}L7!A5lsqJZk}LU2q9i6X`IwQ%>4{_~6_mM#|U=_TNrg z0_(s=A^we>C_G88J;7y|uW6%ehG0wF4yS9DMuTGph1AP1uG~GU@iWK+^G%)>ie!U& zwv0xC%W^~v{70>+`DKBrX5&gv#Wkv|-w;t*clpx$O?&M+i^{Jd;I85G>iQy*Z zo(y!Ym8xY{Eqf8Jk{Y=*Q$>cG()w82k#3}sx2~i{q>k!!r!^pL>3a02cQJGL<=Y$7 zrN2KdMOs)C(vep~c9b}A_~0Le$op?DN7syY8EQ=Tt4^TRd`xaIfmZK`z^lQ9x{9gM za5W7Pz%7!-vYxJ@*tg;-KFN;Jo%cMC8T16md{9)9?C9-Vz^+WQ(Kv|`3QH42mZc+g zJceM@<2LbJs03A*|G*CQm%L)#NL+->f|K*YiYz>i3DUUfh z`deVJAv?_f_<)szfTC^=v?kwhTEAlEkd+ZxPo8|W*kNhgrG~m+2TvP;|IOw5PxzHU z7!>qTUc22ZRKQQ9d;)ktd6N~>GWeUz_b*g!Jv>+C0&O-yzTYwhSrx*65UbgZusd+t zC!dQgkbJj5#}e~uQfhlB#3dsFH7o1VE)!))9rjkjg~btdEBv%sIA$BtPEZL<3Wzq+wn1hEa8yL+LeTg(offTrFR|J})x?=V zNsD(Oth+DWlgFB@RwkJHBqn3JM3x<|wU*HpIVrj9DhK!8%`Z0BwoBS1-c7^^#3r?# zu4+h;rHeri1hLf|=X(?XU*uz>s|Mk5+>%jp;`#M(4ZDTNd0JhCh(f`4*9OicIFXEr zJ$k+GNUfxM$d}%+r|b&6M^G4AsDcB;2u9a4B>#8t9eG#5TYG{pwpUDyzP zCMi8$DEJ6ejw~Sq4f~I?j}_sGrAesT&-akffnZngof( zig{6DhB$oQ^BDm$Mz9&eFuH8anXig`|H~C)is6vlt%x~SV_E8l944&wkAG0ffmYLp z0i)*mLJxhkYFzy_0!ejc6I+4xDG9XiI6jGn^d}frSON6$DD=*6nPOlNf-3Uv{ z`R8I&Z#*4%2N4q4V&m2hE)}t`u-Q_n zUF%QmoeS=HU&(5%ok13~=ca2xWn6?O(g6T_Hdvw}(>Q~;Wq5S@Rj$YFJwes1hsgN; zeK|kX1Bx3{a{J483lN$5MLw{W;0k0RCphOCyf!a5#edh+dL<~jnQcPL__C~(pg#HaxbU=*2WG3I z>Ru;#k<^h=VuI$|`!%!Db9C{&Cc|ujCu^hRRt5IsG$g)>oolxhOpi4!#E>6l`#fqo z85Ej}!5Ng#V*n`*JfPkp=-gF?-Xffj zqkWI8U3iEwWu~R+Zeo<|5*M&8yXtj4W#g*q{nui#ztFCDLs{ zl8Q3E&hC*s6c}F$vX2&t)uwmDA^(iVw$C_dly#avxYdZGZv5htpYY)33_#qwbw8>A zAwJ!S1OvM$`PnVV5MK2b#Eh*W1EeA!k-B7zx}}s$NLB85tLCTfnm)6SVIt-p7wOqC zBi9q4Cyo`px{C_zXfj(08uugeEkDm7y8bctS!AeCN%STInAWSxUeA28C)fQd&zIh{0NTrEtvq&cJr5cVQ*5w^ib?^b$fq zC2OAnty0h9BcS{-?Q{D~+Y?n&@GX2RGyM4IJ zVG`c%uqF4lN^6RAh_31kgxmIz#f#!g39P@%dy(ZG$^=m|>#uW3^!%b+2!a;`Z)yus zi3^}NnHkOB#jg7Z5mBIpRB&N&lK%sk=-jAjDq7>jlFcO^I*G6!pR!Y1Eq+!Q9ed9h z>LVhNTs-n!WVl}$U~3Ir7ZLCWLJ-+22C z3x8t!BVwvyg1{X2F=z8iyf;l}dR6vLSH=9dfLAq!&)a!4mSySOAxdnW?<&L%n~^mz z74}o{d8+l~OvWv5C~(~y%_CQE&xCB-GR+!zL2Q?$LY@y=6;DR z@S%4$XB>n4ENMJhBL@)cP_a z*+eH{sy*;l^i+6l)(5S-Trcu@q{nQID1sB0+CIU=s1le*sYG%zJ^!5|VU(NrZ+`(0 zibAZySX1s@$j8>{zfLMUVzx$P%pr`|mBqh^4^QE}@T(r*t^dPw)t`#R43Ul}N2zQ2 z{?v99d0AcRp@Z#OG~S@(#61X7>S^Y!0E`Pu(Ht{bDsSWu&zy?6qtafeI#!Yusi4Ei zLGQ8v5{IZxHpd-HcEs}ZWuA=t%T_>4kor;(QTRYHzLp!=V11vTq^Qdi} z;q)f=^-k-<w+<7^SNy3;X~ILdMziAa7y0 zssxF~NICP&U~GH^WorVWM)tcx!!xqhT{0b_ODgx2KtB$ND|J0Gvh|A+9u5>Sv8O2C zcauS2#LI_5!b!qKXAW4?mw5>mPCf^4faBL0i*=FrEDv4noxZWIB53G_4rPQJ%PJKQ zSS`RC1cB{-kGMLQbP3%41HN&Qnj6c0>HU7cxMfnc9%zfia;QMxLdhfxrDHRa8nrn# z+|q5!-NiCMzbMYyJ<1mx%S^O7aEJHBXAjCqjdq^Rp()M`220L5yPpZpJioi6g`Y>h69_Pty^XyZ5UM;XIg@7QMr_sxdZSedyzAv zai`mTOCjIj%e1FU4{{WescbESfo~XI5d^^fG0hL)UIfox{Qf^N`C4It@d!z#>IRfnRk@tet!Vtl=O?pB*vUKszPd+ zJ(>oQ9vZDD085C{FR`@%_d*VE6)PbP#WCYTJ0Jk>@MFoHdSB^BWkr>Zld&j?#n zey%$NtMii(@{~g(zzpaC$deP!SD|Yj;PcEp4xCf!!W%7uMlx-O5EV)06(&(3S(eeb zTqU*9&v9~G7}e=nIqAB9N7Hjr3(buBm0;(bNB1bW&GSBb@pk+%AhWnTJbZ6w{~sVF z{~2lQ!IdKWgFqPeSM z+uzsh%LY)h?+A`;c@y=>_NQbbx(xmDJ>5btQl6YcmHFBNE+IW$WOXdV68{4nRNmF{ zE`V)Axh5t`Bg4-f)OF&HXfRHx)T$6#%9||_Ii^m>O49x~WonvmEM>kd50}hPl4pn( z(QaRq|JzsnR^yy)ZfHa^A3_ z82CsEfAzb}fvvVo@glXX;1;J>5{mKnxjG5XaiMWx8H|+~E)Bt(Jy!ZWMrrkdcN}8F z8VlbiA`LxwYmdHIso9X^th=y>$&Ck00ro%1DTbnnbDh>IMp7KNSfyyv(#vf12iVY2Hjj`j}rt0phzJN&I{p^d|T{=1?)0#8a=1^ z1RA^rdBdTDzC%m{DhGTHYcHG(1Vx*CCk+UXA#D1acNj^HNRR5whL=n-F_K3b4c}Oh z0(8G;B+e~frY#WeYJXA25c7zs1GF!+`-1^V$?{D>K=346D8wj}f)O`Xw4evD+DCC- z(2rqp+$MfAMjKJd5e&0XNTp$~WJ-NoQMtcOfERP#Z{~)oh&)_@0W-A^-0^y)bj!$`|jlANHl+Cev}cJ?Yvp3V}prsQ2H=IvRsfwiRH< z4K;*4-2h`NrR-W2Ff9LQF$ zt!mcg3}`cYpF%_TgS9pt?oeZJt-(FVnnfhtJ!q_|qA9aTicF}9?rTotC6?#D1@KCD z_M3S+!*)36@k$tmiNS1y-)$yP+FvtFhN}ULuC(d8kb0bfmgeiuAWQ@V=lH5R09lDz z43^(o0mP?Q{|68x>FzQ+?*jLXy%1VQj@~DcMDj)@Zx8Qwn#p;Sc6PP)MRY|8KK}Ne zal`rbm-pp8DKHB8@=$m-5A89pRRDsFY5g*nD0<6SfDPWpa||`B-Sv*O1Y<{k>2oF8 zq|#8ihuWV>`hS74^`X$#ctHd(;(1mgqd@si5R}Tt4>+9IuL8v4W#D2ov4i|Uh%nO5xC%~r~YOr({+L+ zfASUDf{J-YEySB5QkEvDwNQcU&GH41&Cr~{)x}(mRf{o2=R=7G#!Xiz>pc!qenHS; zWH-H4>o~~Jgn=uTQPpz920 zeHs(-PNQ!ndHrYxZ}O^{XQVuQf0ZV$dR)-+@ zTj9Juf|{ClKkjx2Vrw6|Zzj<+zFm?0(k2mMAd0zlTblTn?lS?ABzgBA+Mh@!GB?Ba zm3S8~K_2_<8rhJ4dB6>h#si~8a)Z+si#({8?lzWwB^B(mS^2Mzu3(AXtU8_6?Q#zz zo5N8&290G}c=I>;)YE8UiB->|h_`7$#3>IN@3vi7K~+e`O@M8Axs0}x2VNGW;DQDq zg&M$Y!?$G;$0(emU}z>waN|tV{>uB{j+b~umo{tTq9Q z`yuU+wSoEXn1xLJl!AEOG*OEK>Y3Y^_Y0O!raXQsb((QXO$G7ieu9t7=Lbo!M!5O- zhL|PL+4*+3c*nyv#lKr8`&hojlH0?G1V|^3J8JE@52(4>f1`U57Ur;o$_KDK!BT$F zfGBI0@U>wT*BGm9?{C+IH6r<@k-9MxBoIZS*B2Qr;Z5)5v4M8$&>Cq-GrSBFKbK4D z>wjIklPLdGc+dZ&i926g!xcQ0aS{XckI!{WY{kh_L`!-z+D&9)scl;D);csF*P=yA zVr6@#sO<{?)5)RP$vfj4GE*QNuNKp-j2;!%ds3LUgFVs9j>K10Sr%)qA-`a>zqjA+ zY_3kmPkaExC-dS^21Pl`>s~>->*29k0`9aoizLWNX}@#H(a|ZKVDCrY4#UR=J84{B z)(p5kEtLRAaeg=9r(>iz6byz@w6?(e1H@NHhpC z%hpEwI8C6f-|%hO+Jcn-LK{r*OwUhlDg97i*@ufx`E%sLS4kgq}B9o+}WToy@bRHGd_VtUuw|XjPn{L>4qbKxaK`oORsK1BR%Xn3wWp z`=eyBwYf@+RsxSDiu_~n*7@9D7;A1Vb%Or~SgT4T`tWmi+yn72-)Jyj)gZ-I!MQg) z|642^NS${i50eo@d{Q6(FDFdg(7Axg#pR%5Su!$!!z*{XQ2|G7Ic9Fu$r1%^&}X-7 zSLcEahQHY8LjwT)4wIG9k<)Qf=LMQtgH56Qtn{}cIs$y@9|Tt128G04_>PT|swvpwrE-m|lL#I9FV&;@3a099---!y zv$wGF)dVmu>Ot$D>BXAZA*s0%8-fC9h|C77r|W(EApJNj3Pm$xjM4FXA^a-Oa?JsQ z42gh%Lz1)_D#hPzZX9UdAGm4~4pL{<9^QFU{yN@Q)W`VdX-xq$iOha-Zh((RinWZD zajc5eaA*PeM`Ta6FPQX65X~F+ft_^g2cLp8-RP3DLQ+K@NGtdHSSVsksw!`bM^bDe zS?IPtxQf*sE**J(QyP56$ewjXO{zK@-Z;}mTh>9XmY`|wxz9su#M7zXS}A#0JSJN$ zWaU@f>N_lSU`iX2rmRo-IdzLytI#q$pDb3&KV)!GHRhr>-MgThTmVzO&5r24E>CgZ z4V5G-)+LKX&_PLC{hzzNzcv`p^3Y0+I{h0Dzm}dGOJBP(=$Zg}&m4pS61&i?bjLw1 z<$-Z-s{P4+2VI_yjWPZOu%6UDR9DSd)r)OB+kD_-90a;jI{tJYK_c_`V(i0FjN_L4`M)P1&i--!IoixS+}ylYBW!oUj_#L_@is3< za31WSu$1t)5~k|5`=s*LFL6j4{tv^(0R`-6PKZEf~Cr5o@Wu%=Ld~G)*)!-3vzY zCKhq*$ewuGV%+4S_c{jfjtz&JAed6mSj&M?GyA&Sg?NYRiz}TD2d3FDS`DQyai-hM zZq5OCODRg?`Q>yMm_nwk9q2qY3LWd)%E3#ue6Lsg-A=v4z5_YIMIzuHLO;~ge0uue zdr;A91$gLUMv|>+ymZx`_FZdn1>!oe{bA*6q+Zoj*Ka--j{qi}m665Kj{#g)u<}h( zT%8vit=f4hlW;)qgjx4LT>*N4Y_x##E~w{PFD@>Zuga`NWQCsF@$2tHlhnbVSiMX3 zrQU>!;qu*E;c;=QaRIWC)Z22_d&u!wUX+1FD1y?DDTTl-@Fa+HJ;MeFf2L8I`D(bIC6@Z*<8>!vk-HW60}6?G0J`HVFcHHoyO6B-ps)0K4;b{4DLJ zoh0yT@hK10WbN32BBXCnHi4Rp_n1{x;;$StPXR;@daV3`s#Do-*n{2gh`&Gi(-XH2 z+?9q}`cdf|Df#~2$g%s)A+`_rn~w>mi8m-8jyS8G)l6A~09q|OrnV{}G=WDEX(Yd4 zBQ+`D=d>Qw+pZDd?b?f*8$HKM1%&AR`gE%y+_c=Z{uXmv#uxP9t{zI@2AsbXTVC(f zG}+Kpa8MB_iI_Z()m;r=@Yky=m)KsKKP0kOl$R`7NRg)Ku|&P!K4OE|&_Qr+b{*k~ zO2uAinvDpES%qrMDy##z`yMV+dm zFFwY~oL|3_srhAtW)nI%n~uj5gRT<$$&$%-E+! zG#(uRA!p1(S^L#{NIGcMOs~k!%j}K{9xI?*%e|ms166+yyQ^hKqu4VK#S&dF-JdYhY_{$mwc74I*EaBU^n zs&fQ+)Tmq7%=xOua?=K%0whQe(B6Zg6@D*OETBsd1;NSNI)5`LM+ldY#o%`%mazB1 zGu`b(U*8S7WYv{3Uo#ABls(@1>u+u{KHKT_%LfFkoS-85By_tW`3!8D5Vgt;`Pj2- zx6Dt!zq?2GNzLPotjVfOu2~HIUvaU*~YR1u^5_~;qLi+d87NlvmQ%U{q+{) zSU;d$J@{NZ_Ou;_3QkDP)%w zB)yWYs3*LC8-`&lT~I`Qso^VPC=PG69BHa#JgY|9Ztc49za#67-IsPwpK8Ms9vM># zoow8@OJE``TIQzUJ(ZGxuUrCCL3BFn;Ue{v`7hLU$QK=t@0sx^SW{~I%M_(CY5M63 zda|{I6-XNA*&g1s)(wdiJ8&;^7FP4~5R@8i#cM=8q9mMotFpv-C}dy@s2X%qFKFjVq>kY$G!t17^J2ydw7;}F?r>8#p_T5k7t9LhrIg*GnwpL z@2Kn){nOLa!X-NxW%P6fPo}Lxb4pXpy85=jodF-;ax^#}hfvF=r{tNHe1&)qJ8S#Z z(cw5eewmg@dqCQh_bZ}1y{RYlTe~t+IAob(CGub5{T8D9Bl?p@O;Do==ssHz&ONwA z|6APg$4p=HUn5{LCvJZ`eJgxdvY2>D9f-tx+qTfcLa79AJ8+Pxz$3bq{6YT6GgRZ+ zP}DNkrK>@r0@G>N988$;W32P+#Q|QxFA40X*4a~+1x^jTD94YtuGQ1_al!0eKWcsf zD&Js{w#vL!CfW&;=slo*5VHSGK*7I6a(NJ4C%4j(Y@YtBV~P7Vgdn1JW=`W7WR=9V z{@>Y96S^E^MSXw{QFY0(&^WK?{NJe3`B{Gv9zUt1_Esq)`NX8Hdp#aLJ%aDqC$#5l zZqSvMfnX(MV3!*ht#NCrn8;C`L{W>e4l! zYurPiG`TjAk0mh5n)&O`J|@u2dUtSJ5_pjpLj-a&xzKP@*JiZM7KV!(+|TMCA>6iC zQLD-3=zt%igElP~YU{*Cc$#a zYc_*SzR48Z(AY8$tlC6T0ZUwj)fuZ;+BeJAm$*x>w z{p3gs;yUy28lsI1;1+sC+Kh_b;Ohg06p>yRXV2rR`sg~3W%XUzdP>jS9>~-M>F`kC z2rK8{J{`$@!}@~Mk})-FStYU}WL0a^QV1qdo91Nv+AJJ1S{q-b}PD<9DWy!cy`+qu$UR07>E zLh_YXq)er+O2&~}lY7{dTKkwv|A<0aTJ&qt8~Y)o7s=7x(PDk+CZOYv>#-1`>9ox7 z2%5;AX#f@ps7U7kS~V2&|6ui^IXolYn7-~wj-~q`WJk9j8~H4o(*qlHl{+U<^rh7G z7moAfKNM0ESI>V6`xZhb_v%j5VymV*k({hMzC-(PIf4_Ctg9?dlM^j1NpkxQXZ}!= zZ`FZ4tR5Nor^98oXWMD%PVONgD!;A!2Xz7X##;895wf;K^@?NRbFj_k2{KK(%_v4P zR~pDyHJ^`VjI{#M6ckNy!2?PDjE|(9Jn4Q?A*VOryfAaF?MVzy@)cF=f9Jw?hueWR zVmzH`CJtTdt<&*c)Z}vj6-n0+hA{6=`@c9I$!FQ#UlE-7dK}`k{+gq%hmtO_F>$x) z_!Jw8-3~+^dg!wNXenS@^V`xbc~JH1t(P^|GNV!6ZrTy;tHytN^zXfvBkI-hRU8MA z(NPN6gH$iqqksFcGj`?S&U1AJmGgGH7*h%u?q<_&{{ws&P&VbzTklCr=4ua+OMan& zEwt7c>1que6`a!PwN-Z*GH1?$H7~TWZVrl-=PY0~Sx=Guj$J8dK=_f$!{btr6-U^i z8dVq$zjQ!wALrZo4cF^jYxkLewh}|Gv_|5vTp8*S7Lu(#m_2jN`W~w#?UHI7N)AJ! zjxP%Sbbf+gl}m!R^z!cm9(p}4=bul#Yfmx}AI?l;NH}C_O#;W>n@BxR^wAHWu}q=O zyWL6gE3EVk?%=Ca>-x_G%}v9-7M=niUWLkqke|}j2>SV`awZP24fM-BR5aoqNvy(Q z-)R5^TGRqPvIRIW&Ytt$Fs@8Bg3$E}P@h&4Qo*x37XlSF#q2>(?% z#(0$i_kv(09#a>Cz0iI&g9MdVe?=k!2cUuA&Q)l>EfaZUyTib4zVL_~kPmHn*&Em2 zf2SI+R_QN-t-?8&Ud!}$V3z*}=w>8qaO)A%B8OrwpPtb8PpD&oM3&CUq0GfH-goAr zybIoRMf5Ne#v%&Z0*<<2N*$*w$S#s~onn7Q5vB92!hc-Um8ReK00&lL9X8P5A^$yl z2Hl|}f&FxivUnMRvQ%b@EOY>0s3a71O9S;sY~Fns>1J&SKMcn)kdnCIof<|<>d^vH zkPD>obR;uctcY)uanQ$kU4D`n!L!9+E=hWre`Ua`iFaPN$9i)_Htu{#;r7808MZGF zjRub|w`VS>#%1xp2kHl)?eH7+ur-$>2`=NB0vY}4kCy@3zxx>H|FkLvyl|sanLp&r zxS{A$z4?7Bq6L8+Pa=^vE$UKn-^CG0s^c-v!h2VS z`2YrFICT8*#Wk}#`Q4mYwFi@4OVTMT-}Pmh!=FQo`d$0+?CNk4SnEJN}uNb-=kl-XCafCNGRuw#DS zCKHkV_<&O~-LAfnpfBQ6L5P-q$@ViP>h2(qDmuDcFq>>Jn8WL4;-Zhmd&f`31bUzS z1i#@1P!5r*CA6S~()9+u7z&`ll|F6D!?^f&UmE~8vIn2hgNo0gFHC5rtckO8 zA4({J99mxl>wV$3LJ5}#bb@yA^{}7AhT=n>7M|T03HI8;)ljsE>lv$ZHPOn`;Q2Q0 zX~C+c5bDjaFp(7AF&DZNtL0SI?7Uu{Aa-<^uJSMiXF!zqL-x`|*{Y2zJ3TmHgG zKQ19GYSwgMbJ{ChNpb?3o1hdXhjB!JZi^N!@^)sHY(rXp>MAig%>;){*gk5%Mr(P$>c&FY*gIi2H}C?qW+3(NGtV>a$CT{ zJooV;;PkJ{c??+K%8NNuy*Y0xyce|^a|_8}!Kb3q(nm5?|LvM9fFJ*PTR=zku1~U* zoV#4B)nWJuK>(5n`Y@W!!QQ-9^Mj6WFNeH`DsAo~wc-I5_x5af#|MTN|1PV^Y6J4` z##5{@l`)=Eao^)O42Suei*Tm?$%Y&=t@(-4wpt*cm!x)Uq({KokRV@)FX3gK%B;c7 zYS?bIm7uwBxb{gG`Am1OHc^0l?$hMt8^b{7E;H7e`(HrIq@SJfHgswS)OLv0wYwPs zc$b_)KE_+sO#I2=yGQg zl$PxBsT|6kj76CZkM|3q2&%Abn{X@03$Uyu4X1`!MKa4p4`*)mA7Bgz+|wt=W9KEjky@mD92Qbw_jW97}r5!TPgB%ty@yNG<1 zkRW~+HXR<_FW%;l*TWlvUzIa5?9e7k?XtMj-#)i?;k5*l^;%l;+MXAzNL*<&{G+|w znRUopCQ%&UlXa*25eyJ0E~4i&L79d{Gg8}y-ObfJ*I{=78X4I{i|D0Sly*d@E&eJo zAFk&UoovP8JfQOTUM%kM3&=V>Miz-2An)KxO;Uv{fjK8U^M@FLooY-U$x%g=bDaSl z21N=Ek@}QrPJc*a0w_hznl2Js+Dpv_VXhHRD%LPLXG~Rb87StJfeM@S{{iG0w$Kj| zA6COTNG;3*s|7(T5Qw|7D~>}ZZmH7gKFa$b-a76LI|t)})*wH5*>cx6VjLM1;d>3iJ-33Unx4;!sukeD@kI?md_*fLZqlh%yY19E z@a@KxL~+byxuaNyu9q@i`tW3eOL;BVl?rbO@?9v`vS$2hTvAcSS7j}FqhY{Yp=?cPb`O={y69neCfZtphw zNWAWwlkogIW=7wu*%jzi&1;!UCf-h$VWG2HLU9ej$NO$alS%-4s>+_O^H1G&vbzXBg_yCzB`R0LOE?1u1o);7l{1_ zvvo4RDtLhPui9|rDZzgpw(gyxuA!9ko5;6)n~Il~*BlqHrPYcm$Thdn#!T6w=BtMLdd+~w}NUD4R$A9MV8;2Eyx~k?goM?iE*?GvEYPcic+0w zx_t=4tGX=`;&B!#Ng|J?^}v}NN%Gl2moLhFi#n~-GEoN-#uKu>y|lwLqhg5if$#&? zMk)v8a0t^ji5E749HJZtqYNj=(jSDOsi&BUtg@P1Y=1HL_ZR(;^TSf5H(!YJuqGJp z@`JRNR%zrNYukp*732Nbg7aa#&a$vC3)A8X!Dn5meWq=y0qg+BUm-|f7b^md22(Fl zgax1<27~=UHoW~v;=dki1!@*%iMQ>{?lXvH_3>%&xGQowPl+8IBCQ$uLQub`M?iLn zXSnfucAQ4wM1YB|x&O)HHoi%%xYArI1V?!~hNy_^N7nj_!_sNAXR&5!ZA(t)$NvN5 za1L*{VGfd2o#bPvR<)IyLqv!M5 zQ?y1Ks{Y0>&O)Fv9_r7P0I_gN9s299#*AE`%lg}Ubx zguUK`r)KF0HNzQ_w_$N^)RRtgalibK<^m{bNpY~3{PcY5tQ>PnHix9IS>Wwb~oLZo#S`y4cXWtbePb5~|aB^yszpm!|qAlj-dEh_m}+O2>0zw*BL zM@Bs)$v;;j(E37*;qGYr`(kWddIyY?6z9|kG=;_b3z(7lBlXyiZ**eVl}eb;ZU_Z^?R2#W&6$IR^A{Q%Vq^2wv=1F`t@TY{3`{(0hJ_(tH3At~zvv~3vk z@9nQbxuIO)E7X0Dr*);O&Ll1K4*<+{sgFO*im*l9_wpKw(3EHvIx?m6CRu3eBt8gY z_m6Lvmr6{IupB5m82Dbijko9kPeAcsWd0=@f?W$TF7C)pVseEsrg=HSuWs?%I~lg& zxg;iKjuoauwfTo09k%JMoLU^d*0d0382I5Tf654Du&uR)ljtjCW635xuski8UZ`s# zK$gcRlE0d%K54}N$QzSjQtO)NqZbU0V)@e>V+OYzDg43(aVnkg36Jx0W>JcRaDMAN zj!7va-x-zg*tZ2r%2XIUd%|0?<6gIaEvs9A;qq`}JSz6I`Rj^35N{cR0!-XCuZpjM zgaDO{2anWze(4jUN!~>yJ7Dja(pBF*S?*K3iu;5Xv`j=CKJenn3AQ`b!O%#wqd)gD zkr|v1{Q4ij)dGy!@YG;0fY*(M%E9Dq8Uo;QdZPmtm=2r%-sf?D;To3PfnkZKuP#K& zENBER=ymW;Hud)M-?LbcNxm^Kx7bjx2iDZ}QabRC1$~@0PVK7@;5n4jBUeXR-BzFV zsylR4#IXhcs9h#IMe%SwF1UwnljewW6SvIIeR#ZkEZ6&6D^Z>ELr$Ua@mMXTe zwF(s)@un#6=OZ6|30)+d7?icLo$CaNC&^0c8Ac1q8Yq)lwcoVt2C?%5L=pra*r1As z{o3j~Xgi;XP_-As4cHw_V2>QE;haaj3UC+ca+m(dv9A3@9Ro4)XMi|t2ytX*u-+i^{*2a==4J%Hd#@H;7^z{DA7~^| z&`TL6)cHIDN%8hy>@)kIJuZFLpbj=N<)XfoYeOSC3sbfTA#p3YVb=3w3L^9VqBH45 z>P;MZTv*2ukfett5|aJLrJo|;CQ0II2&-onrXKFW_EUfy>l`PjPrrcdiTgpizx-vw zC%OrCAwf)&M-*-NZp^>#!?g%?pI#o`??m?4T-eWX`G_ba9PdOkKp?(jW+OMXOE#8{ zYUWSmn}CTRN5d&HFo_(woGpTUE<#?Lhj+|=ge!>oD!M{G-t`$Lu>C&>HK-L09zHh3 zSPlm-x#W+fwX{VlsFZQOa4X24X(9`QkG`F_le(uW#Z_k@)mYcC1z1}Cs)U&k0FY#0 zAJvxGJKVt@dX>lPzbhw?A+Y~VCy~UM5p5^ZF#rKX`p$f`Zyx`BAI(_qk~ycg$r)|E$_( zCg=ntCy1{#R_glgBEtafq3wgh)yGCdcLc&{ap+PN0v5LjbGNyxa;s@at?AT%VTefX z|=;eJ!muM2Uq#*KmEfXdlkGo#Cg~@u*1b5 z^1hBt=hkJOxpzOmfJqsCV4BL`=^{=n=*>%(aNwxtH%V0VcRzMSlwn#^@CFvSe!m-b zj1K1tK800s6})v)DK^OMEv}|!o2UsbRNx$C@Co)*kr-DHm;ONz+w_z}8*Lt{rZ;(z z4cpgn}VR{qknRq^NTo#DXw?ki;J&-&+o1#-(~h7&O9Hb%C;T!rS# zT5OY?El5vfD{kjmXOLOGYy>23=0CjDtWbv=@cm^^rvV;7Z0!+|nFu+5&sXN5*Mcz& z5LAeXI8{F*i2RPog;-~Y$o1ZxZI8pm({x*V`#bnWiZUXNjJs50GG6QplE&Cn zir&ci2*{mZ!dmTJJc`j0jGDQ?2@t1XMIT93hcE&bWY8{2A>xc$K7p&L(L1^+n=udH z!iVGPRJBejHwRA=m*>AZN4+z&{@~DjCM&kKRuEIsp1x_ShmA-~{G7sVsw%R?spA(w zO_rB9bDEfRhQ9T>%bKPoKE!u;?loR@Rm-1yWq*x(Y z8zm*u@-Nfd+9#GO`9dBH?}V%(;tx5-PmbPWwfUFKcxDPy!jd2+M^eE#C@SWbv~B=#7=`mo8+c-knSmu+~E{CSH(zk~7d1m2B!#f`x? zPws_#edAW;a?~x0d+#aFCq3mAQyrp82b{v7tay&V8s$x;Rc(7>2(#`e zm_V;miZ_8&OIQ!Hc+`ghmRgrxfsb~td+jPQNZTEt%whTV)G9uz6b-1!7FH0?J;>7j?gA{gR6#HLi|Om&=EqT=2Exv zZ4IFw2y0*D{{VBHd+1EXjDAk~`qQ_?eLQG0Xm^BjEY|i8JjNC*Io?tWXLcdU!UCEf zPVg)bxONt<^8AYJ7*@l?7^ct|cB#H>_m>w%IPD6B9#sC}2pjDKF7Ph$ft}dpRHRzw zmx%1UM=-q*2HNjZkaBO@R0&q?QEo=JR8+XKiw%p8umgC9;_n>8m?6~`hBL%dx@1mM z0A_ww8k@6F)=8! zyeol&;`0-TrBa>PD%*0KTLQGD=k7TdzVfY@(*ngMTP!gfm?q*AGU*dBR{P7%q-{HT zfs)8t0UDfh0P`OCfdfD9TAZwWNiSrvCsib+iMG1Rf2`yhgu46cT%G z$_2B$76d#RJtmuK{0Ds>iDo4ykFdJa=P8Cf6`6Sq+WG zBPJ|6_m{U}o!4m0r4Ap|sKwd2D?U-o?;LY%T;mXbQonI-CnaWE82rp5mf~I+-W$^v zpa%`umnW7YRcvtuOS^c9*vwaHWoLfza>vHdQ4Mvt=W=;l+GUt1*?~KLV`03Z-(7_c zE?O^fl`&|`5`pG3hET5abPgDy6|)4t5P+ntvn&V|vAe@s-&6Od`d*Hi2Q_b zqm5207>h9Ect}N+f7B+OocD-!A;t0TR@kHYnJiyq+aEy;_*?a z*>bBDErGp;^6E^vQom6FZS0Y4;@z-WB@WUk%vG$y3!3_k$PKF~DJ>e>H9R-FxT|u4f~qme4sJJTLB97= z^(;yy<7hWK_=qE!yE2@(?&EGYnxnN_O54bg147U7+unwJKDvvQXYTMlWz>Z^<~EH5V{vl)7MI zP%h$?fTRplFzp3)%(ay72E|Yy*6{2~xSQNe`+dX&4pu27k^T)z(E^j#EUL&@#}OQ>k}0qUJ>!a4?OQWsTHM}NoI4<9(A(FT zKw1_FR!cK1HX*cDOgmaes^~5epUf0tP*~pGqU3`ZG6_Pic+GuGFSrL1jR5kVpoN=n zd%*;w`9kKZyKLvV^kc>uNwwp%cpmK?updARw##CZUM9}2m# zU7h9K4tC|4+Ab+&ghjbmnQz>@%d()nLo7_C=x-N^c#A|_L=!e(Z!EfwV$(cf-3^9h zh~}WS-Hd()Nlkkyo7t8{XdR(l#`DldZyVhfkEYqLxcqfQf=hiJ3SVPGg@7iKVRU~4(V0Ml%8@~{--7~NAP zC1k9@%>*J3!p!!EtcVD755qxBd}Z6X2jXxoDhq`JsGS~yAg?*1;86@l9->e ztubBTC>EGQ%wDi)%KXPD1BDKEo7pw1dbkz1Xy&0dxD^8=3;696bA@qyGPpzj#FQJlh6^BoV=V&b6VL}w9mEZkw7UIt}G_V*fZe&TmR2C~`Y zYBan`hExQL1f;`*6m5xf%n*Z!9wDNaygxvTl{-fN5$l3sN2hM9>b*anx@Q`lEk{S?+d^hKE+?%$YKSa&WsB@>{6kDZ*~Dig^zRTeU)p^v<8UQ;2Y;}`rw`F_VM>D6&K>ajr~QqlatZo@ejL9l-x_A)>mB0ZVKDC z%%-pk6<_x7wWi$1oS*p>8W*`-UwLXMc*Iw4o%4x*l{YFNp=w&CJ}G8W%Rh*Mr97f; zGT;iXGb+Wh#rB954h&2L6EusLycRQ09pgB%*%QZj;;T1GXJn{0p+vpJVQ@y33t0`@ zvFQEKw!N5wmVU0@4cU2!R!${5_PKd3sLhT`-fW**hupFEYdbcv$s1~jIjMEw#AXHz zG+zv_&Gm)vk9Ptv0>ya;`keNrQ9L`>hFOKhA_3%}?h9n4g$2wOt%|adtcK;d?GTJt z+`!iGH$u5jwQjcG3X=4PFrYZWy^|kN3#((RHb0fhXMSt zNf0tPm!<0I#J`I=zaQ4FoWebPYUfwaL#wXR=Re@{r{0H9;#A+S>s7h@>GcdZBM5r8 zKB6maR`(P*xa%wdAzpJRt*lhMRlyrQG5VNV5V$WLoyok8D9ynFhqEb`PzA6_B)g$7 zv^f#vmK8|kX{o(3-!aW4JHps*aT;XrxH8h8zGX=TUTTQwG|A>vq88+Id&H~_{{ZgO zb*!a8J^ui>6uu^fJU-_2HI|a`%%V*d;p$W(rGa~Qf*V67#$jjynu`?M81E?g;BJw> z<{;Wqt>Me&2eMlHFo7!Gz(ig!cevpl;1DH0IvnBO8?+<~?rZH=Z0fp&-$zdKCV^b;an^90T(Ba`}!QZ=?=hGNiz zyfBB9q^&CvB`&3t5mA)oRm8H#kjy!!2?U!&Fi{4>Nqyrl8Z)1R-(L{;uA|Y%_*IUU z8ehcpdUeOa%sw7;cGBm)4rSeGedYyy20n|>F{0D5Epm{;T&({9Ncu za<__z#i_>RMVAYlOV;U0wFsRG&oYZ(?Xpl9qQ$jb_<>MaVzmPIalsK=C8`PyH#^s| z2~svK23aZJcsGDIGKtF;^B8Vd%(x0eD&=EPyE{xd{7Z*=g>X>b?lQ{Pb^x!ON>qq) z!Et*s&uCjN@qAgtTP%(9Ii6;Ir>TAJZ@j6LZ^XfZnXv)m+*`>IawFs(XW=h~{4%0| z9;MS`@h~uARk1%afieq=OYJV;Vq#eq+A|kna28vejDVN}n5B+m%phPe1ll>?P#EgH zT{H7KI`i-!J5z4E=<(CHM$_-BX>-@h_?-1$=T161ONl!mE?u`yT|s}0%R2gh+C87x znec~q6WE>^z6@1%+rDOA00_5lc#VKLHmPBS4f~1$+wQ4xOO2&Y!-p|efBOo92{w*- zsbaXlP<*geyrH7_Uc?u3F;Fiz1@xOao(3xRil<0iVGRs zcRw&r=jH(9g?moSd<4sxUT2_+v2Up1UFvON@{d~{2s8Y{@e3E&N|e3lwD&!;h`B7P zb1mH*3vR{AhPRXhZ1_Li2&Q++0YFaFidr7{Ld%jir*P}NU3rGj!GADzoXhHGI^Lc2 zetvqd<-f!@{{RmD3+TNre#r@7U+DrcK8(I6<8lF%Id}SnD6hONTn9FW8vQx3z4=Z! z_Jk4GW0M*liq==L^)|muLUVo~8MEyF08vVf;j$Kg5d}rK-8`?#Dg90@E7)b=K?-ai zWOmS$}XR{FZ}p`rIN zH!wc*^)IURHDSEpUOJAd>%DoLYrn(CO+s<;za{wV=078+5S-3B-|!s`E_vu(Gtg;z zdh5M;>Ag)aIzJh$@u}5w)Z^g2Nq-IL&VCE{-7lj*A3aab==5L3$HK9nsPwzTX?=Io z#*5MU>%Z`L>M-1MzgyPtJwxKTZibgGTpjLlFH4sRe+%2A`}kd0&%IdJN4b3oD_d%> z9kutTy)Une(~VfiAyj#`-DCoegosZR^2ZFuQ2#H>c5oL zoNDdW_wn=4_?&Cc!u6dby*6fQaq@B2>CTKgT^${7;OF6VdPh%FjZAzzXgS(*(YHsw zzI9hi_-{WyGW7S-OVgQo+J8My#eFZXr(V$N`;NTybJ1`3H~7-@@1r>BxXY-*a~%z) zV(EIZ(c4Go=SLgw)I)BY_&q~UdYyl{zMFKC`u_kQ;C}ulc28*dLub#esH{lt2bEgxJ zkDrHcgsxiatLSv^(DXf5@jv6-XF5OQI=bGsE-}P zNpNA;&%^xcdDi|9eSY=6x8ga)&ORIo| zi}<;pe;KD5V@o3XT5KYIry0EtMXq;R{efu{5P%q z&%sli^i-{0hB0)!^g0{rd_*Po)3-+uhetg>Q;m6y-Vp{Uxn0S{0R1y?sL#;_4CokNiSc0C0}hX zO|&ZWt^8N78ee$y66NTAx(}D1gK2Tse~X`&jc#$)&8MihzMLH|PpRwt6JK8sewRm~ z_XRowm`ms<6BD0ZonActD&X@ix9sWnB-%~HApMaR?=S$9xm+&>!dfvQC z#N(~_hfl38Jug_x(0aU0zAdM{4z#0;_5Jnnr!($dx!bdvv z@zD4>{mryK6Q^#Pt@;j*dap~?<^0Z1gO7pI`Wdvj_x=YuJvXT~)z?4dUXIw&b>mJn z7)_@!=r-2%oJQ?Jiz=_~0vG} zUS;&(ZFih?`HL!Xw^uX9oP2++e~*hiXivRO^~H2nFB0YJd(J*f=(_3Wr#fFn>wn=I zUY^ZILSMpt~KYOml%8LW2ZBHc~z+yoa0CQKRWTJy9IXR`mer@`g5;1(&hX(>g_q5u5&Iu2Cg`l->28b#*T)*w7ucd#&fIZ zON6;_(9qL~<{A${Jj<7*{I{jt-d>&M!F2T>-&enY ze_d%_dP?VBA<+CdoWg%Sd&|?mQqRXjrSucL&sEFMS=wJvTpdk~GWA~-(SI4G>6q&D z66YT&{$DyhU7bm!{fW=c)ey2cCm{ z^z*0QhIPi5q1Vqr2x*!3IiB_7ry4qO()9iO)u(Tc%^6x1qbnK{nZHZX%;#P@z3a^U z>wONJ^%}h|SLdnu9s0fWy#(i8+U#}Q-dz1?=(^t;62sx|p`ATPI$k`?>3G+8bUJf5 z(1%ZrO*rW^Gjcl8+0$i^(^O2_MF3Ri`Doqtoi=o zKJ~pXUEOYd>Fc5RzTwmEVy7A~oax4&eFlMT6K-|qTl{=o^YYe=dcO2$662jd^)4H$a^b12{{R;;dv%>0XnE;A3)IWvC3JD{C&EYL z=MtwrVCd&d)!X5HYtEVf01wRK8k2dmp{D&De0%(-oo-%-PaQ|gv~_+4Z8-Ql$4aep zQS&*~>-E-eDy3__jJbX1JzPiNdKk|7@zTrczP@@dFo#JEIN#&5q-E*qbE)Qb{{STT zNc3E~>b|hE;pRH=FRzKe$TH=_;$ts(>BQ%$#+-CtORIX{$b2rGbQ1mpQeKy-zen?@ zH9w6x=()b9HSxb64xH)7omeR0uD&4jUi#lv>2ms>hkZ=za`k2PUs0o_>+h!e{`6a% z%Z`szuNv=(#+>NgwEQ1`n4y?I- zCY;aQ_c(@}LtjwV^j{O@);C<`gp`7$)Iug!tru_~0 zggSk7-v*mcxp>g#8PSz0FGa)ZI$S;`SHth&H9jM6i;W$+9CW%nd@M92>ge~Id;{J) z{GW+>yXm{tceL5po|}%{H`BLE&r#5C4g5m7$Z5uxsi_TF?t7l0IgC0v=)70U?_Mig z&%?&Pw$k+X9~%AYbQ&5|cjb);Z$G~Xxv)5BO()7j4 z{A+j7&qn<`&Lc14;xlP|w8qemjCc4Sk8K&ucySE1E%=N%V}PaPLG zHNLI-{{W3{bI|H_d-*w>LUE>a=3Zwy-kfUd#+TQ>OEV2GUjG0i^IW*PE$H>VZm(ZD zv);UE#JO{AE_dp@>&H(T8tv3+db`4N(X{8IZ8@Cl%x5!ieFpP=H=ITtJbWDETIg={ z`ill}HlKQ(Ty?!~Up;*5iNtmDInkW_EMAPv=uRW2I`gmIj?w77S^ewlTj>AU70S{2 literal 0 HcmV?d00001 diff --git a/data/whaleShark.geojson b/data/whaleShark.geojson new file mode 100644 index 0000000..574d143 --- /dev/null +++ b/data/whaleShark.geojson @@ -0,0 +1,3369 @@ +{ +"type": "FeatureCollection", +"name": "whaleShark", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.905, 28.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15092187, 26.70778019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19431405, 26.69305808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43455141, 26.71866168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66721037, 26.87850168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77600123, 26.9982775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78230749, 26.97703761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.98808318, 26.91863085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4822468, 27.1560278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12396945, 27.21801619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.36064517, 27.26480553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.65288769, 27.34955055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25734269, 27.52115176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70203633, 27.6354549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37979903, 27.65720727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.459974, 27.58108209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22888106, 27.6939221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17547349, 27.67963752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12336008, 27.69861157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.24401494, 27.65816549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14502162, 27.68889683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02510471, 27.78551247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0321817, 27.69172715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4456835, 28.30788126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.98206824, 28.79521494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.86324266, 29.26967399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.60598556, 29.78177559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.95816138, 29.31235575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.6453797, 29.08578622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.69186252, 28.94161771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77151006, 28.76775632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.51935507, 28.27833741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.59863526, 28.22055149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.69973472, 28.25320244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.66471034, 28.26381606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.64109324, 28.21592523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.66617161, 28.33088712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.57741022, 28.61194993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.59985494, 28.83762154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.94442197, 29.09501428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.20010068, 29.21886693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.27553644, 29.31193503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.33079853, 29.49443452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.40687222, 29.53128072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.52693964, 29.37526598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.89917865, 29.21371598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.25276251, 29.09988536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.83049638, 29.04284932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.71788554, 28.52509337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.53032632, 28.81839383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7461459, 28.83161297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.07081157, 28.43268695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.89155182, 28.07964989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44545436, 28.21214795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.45215379, 28.24308348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3960633, 28.24392411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36298964, 28.17111297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.24791905, 28.17833577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.20788109, 28.15637118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.11794089, 28.0946486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.09780637, 28.05961936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23102252, 28.2069826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.21827274, 28.24686799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.27489403, 28.25053585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36251169, 28.30944638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.46325249, 28.35871613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.32085947, 28.3029358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.09359762, 28.43877531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.0510521, 28.47375765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.11451708, 28.45212468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.0671881, 28.30913686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.93056035, 27.99806794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.90338949, 27.64806271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.21843021, 27.14519097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.77213915, 26.72176727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.74053683, 26.52977787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.77738464, 26.36788401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.52374441, 26.2461572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.31959705, 26.14810167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.40274888, 26.15164101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.56024258, 26.10187572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.46933751, 25.86894499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.76151224, 25.31280195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.97737096, 25.63570962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.14400541, 25.66030226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.25063803, 25.68908758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.1877839, 25.7006025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.15356781, 25.62013761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.27087045, 25.4183119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.65892788, 24.78360314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09921926, 24.06236738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.781308, 23.5608632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.69306702, 23.17138436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.78222654, 22.92638937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.94971355, 22.61659131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.62182839, 22.4860231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.62025582, 22.18764338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22943963, 21.71675902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.26788194, 22.09990357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.822, 22.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.91475, 28.09305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9375, 28.0625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8928279, 27.96539514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.80904313, 27.75188103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.73005311, 27.42771147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71813572, 27.21207211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.59771399, 26.77953544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32494641, 26.41023535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15764613, 26.17535983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11656696, 26.05521427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.12489394, 25.96852289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11614542, 25.86885128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.04106321, 25.77878435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.09768798, 25.62392122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.03169248, 25.41677463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.03231729, 25.22878106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.10137953, 25.12695291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15019741, 24.94011408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4001279, 24.7571588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5325133, 24.49745615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.60848676, 24.33383091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.59250952, 24.25511555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.53586592, 24.26163703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.54115205, 24.38996075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.50880439, 24.75340727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.36820311, 25.17485145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.18933588, 25.52021071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.05516117, 25.67964507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.03265608, 25.76852727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89692395, 25.85029743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93969283, 26.03442832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94983555, 26.19595198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.00242757, 26.38785834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.03168833, 26.49222357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02658186, 26.54325944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.00184041, 26.55949265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93200216, 26.56951653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89920637, 26.58498121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85407229, 26.67143624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81848835, 26.79427389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.75778677, 27.34484231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.67750679, 27.65179425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41577529, 27.90934606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81248815, 28.37926968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23660356, 28.70908096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19599866, 28.53586395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04821723, 28.60883757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.94951984, 28.70600471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.74298172, 28.63450292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.27916821, 28.7548992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3897144, 29.42623026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.24, 29.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98780002, 28.01550059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35813862, 27.65901422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66373827, 27.31554496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86026472, 27.18439059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84968404, 27.21087519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92815681, 27.15408395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.90900177, 27.1542669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89849425, 27.1065248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87046444, 27.00729629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97926483, 26.79278366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.09207261, 26.61489677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.00170694, 26.55718136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8862699, 26.68362602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45556504, 26.94258057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99907126, 27.29529462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02854283, 27.55671107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44377315, 27.74480799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7997991, 27.73766438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14409506, 27.6557039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.38600848, 27.70225362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52790773, 27.68080802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.72674193, 27.645513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.77900583, 27.68764704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.91150214, 27.79925487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.3675532, 27.55926042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.92141322, 27.46357495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.25089283, 27.31571508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.72334547, 27.12390358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.22409907, 26.8966063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.7379763, 26.66190208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.30335684, 26.37989536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.6885595, 25.75063878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.87236667, 25.36715628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.10452804, 24.9862529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.12057623, 24.85617084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.18126984, 24.75171583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.25087255, 24.59840217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.25735927, 24.56321734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.26175317, 24.52154019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.23921017, 24.45993272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.28222065, 24.4383046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.26599893, 24.40385374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.25779187, 24.36986289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.36364592, 24.32562169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.37112136, 24.30430326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.3268842, 24.32586675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.36727279, 24.29376251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.34256086, 24.3348337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.23951063, 24.49435184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.21390118, 24.59423564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.19978799, 24.66206288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.20394389, 24.70389381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.18407899, 24.67551532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.2129919, 24.65334809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.25694196, 24.58739215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.32471485, 24.39782113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.36674, 24.15724946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.38525645, 24.01151504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.3955692, 23.90983517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.3845955, 23.85246014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.38381199, 23.75957951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.41104349, 23.58093778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.41471445, 23.44564915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.47856087, 23.33253207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.44677975, 23.32539176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.4404147, 23.3221238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.4441013, 23.26400378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.46409493, 23.18176446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.48626367, 23.07625652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.44736955, 22.96124398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.4561618, 22.82554829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.46768279, 22.70635363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.47060047, 22.67148032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.46769459, 22.76362096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.07149036, 22.98840288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.86143626, 23.16861973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.84693777, 23.27867968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.74860605, 23.44242142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.66867731, 23.64545935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.49215798, 23.89999033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.44072465, 24.08770489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.02833773, 24.35295998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.9753317, 24.36115418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.85070438, 24.58110903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.65645245, 24.72543998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.70022773, 24.79200582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.73021093, 24.79306885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.72021452, 24.76891345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.60762563, 24.72530126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.50127818, 24.76488774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.46452171, 24.87552418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.48784762, 24.96168301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.56124159, 25.03730705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.67089664, 25.16379532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.77936047, 25.44816553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.68132318, 25.8259675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.49560292, 26.24418507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.52848601, 26.45100198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.52755919, 26.65814909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.59247295, 26.78584362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.39350026, 26.91947552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.23284454, 26.97202514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.17230694, 27.00520667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.17759923, 26.97460284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.13821136, 26.9233063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.16164816, 26.90225081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.17958865, 26.87949453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.245035, 26.89684837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.27285876, 26.96569525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.42270957, 27.17909988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.427471, 27.25996579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.32601043, 27.3140973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.24829828, 27.35522816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.25272199, 27.29303942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.28789101, 27.32055298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.26022926, 27.31918743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.33373361, 27.39699824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.23208849, 27.38235963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.11435681, 27.27540893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.47544226, 27.20166277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.93050225, 26.9415476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.87481512, 27.01960126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.62615907, 27.18724895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.3022213, 27.38923589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.76217509, 27.06010567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22229675, 26.57408212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.89048137, 26.18681038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81250021, 26.06250014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7575, 26.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05, 28.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.375, 28.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6, 28.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7, 28.375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.625, 28.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45, 28.175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3, 28.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04, 28.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.00698853, 28.11800003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03399658, 28.12899971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99700928, 28.09600067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.00799561, 28.11800003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9630127, 28.12100029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7749939, 27.83600044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51599121, 27.73699951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.31799316, 27.46999931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29199219, 27.1779995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.30801392, 26.98699951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53500366, 26.96699905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95, 28.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.62, 28.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32443146, 27.33973653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.27302132, 27.33105591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08412624, 27.41535726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02319638, 27.47867008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.76738889, 27.57845679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.34300588, 27.74537734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89488615, 27.84475158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43839798, 27.91768022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.92628602, 27.95943362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.85218992, 27.9716167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8059336, 27.95655733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82195752, 28.0345053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.30267807, 28.15603554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.96236542, 28.2251541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.72609038, 28.26418621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.72202471, 28.29348972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.66538086, 28.33139609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.72870815, 28.35981718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.72492758, 28.40391275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.66528274, 28.41303733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.50579486, 28.40389983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.21737685, 28.37829994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.79229074, 28.32174551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.58986119, 28.24746241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.41508183, 28.19254655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.48219234, 28.26964374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.73171176, 28.40863677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.93738995, 28.52354323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.17091736, 28.62902509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22505909, 28.71198674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41443262, 28.78590551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.5009483, 28.84234575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.63274423, 28.86013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.95546339, 28.88211506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.02103607, 28.89263466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.04863945, 28.82833641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.06097276, 28.73684188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.93888633, 28.79049525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.76299601, 28.77854355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.67242613, 28.77781397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.60893518, 28.85632551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.55607494, 28.90155722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.51707632, 28.91707635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.49480312, 28.90508194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44446941, 28.87560793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.37627863, 28.84974945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.47421717, 28.86267759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.55706771, 28.80434504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.64268969, 28.73275681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.7228542, 28.62730569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.7566026, 28.51406783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.52444892, 28.32505301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.40778298, 28.15647638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36076714, 27.93289997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.39990631, 28.16519687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.38770239, 28.28404985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.31130881, 28.38938305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.25118507, 28.4510884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.18194556, 28.48766346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.0817671, 28.47228549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.06113159, 28.44513721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.8002775, 28.34016382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.65271666, 28.2687748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.4158194, 28.14537003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.29336665, 28.04662473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.25149939, 27.96352786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.20814845, 27.8728435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.17829279, 27.77592691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.242, 27.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64136138, 27.12571906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6348492, 27.22762727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66835709, 27.36398786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63347041, 27.27014731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61521448, 27.2349137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57639437, 27.34898875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66615344, 27.56887936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73430989, 27.34493518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37149802, 27.38304113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1842417, 27.49629541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11760361, 27.49349797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08800565, 27.48892128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11195764, 27.51047533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.78367171, 27.54020985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.63897566, 27.5674016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.54568788, 27.62221051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44579742, 27.66879693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.42901712, 27.70110394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45667406, 27.72433648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.37277997, 27.66810071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.33514794, 27.70367618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.34206692, 27.67494892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.42053105, 27.65635669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.42421065, 27.62633112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.50510987, 27.69249632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.40754029, 27.70863954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.30125031, 27.71584931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.29296136, 27.75089206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.30819082, 27.94590598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45328551, 28.13326086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45196145, 27.79083487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45695429, 27.47147625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44473467, 27.53631931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44990325, 27.51011846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21868493, 27.3613647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.07785789, 27.24203466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.00716768, 27.06702572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.90741419, 26.93340647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.84131688, 26.99633664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.74766807, 27.08283022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69188798, 27.16537391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.63922295, 26.88608137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.62753869, 26.7900081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.53615978, 26.72014481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47047841, 26.73757545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6146719, 26.84495314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.59633473, 27.09745738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.78705238, 26.91626323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94521464, 26.73492279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97794042, 26.45814425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.99114649, 26.31995805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.98417327, 26.21120766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.13989546, 26.27088784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15704784, 26.27871644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15244664, 26.22938932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.20850473, 26.17315346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.31036523, 26.17003497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.28434489, 26.11958071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.14406053, 26.06773062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.28635021, 26.23617731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.293416, 26.38707727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.52865098, 26.80251345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.64720194, 26.91506949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.74363261, 26.98860775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.80777014, 27.04318312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94206839, 27.0856542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9912957, 27.1662057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15198334, 27.26526127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53007665, 27.39874415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.1080085, 27.44090526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.81838126, 27.35930127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.44222238, 27.28065151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.01855816, 27.37011857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.49722333, 27.56892412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.85874509, 27.3606393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.8095767, 27.21163066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.19048195, 27.1204239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.59115648, 27.1754622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.98388178, 27.20465605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.18560464, 27.21315767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.25770912, 27.26275361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.46493096, 27.1866507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.43595156, 27.24938156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.34146008, 27.25918547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.23088918, 27.2327037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.24291762, 27.27108941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.8206144, 27.45106541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.43977473, 27.41249084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.41528947, 27.39773266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.47442761, 27.28764369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.16825221, 27.06447014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.90825966, 26.82735341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.72620275, 26.58470797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.81671645, 26.39483489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.28022422, 25.94499544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.18982575, 25.97100884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.13294033, 25.87225457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.94130728, 25.76307921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.77488815, 25.61882258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.90656352, 25.48294245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.93565133, 25.30833999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.89575069, 25.2362242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.87403268, 25.20201631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.06520526, 25.08257929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.01106274, 25.13477218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.82503464, 25.02672235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.65515647, 24.91304371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.39557587, 24.89066617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.25161247, 24.8702185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.10211719, 24.71633441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.21735655, 24.52519287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.61336741, 24.32558469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.23650921, 24.02426015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.7587023, 23.71326845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.68751825, 23.69277205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.87760709, 23.55797359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.88590604, 23.6675209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.29538876, 23.56920574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.67061081, 23.47215094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.07321947, 23.40619029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.03057992, 23.45082837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.54042621, 23.69014045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.40762297, 23.86927922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.66996426, 23.64381606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.78609897, 23.51996947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.80197929, 23.54107688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.87621074, 23.43306655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.78309841, 23.51633234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.7919187, 23.60456114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.87296579, 23.73030251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.0246274, 23.492142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.05907072, 23.29550992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.97611083, 23.15610885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.01559152, 23.06996281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.14239459, 23.11267661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.16791417, 23.12684878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.082379, 23.1424303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.14208244, 23.13610567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.76815448, 23.14701295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.4234117, 23.13130194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.44742232, 23.08622342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.46468722, 23.00538124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.47907211, 22.94630641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.50040946, 22.8939624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.35277813, 22.84310941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.10748489, 22.93166328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.70065533, 22.75669972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.2557214, 22.68142614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.67398028, 22.43514104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.20583397, 22.42259339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.19645214, 22.60081063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.16538102, 22.63991698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.42163383, 22.70270786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.66318846, 22.74047821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.89940657, 22.7420849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.06874867, 22.74823582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.65747184, 22.69854879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.29452887, 22.63668383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.27156232, 22.59923563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.17939261, 22.82358358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.12224626, 22.92473385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.09338754, 22.92423254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.00391406, 22.78599203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.06588607, 22.63202424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.09385964, 22.41797518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.29070671, 21.95659374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.21523525, 21.70786839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.77302953, 21.71125527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.57259473, 21.7616562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.43458325, 21.78083255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.31611103, 21.78422093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.42914685, 21.78640123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.54271959, 21.73274322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.64537435, 21.66237571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.880055, 21.58174133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.78813797, 21.50428308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.44905244, 21.78448363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.93310739, 21.97705793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.04622615, 22.08873163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.10742906, 22.22097652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.23631096, 22.31273624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.5157867, 22.38958368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.96669055, 22.38545265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.28341968, 22.56755321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.36831975, 22.80583147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.2040914, 22.71461388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.60934439, 22.88533034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.1043232, 23.09448527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.46443007, 23.19728825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.51697138, 23.16760508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.52003896, 22.8698685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.88910005, 22.72122219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.3505363, 22.70157216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.11310831, 22.63392251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.9734198, 22.5661568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.12844582, 22.29802471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.14333244, 22.04248611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.88584422, 21.80628452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.88511088, 21.58578117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.76631271, 21.34363709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.35304759, 20.96218249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.13187695, 20.45313806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.62934614, 19.8467844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.66787374, 19.34763744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.55165725, 19.48176828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.39201814, 19.6484527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.32324332, 19.60185978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.31167589, 19.51255341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.89001465, 28.01000023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9289856, 28.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92800903, 28.0890007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.05599976, 29.20899963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.73, 27.9839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -83.76599884, 24.22400093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.74200439, 23.37199974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.30499268, 24.92499924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.13800049, 25.73399925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69005, 27.97117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6875, 27.9375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.58502285, 27.94667588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41851137, 27.99488045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15078768, 28.1001538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79425592, 28.26786198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37599531, 28.41078529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.95480564, 28.60274228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.58044523, 28.58525011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3435866, 28.49332154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.15644897, 28.37863141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.93153259, 28.21834858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.70674822, 28.06041655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.46357383, 27.89672976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.30363915, 27.7811973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.25825211, 27.7707553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.17679951, 27.70432112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.08813806, 27.55445255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.01199364, 27.26161413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.24174998, 26.86431429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.56398499, 26.4641729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.93001445, 26.08841559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.16165745, 25.86255689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.37645697, 25.58713819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.74471438, 25.23509641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15076633, 24.84254355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.30447317, 24.63938132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20183964, 24.59467138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42654762, 24.39328678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50476289, 24.29184099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51819058, 24.22476325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51534633, 24.21645606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5321211, 24.22497902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52950781, 24.28095952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53543904, 24.32052411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5303193, 24.26866183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50638467, 24.23266609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49697584, 24.2007933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49131768, 24.1734492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47359899, 24.15939682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4712608, 24.15296121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55468095, 24.1169832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59392677, 24.10922777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66253715, 24.06887199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65315959, 24.06007995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67271657, 24.06767307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64822091, 24.15492633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66848527, 24.17114007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70546248, 24.15719199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74123309, 24.11097214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.71482154, 23.99533277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55243711, 24.00480576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15634161, 24.26198476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.93789794, 24.31656657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.79917867, 24.34543958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.777282, 24.34853704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82245148, 24.39403681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.88582789, 24.42983843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9117263, 24.43340896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.96953901, 24.42384937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07393488, 24.4640451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1746967, 24.43359399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.31160359, 24.4162874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49593663, 24.40390335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75985411, 24.37611101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06368808, 24.31666143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.34694615, 24.23476051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.503269, 24.28376279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.78581106, 24.29462126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0954593, 24.28793163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.35922469, 24.2531373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.41989976, 24.19789741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.50911528, 24.14730317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.67061117, 24.08967139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.68513316, 24.07497647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.66951226, 24.00861779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.77136281, 23.91246885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93060718, 23.79218782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06956429, 23.7063641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.10616093, 23.74039626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16964579, 23.77498197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22084252, 23.81058653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36403017, 23.84627543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63602389, 23.89107727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97168043, 23.93168624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36102692, 23.90754077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.77649369, 23.87255192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.14733147, 23.82514705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.30020506, 23.78413071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.34655424, 23.74818791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.46321466, 23.67816546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.77509165, 23.75857865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.86011371, 23.75226035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.75554955, 23.70918748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.75086157, 23.72057123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.89896079, 23.78593332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.9, 23.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8304, 27.9344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8125, 27.9375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8015672, 27.84923402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71496925, 27.64083935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.83331693, 27.32372407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.82311094, 27.13984777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03705577, 26.93647751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.22445753, 26.6628771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44342136, 26.39842141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.66415111, 26.27490585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.8741782, 26.32556149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02664621, 26.41233884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19580665, 26.61752293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34478785, 26.75324523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.41931266, 26.7932682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.46766678, 26.8377853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51186753, 26.89027919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.55798901, 26.94064286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62419401, 26.97099617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.69618235, 27.00702184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.76952484, 27.04071983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.87149955, 27.06018379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.01218058, 27.07141431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.11901416, 27.05418749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.24300236, 27.03233295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.33066995, 26.98468618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.43871752, 26.911018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.61171967, 26.81900047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.79436764, 26.93331042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.97078141, 27.00478092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.19042943, 27.02223726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.38361934, 27.03599188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.53668171, 27.06241087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.70410603, 27.1036206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.84694185, 27.14246494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.95502987, 27.14272323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.08286989, 27.13241484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.21943428, 27.13724172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.17794449, 27.13359057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.14578325, 27.14587661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.15948251, 27.1031156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.10565567, 27.10613915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.07734895, 27.09212852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.0662476, 27.09206339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.07551424, 27.07263992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.10733738, 27.04324746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.16533357, 26.99416692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.1464907, 26.89283673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.04448798, 26.77787742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.900008, 26.63928885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.79275441, 26.51183823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.74210357, 26.56861373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.66803204, 26.65028714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.6122172, 26.70525884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.59590507, 26.74614887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.58324742, 26.77144613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.17456412, 26.774604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.81954072, 26.72335695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.56305457, 26.65999741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.31655721, 26.54544208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.1010503, 26.40219203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.97438028, 26.1689836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.84640294, 25.90625632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.68987886, 26.29822213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6088574, 26.5137447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.55093504, 26.61110742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52854675, 26.67022226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52500112, 26.69887423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.54547598, 26.70085422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.60131399, 26.65965561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.67194444, 26.59972222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.720217, 27.98315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89647741, 28.04705088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62163859, 28.01719559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52035145, 27.97836335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38669163, 28.02082123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.92023499, 28.24493453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.22003971, 28.21432857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.55705148, 27.60408936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44682966, 26.67214588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.45596635, 26.52724635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.32165909, 26.86548508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3201459, 26.97773743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.39693948, 26.71913368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29359946, 27.57673331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23120269, 27.6251964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23556069, 27.20354723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.73029388, 26.03314549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.04622762, 25.48083534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.52368085, 25.37302143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28119846, 25.08909927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81324537, 24.53898193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92217347, 24.66043852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.01124818, 24.72113288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05167484, 24.58304331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10170419, 24.36336735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03434926, 24.33947812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80963477, 24.23347567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94426687, 24.16072819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04178619, 24.13538149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.14369976, 24.12721007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2741372, 24.11760273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.45524518, 24.13096505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.05746061, 23.94831436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.51456447, 23.72051604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.24166564, 23.92657225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.876261, 24.14635943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61511124, 24.55603218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.80288287, 24.56606891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.1283544, 24.24243332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.71927488, 23.97258346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.39042128, 23.78864672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.86982735, 24.07271567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.30424648, 24.22947462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.69510915, 24.37736115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.05804533, 24.15593998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.71149173, 23.51728634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.8108323, 23.21847463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.86005116, 23.26955523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.70548275, 23.3380749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.39955374, 23.32225885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.98180472, 23.40997288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.54220781, 23.21805749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.18774358, 22.70966537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.63103089, 21.91170356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.16089267, 22.29970868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.83531558, 22.75702465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.91692463, 23.21896598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.53067037, 24.0522216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.82292543, 23.73977761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.16900018, 24.02254778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.55575823, 24.18094626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11969054, 24.20018461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81302388, 24.20861819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6863439, 24.20795857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6528718, 24.20377857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65479989, 24.19529941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63205056, 24.1894041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55228779, 24.18766175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44559019, 24.17516026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.30476787, 24.14550593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12332844, 24.11323165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85204555, 24.07493474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4012724, 24.01905901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19299836, 23.99532678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.90567983, 24.1228536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.24000046, 24.41789431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49332831, 24.67978954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.08789624, 24.47552696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54120368, 24.13637597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.48984777, 24.11046995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1629737, 23.87806513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.14075903, 23.843516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.15525184, 23.79832041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.10476501, 23.74797687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.05560949, 23.67868568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.01464191, 23.68426931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.07120641, 23.57793308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.08667858, 23.65058357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.21233847, 23.96023349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.17830735, 23.98129923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.28870596, 23.99157662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99473626, 24.07145136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84184318, 24.1359579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25957536, 24.54676705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55767435, 24.34456072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.80078524, 24.15013729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.98221979, 24.10725982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02228945, 24.06191777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94913375, 24.11884756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.95019365, 24.22181448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08142807, 24.41857905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.20285323, 24.77429459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.83750579, 25.16108708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72728487, 25.5925127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.46644052, 25.83981594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.65935663, 26.13589183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.69083065, 26.15499817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.70740276, 26.05259887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6183387, 25.79422921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47081964, 25.44309868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43435173, 25.33035032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3377163, 25.275862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27471336, 25.36381644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32635824, 25.47276295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.44177327, 25.38504304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.49189368, 25.30861863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96758834, 24.87346143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.70153256, 24.58244176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.60698233, 24.51892635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62069401, 24.40526879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.50264568, 24.50170268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45619463, 24.5349906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4228558, 24.59736171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33914756, 24.68748761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.20678066, 24.76374167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75858083, 24.79393307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97773304, 24.97271259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17370324, 24.98709719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.72781523, 24.95433887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.69404802, 24.95053934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.76287946, 24.90150335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84343923, 24.21158825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.54767546, 23.47188975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.92323975, 23.46568977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.62512735, 23.60405436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.10395263, 23.42231424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.31323416, 23.38568118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15587266, 23.41442423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9807066, 23.38480755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.7932433, 23.37087739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.18486726, 23.48935395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.36847267, 23.71496535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.95035667, 23.82611953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.84116279, 23.84695918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.85524618, 23.79679748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.90836223, 23.81154567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.95249479, 23.82056466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98977665, 24.03794442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19629944, 24.79383873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89505083, 24.86995836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.015, 24.788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1316, 29.5234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1875, 29.5625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.13380119, 29.60017206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0309078, 29.46095435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.92442664, 29.20987493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.84346456, 28.8311039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.8151832, 28.76193757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.82146873, 28.71759273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.81962304, 28.92144017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.84165402, 29.08907256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.88870634, 29.22100355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.9650577, 29.31894979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.08561922, 29.39899233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.03076691, 29.96736525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.7274145, 30.13726538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.55867123, 30.15496631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.46047057, 30.12727621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.42237075, 30.08940432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.38106746, 30.05510456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.39885967, 29.877145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.45892207, 29.59843434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.51614491, 29.19176787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.62149201, 28.99401547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77730092, 28.73895835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.80950496, 28.64120258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.87485973, 28.51409947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.989616, 28.34438686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.00544447, 28.2825395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.03128653, 28.18906871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.01848744, 28.14826587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.02859265, 28.0860461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.06392122, 28.00259709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.12669667, 27.89725637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.22450649, 27.77043881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.16313194, 27.70550602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.122939, 27.62555741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.10124047, 27.53081867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0979616, 27.42083057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.11337057, 27.2963298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.03463585, 27.1802666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.97124638, 27.0498783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.92351028, 26.90526072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.89309098, 26.74636373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.88087879, 26.57358165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.81858069, 26.47984808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.78030165, 26.36141087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.64345245, 26.26704663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.51391296, 26.15796567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3920204, 26.03352065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.2781619, 25.89324229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.17274347, 25.73663693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.07622897, 25.56321459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.98916744, 25.37257832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.9122339, 25.16461882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.84631653, 24.93997125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.79269228, 24.7010259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.75316207, 24.45426135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.8090309, 24.27961274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.76465535, 24.57375935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.73018876, 24.8058189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.70610975, 24.98584078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.6847787, 25.12978862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.73816688, 25.22479635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.84048485, 25.07870878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.94807272, 24.88105065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.05783709, 24.62263221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.1581678, 24.31257511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.28178248, 24.34224579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41080303, 24.33150133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.55153654, 24.28973942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.70781136, 24.21163516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.81356439, 24.28456151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.92114958, 24.29243755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.16330161, 24.35808515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6147185, 24.48593831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.88027207, 24.48625758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02000173, 24.47722968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18733315, 24.44045595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.4062571, 24.36511135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41382765, 24.41198106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.35802034, 24.54613808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18845676, 24.7020111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02772289, 24.85345607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8796183, 24.99619496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7458965, 25.12797786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.62725782, 25.24776045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.52392763, 25.35508349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4359295, 25.44973706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.36319969, 25.53160651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.30563241, 25.60060649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.26310022, 25.65665113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.23546946, 25.69963616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.22262216, 25.72942583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.22449157, 25.74587013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.24088551, 25.74912599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09649171, 25.72498904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.98448681, 25.83319825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.89603188, 25.92477398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.8298676, 26.00033378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.78519102, 26.06091918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.76127058, 26.10736747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.75766712, 26.14011775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77462197, 26.15903523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.81474468, 26.16413717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.7152133, 26.24320206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.64210859, 26.30717216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.59137982, 26.35697931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.56182129, 26.39327733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.55309993, 26.41634962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.56551706, 26.42568519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.60085053, 26.41921011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.61627513, 26.51630864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.65969427, 26.59235931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.75258723, 26.66468364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.96460747, 27.09625011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.21646521, 27.50299861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.47855219, 27.81634698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.51531422, 27.68968448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.56782728, 27.58433942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.62535637, 27.49727305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.704, 27.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.62799072, 28.25600052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.63500977, 28.25699997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.64199829, 27.87700081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.64555, 27.983617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7, 27.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.65, 27.425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.65, 27.4 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76000977, 27.1420002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.52099609, 22.09300041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.08499146, 27.71800041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.08599854, 27.71800041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.52801514, 27.68700027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.65100098, 27.53499985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.69400024, 27.49500084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.0960083, 27.29800034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.95700073, 27.97800064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.90899658, 27.86400032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.73901367, 25.95899963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.73800659, 25.95999908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.86499023, 25.75099945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.76699829, 25.72900009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.76300049, 25.80599976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.26599121, 26.22100067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.45901489, 26.39599991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.48800659, 26.56599998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.41598511, 26.6970005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.68499756, 27.35499954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.6789856, 25.8409996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.43701172, 24.97800064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.42401123, 24.9470005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.64099121, 23.93499947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.63101196, 23.95299911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69900513, 23.95400047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69699097, 24.04599953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.73800659, 24.3939991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41900635, 26.57999992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9548, 28.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.97299957, 28.08699989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.91899872, 28.08200073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94900513, 28.13100052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06199646, 28.10099983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98600006, 28.00099945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85900116, 27.91200066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09500122, 27.96500015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.00099945, 27.99900055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17099762, 27.99799919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19599915, 27.85000038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94499969, 27.9489994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94999695, 27.95999908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93599701, 27.98900032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98799896, 27.97900009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04699707, 27.95100021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15599823, 27.92300034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02999878, 27.95700073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0490036, 28.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.03500366, 28.06900024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95999908, 27.97900009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.96499634, 28.05699921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05300903, 28.02000046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.86499023, 28.06399918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.77200317, 28.04299927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99899292, 28.07999992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36499023, 27.9279995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3789978, 27.88699913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.44100952, 27.88500023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31799316, 27.83300018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3210144, 27.80500031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32998657, 27.7140007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.29501343, 27.87000084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3710022, 27.85499954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3710022, 27.85700035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3460083, 27.81800079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.35299683, 27.80800056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24899292, 27.72500038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15899658, 27.6420002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1539917, 29.24799919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84899902, 27.93700027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07199097, 27.90600014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.9289856, 27.63699913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01199341, 27.63100052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96499634, 27.4489994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74798584, 27.65500069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.27999878, 27.25499916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.1289978, 27.09600067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.358, 29.5418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07699585, 29.7159996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.07998657, 29.83300018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.99398804, 29.88400078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.72698975, 29.78100014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.69500732, 29.75200081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.61300659, 29.48699951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.2869873, 29.46899986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29800415, 29.47299957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07508402, 26.8743576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0643451, 26.79974934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.97861577, 26.8528773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94176281, 26.88455657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88112498, 26.89930782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88628201, 26.83231798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07128765, 26.83554884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.04888747, 26.91328598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.07588863, 26.95028654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08396846, 26.96068688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08260718, 26.92776782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.20615437, 26.91584672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36600233, 27.02166937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.27662796, 27.08486772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.32440741, 27.11216347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37524854, 27.08019033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37330921, 26.99859445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.39023284, 27.06337566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.37330384, 27.09499942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.32414686, 27.09892092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35202166, 27.05904584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36006505, 26.95908985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16353238, 27.07810392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71036855, 27.18429812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.24645611, 27.24108563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87745359, 27.27603893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.68289606, 27.30330102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.63736488, 27.54954533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.60333253, 27.76734743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4078891, 28.01716994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10191209, 28.06295597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76606504, 28.10580869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8364213, 28.16188475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84226524, 28.19585024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.85892025, 28.22285399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8054294, 28.2040833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57821228, 28.17853222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.34087768, 28.36265773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16184165, 28.47267571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.1239981, 28.52331896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17466234, 28.5397246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23653314, 28.55975648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.36036958, 28.55975548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42567501, 28.52932777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26892707, 28.47583388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7952883, 28.34184299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.22920394, 28.07659144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0114038, 27.72985688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.57711658, 27.43198075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.10325035, 27.14629861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.55828242, 26.88498267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.83960107, 26.72919315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.11400702, 26.56017598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22767503, 26.41362547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23529451, 26.29878731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22294026, 26.18261803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.04246114, 26.04837029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.95084769, 25.9742836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.00547938, 25.87328285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.03283632, 25.81622373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.08279117, 25.73504404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.14503332, 25.67473791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3191673, 25.61244842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.47920111, 25.42283981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.82533045, 25.10477402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.23233708, 24.73836228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.71145583, 24.5391845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12269467, 24.68224078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.73230766, 24.68181073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.62238668, 24.65035283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.55011418, 24.58790716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77215878, 24.6057358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99064436, 24.76632482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.94294471, 24.76727631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.94980094, 24.77433942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01992795, 24.78615385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43535986, 24.6307695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08517301, 24.4904543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.76424417, 24.41461028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.47187048, 24.32309527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.20326658, 24.12711489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94530999, 24.47492825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.57887818, 24.64881966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.59245323, 24.70519744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.9265241, 24.82900195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.36178853, 24.96352009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.73877163, 25.08613363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.06608095, 24.8855202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.35200131, 24.90595236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.71009008, 24.91172054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.315292, 24.96421843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.73150447, 24.9750224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.13708521, 24.88157066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.68285069, 24.76847257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52173805, 24.68826036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.398211, 24.60742348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.30849536, 24.52344604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.28620654, 24.47571946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36417245, 24.39071006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.49591379, 24.29759476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73478143, 24.17190559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.21924991, 23.96114878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.82532194, 23.90674326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.29595462, 23.86563774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.41620617, 23.81707675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.99027089, 23.72946937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.50212756, 23.64398698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.63193419, 23.71367705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.7972461, 23.75125835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.11579944, 23.78002389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.45178441, 23.80751583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.84906518, 23.5846611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.66621728, 23.48750299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.69602255, 23.58864302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.89680215, 23.67789283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.77020681, 23.74403825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.66935591, 23.8065553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.47610595, 23.89196556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.53178169, 23.95921191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.60575737, 23.99489534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.489402, 24.01771902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.60882887, 24.05089007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.83588273, 24.13331779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.38567485, 24.37339692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.02816634, 24.52306098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.50218647, 24.61716597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.30877199, 24.73677876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.11228378, 24.83598963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.8658833, 24.96172422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.11923164, 25.27589534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.23901841, 25.49510112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.00290963, 25.57572256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.88357682, 25.64687421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.34644831, 25.6892073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.77916891, 25.67586827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.19365981, 25.61291778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.68553471, 25.43636359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.21816891, 25.15182523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.85144163, 25.07676032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.56754624, 25.10589796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.74661007, 25.09326582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.81946681, 25.04607916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.92661632, 24.96369731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.82194212, 24.95488587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.62184312, 25.00967297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.81743531, 25.02523996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.04042684, 24.99932268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.16261128, 25.0135403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.46480968, 25.16456896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.63928326, 25.35699418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.03059751, 25.52180211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.81379434, 25.56862321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.88962944, 25.51592467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.09633689, 25.58428442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.3571246, 25.74299837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.15427989, 25.80927776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.09802952, 25.81326692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.77187, 25.78037608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.44697142, 25.91475716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.25746314, 26.13774981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.77464125, 26.41093327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.25374721, 26.631384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76047816, 26.64594428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18155416, 26.66843227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7186878, 26.76084692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.26435587, 26.80580265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.76734366, 26.81729066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4591631, 26.96132536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.44690379, 27.08408431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.40871236, 27.12614406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.43742512, 27.1529024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.51979834, 27.17058655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.59207456, 27.10527018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.78533724, 27.07954784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0515485, 27.15746602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.98057964, 27.16627859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.95165725, 27.13599804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.96569115, 27.12067651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9053876, 27.06233676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.10663518, 27.15766823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.5016129, 27.23728362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.10052728, 27.28699652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67008208, 27.16016289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65035185, 26.94303872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.42406486, 27.01952263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55291626, 27.04551329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86421919, 27.02679717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27341054, 26.926035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52662066, 26.79179203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7938281, 26.81604969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.0577554, 26.81532666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.07655873, 26.77871546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.15721013, 26.85896685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.66336036, 26.54338551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.97940294, 26.53370389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34291512, 26.4802121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.69155313, 26.40706824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.12612977, 26.55425329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.62556016, 26.78987682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.29624778, 27.00901998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91861221, 27.19051481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57054049, 27.33440902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2358176, 27.46186354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99617396, 27.61760307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.87076765, 27.60752947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82421343, 27.57368737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.80039446, 27.50747123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.84120752, 27.44740395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9266787, 27.48866483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13785568, 27.47695306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50189477, 27.40861113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89154576, 27.32034297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13249403, 27.32748116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25731705, 27.4310447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.27919061, 27.19544727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12147554, 27.16970349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10337796, 27.12718896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04299727, 27.09875309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.02047363, 27.13876408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80157659, 27.20361172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64793619, 27.17771521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.57994431, 27.12719719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67383494, 27.08338159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74865034, 27.11062355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82990598, 27.11097666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96046503, 27.10661687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.16356704, 27.07052395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3264915, 27.02301702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.24191063, 26.97623369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41198854, 26.93099355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6294286, 26.94425062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.53583929, 26.92843012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.66685924, 26.927111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.84937737, 26.91845207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.09764801, 26.89919867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.35467374, 27.03147797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43742327, 27.07808167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.53684505, 27.08869611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71557132, 27.08757897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95886205, 27.04173642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.00547727, 27.29860278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.026, 27.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.80252159, 27.89628151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.89881235, 27.75850074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05163861, 27.56282493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12250021, 27.55487685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17488884, 27.56544852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.29232994, 27.54702959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.468143, 27.52555269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65170157, 27.46840485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.86447998, 27.32696333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.09662368, 27.34313412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43642889, 27.29174076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.92937669, 27.24545818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.46044044, 27.09190759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.22136732, 27.01546612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.64652295, 26.85803712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.23487802, 26.89953673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.01928455, 26.99648842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77812037, 27.05429117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67633523, 27.02517258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.58785713, 26.91227873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43852655, 26.75256184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43353096, 26.53448183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.98027399, 26.48246567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.49411707, 26.14783481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.9065999, 25.98785941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.82326746, 25.75292339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.06547024, 25.57426864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.35667165, 25.06389719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.95974616, 24.66643689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.38173215, 24.69197677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.87859963, 24.45119688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.37874037, 24.54095393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.91347911, 24.64288662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.18546118, 24.74911039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.32029416, 24.65206086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.51807126, 24.74411689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.41552539, 24.76913946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.38404673, 24.73746108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.35111754, 24.58445884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.30060241, 24.51619428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.32355643, 24.57169819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.36634123, 24.59040771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.42290731, 24.68868709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.21555571, 24.9095712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.97082183, 24.81722409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0900506, 25.62263955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.10065693, 25.58366333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.12863511, 25.60312306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26682699, 25.66750793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36726478, 25.70363649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54731108, 25.70496039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54959363, 25.68097821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.38279316, 25.64116705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.36081429, 25.60549121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11797524, 25.55580109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.08496602, 25.46445918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21007397, 25.3843837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51857095, 25.28862878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.24848468, 25.297379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.18542831, 25.36535451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26612955, 25.48764008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54379997, 25.64443284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19282248, 25.60583237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.95895348, 25.57024188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.63496998, 25.5739633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.76646701, 25.23232065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.57976025, 24.90352459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.98150301, 24.66481424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.33539823, 24.44784493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.02158331, 24.14409427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.51666029, 23.4086263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.09487285, 22.81743033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.51923835, 22.26528075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.11425187, 21.88337274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.68159657, 21.69486133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.73890811, 21.70376621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.53582158, 21.70115959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.46534204, 21.71242476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.40966833, 21.71039492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.22369419, 21.71131402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.10342952, 21.68498457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.93564442, 21.62627182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.78073646, 21.52233774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.27728997, 21.37339694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.87315164, 21.21725464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.80656825, 21.0886935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.43762157, 20.85464899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.65176326, 20.79306047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.68755, 28.05115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6875, 28.0625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.20852157, 27.94359078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95699326, 28.09855968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.68609779, 28.28102694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.36561792, 28.30063615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76231853, 28.44122262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.24511071, 28.50602397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.95223111, 28.4666593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.85019422, 28.42229756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.79231097, 28.40248502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.70509541, 28.31656186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.61335848, 28.28414514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.59439354, 28.27328509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.5952113, 28.30499275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.6584533, 28.32888018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.70655189, 28.33357728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.68815212, 28.40808432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.71722127, 28.4350559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.75071889, 28.43059544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.94261477, 28.44774014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.08366734, 28.50208368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.24254658, 28.52364566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.34581383, 28.53557571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.51202724, 28.49073569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.38846207, 28.60918877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.39720321, 28.66206737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.46216095, 28.65603207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.52991059, 28.66331174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.50154599, 28.65217225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.49130838, 28.62094681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.58052258, 28.69214824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54762682, 28.76081323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.53287192, 28.74049613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.6725234, 28.53938096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00381978, 28.11667542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.44327867, 27.58207429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53548303, 27.36471174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56032621, 27.2461612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.60360316, 26.69336514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81711364, 26.37307356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08897812, 26.02167443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.30901798, 25.83883696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.82054593, 25.4744456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.30659294, 25.13390126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.20272135, 24.92292521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11017775, 24.74156238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.05940119, 24.6414923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.18118534, 24.50318007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.74036105, 24.09088049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.69700791, 23.46985716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02548899, 23.12656178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41107202, 22.94344662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65674184, 22.91271234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63863959, 22.94288711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63803345, 22.90309316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62041472, 22.92437337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.48993793, 22.95449495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.45301167, 23.01210919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.4634097, 22.99532532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.60485838, 22.94239514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81999538, 22.88228436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13680775, 22.78873982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36330917, 22.76400106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.59858673, 22.67878781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.79236244, 22.6279203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.96479263, 22.63760329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.07938658, 22.72114003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.14477175, 22.58279049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.26753177, 22.63900474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.32495869, 22.65515266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.40882677, 22.6416704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.51740355, 22.60294724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.65161553, 22.54157724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.68645699, 22.46650842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.7294963, 22.40869886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.80898069, 22.31407834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.84226482, 22.33659704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.95521535, 22.78328471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.12554476, 23.16969561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.31004234, 23.38529969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.442, 23.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.60699463, 29.18000031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.58999634, 29.16900063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3999939, 29.23699951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.76998901, 29.14500046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44000244, 22.29999924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.59999847, 22.59399986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.967, 28.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.069, 27.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.865, 28.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.569, 27.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.009, 28.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.939, 28.114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.927, 28.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.533, 28.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.591, 27.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.551, 27.851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.665, 27.772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.521, 27.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.337, 27.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.348, 27.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.377, 27.76 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.318, 27.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.214, 27.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.186, 27.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.247, 27.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.285, 27.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.328, 27.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.955, 28.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.983, 28.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.977, 28.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 28.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.019, 28.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.978, 28.069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.994, 28.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3, 27.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87298584, 28.03499985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.01501465, 28.05999947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95800781, 28.06900024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98498535, 28.10099983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98300171, 28.04700089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88598633, 28.16699982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0249939, 28.06599998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.20901489, 28.38199997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99200439, 28.04199982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.97000122, 28.08200073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92001343, 28.0909996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8789978, 28.06900024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94400024, 28.13500023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.98599243, 28.05200005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05700684, 27.9659996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.28799438, 27.90699959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39498901, 27.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.30499268, 27.95800018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43701172, 27.9260006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.40100098, 27.93799973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.22000122, 28.0189991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43899536, 27.93799973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34698486, 27.78499985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.35900879, 27.77799988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.39099121, 27.85400009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3710022, 27.88400078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.33599854, 27.87199974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36199951, 27.89500046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.3380127, 27.90200043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.99798584, 28.08499908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95800781, 28.06999969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.7210083, 28.03700066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45098877, 28.06800079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9750061, 28.36400032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20999146, 27.86100006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93759082, 27.53110359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.91488295, 27.43337337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85257259, 27.4040434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.83439362, 27.3782348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8179461, 27.37501608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85568139, 27.37548026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93694005, 27.37834731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35484053, 27.36515839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78655149, 27.40706444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.30858723, 27.27917865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7755678, 27.18663507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.96273672, 27.19011476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.14930465, 27.20665245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.88518611, 27.19853351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.71238545, 27.19338321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.64949754, 27.14399824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48973475, 27.18257351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.35872025, 27.08410821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17181529, 27.20884204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94563224, 27.33574933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.60454376, 27.58272271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26857513, 27.6083851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.81892118, 27.79884221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.36416496, 27.65429208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81121859, 27.9073042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.24298375, 28.21139613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62632298, 28.32431001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02532645, 28.58660691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.78829013, 26.48134654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.75264401, 26.45921478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.66694849, 26.42644822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.70371297, 26.37334967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.70240251, 26.31056738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.66728722, 26.32316231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.62706051, 26.27976652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44111297, 26.55539089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32831488, 26.75217042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21501954, 26.90773912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.84053356, 27.10679057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.383864, 27.29151978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08286693, 27.41935548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65619501, 27.52557255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13877129, 27.62721934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.19879559, 27.68508564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.02393308, 27.73893215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.88190671, 27.79136857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7360036, 27.86826912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.83034068, 27.88176956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99676392, 27.88890126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21054555, 27.92050548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04339216, 27.95429982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.68065869, 27.96694937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.48910244, 27.97362709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3761322, 27.98711149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.24228638, 28.00298813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.14147385, 28.01062096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.99613746, 28.0085276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.84208461, 28.00763905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.7477826, 28.02224939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.78624281, 28.03390796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.89182376, 28.04871255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.74776008, 28.06729026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09344824, 28.07842745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.46852492, 28.08004177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82773227, 28.08044325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9673182, 28.09183852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32068931, 28.01745611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64441945, 27.95191807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92575827, 27.87412268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15173521, 27.79871268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36468204, 27.7181645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1171844, 27.87354552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.31718426, 27.93383463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.3076971, 27.94846166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22914362, 27.97372759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.97500345, 27.97580824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95005597, 27.94298402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80685863, 27.97437472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64066247, 27.99575131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67698191, 28.03308767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.52281932, 28.09014812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47658112, 28.16500373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46820362, 28.23840572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42443957, 28.29632756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.41797449, 28.35785868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23948505, 28.4038356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13004752, 28.44237381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2137847, 28.46312298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37144961, 28.48953194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53501317, 28.51081735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65763564, 28.55002793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80493331, 28.59275582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94708261, 28.42442665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.91497395, 28.2753539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98847774, 28.15092904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.02430675, 28.01924396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.02886741, 27.94093391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06237703, 27.86852999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.047469, 27.79042981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04299696, 27.70623379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95678321, 27.62010323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.83889534, 27.52424387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.715605, 27.42496712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64749714, 27.3911413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56622944, 27.39746371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56243824, 27.38213226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74560587, 27.3726494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.90737458, 27.37078435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98993038, 27.36789761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05661614, 27.35537112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04902089, 27.34575694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05199499, 27.33508282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03884487, 27.33045458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.1462551, 27.34252851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13459301, 27.34078663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.16959326, 27.37825077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.23582497, 27.41605316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.33709183, 27.46247552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5669076, 27.49692038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.78245223, 27.48842999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.99118153, 27.51388078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15523852, 27.53381855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.10493923, 27.42966089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94485598, 27.44553723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.80551711, 27.45360737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.71852493, 27.50621258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.57549407, 27.55545671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.45687843, 27.61071771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.32382045, 27.65476858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.21615671, 27.69595702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12928377, 27.72196353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04147831, 27.79952919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06759599, 27.81081896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.22252853, 27.79410127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2276392, 27.80649378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.11487237, 27.81522391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05389938, 27.81902428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9488766, 27.81325756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89854907, 27.90698494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.94827946, 27.99629543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86142026, 28.09241491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78583159, 28.17632031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48959354, 28.22386597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51223274, 28.1636522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54003663, 28.11165531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.36581277, 28.03596958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51906008, 27.96421612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87023974, 27.8510025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25676956, 27.72523065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.58604365, 27.62714895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6993152, 27.55319183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8488913, 27.50734217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.04432052, 27.47354082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4817066, 27.40234976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15707218, 27.30652091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84131316, 27.19311506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52330425, 27.04833661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.25018313, 26.76620597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.23268186, 26.21980382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.04486779, 25.65705278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.27578919, 25.42361104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.62147096, 25.0859247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.95725271, 24.77829699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.73695453, 24.64428387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.17672728, 24.38037532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.33955468, 24.34036189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.36349557, 24.35650608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.332697, 24.36167086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.43391447, 24.23187227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.63993407, 24.04720671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.86945952, 23.80454302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.88133265, 23.74704923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.89874968, 23.73035416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.05238925, 23.57614141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.18567903, 23.51747103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.12994302, 23.57117752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.78744647, 23.72813649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.61331179, 23.70756494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.61161449, 23.70152718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.52061453, 23.69576671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.75005313, 23.61447341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.68343138, 23.55116777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.84553044, 23.46381443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.98317135, 23.38752191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.16989024, 23.31544717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.21355848, 23.2800457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.20739595, 23.29188265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.12100555, 23.33617655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -97.01801331, 23.39861887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.83051974, 23.45878973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.54669288, 23.52029941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.48533296, 23.55974424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.53676115, 23.56290466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.74889587, 23.54151961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.93827801, 23.54356822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.81608275, 23.5288604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.77766383, 23.56410108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.55066322, 23.59732824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.3598747, 23.63341324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.31789751, 23.6860971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.27934125, 23.75835083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.24460607, 23.9854307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.96304372, 24.22178378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.0272397, 24.44774448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.08209206, 24.73570511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.10779871, 25.17574266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.49926344, 25.82468188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.98848403, 26.32662275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.51073442, 26.87475613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.00847724, 27.46052509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.976, 27.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.17761745, 29.12360219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.77885994, 28.3762183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.27060244, 28.4181845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.98693571, 28.89021435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.13941296, 28.3109904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.84279233, 28.29606762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03634804, 28.25077842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.56391695, 27.99843363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.95180195, 27.12821689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.8862067, 26.95863746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.10935316, 28.14287554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.30026224, 27.92279994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.23205573, 26.92050747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.24834969, 27.27607569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.30949763, 26.73119909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.80445612, 26.45574368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.58039264, 25.5625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.12939572, 25.21378335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.82511921, 25.4748934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.03051635, 26.0917532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.46052074, 26.35913774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.98774766, 26.59910238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.4264121, 27.05313645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.54859153, 26.94747051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.79524187, 26.03774199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.9375, 26.81028762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.58976161, 27.56287696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.57634829, 27.62986389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.45897184, 27.69421083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.40169049, 27.73001607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.37884758, 27.73358873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16623821, 27.72041031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.96963149, 27.80468272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.69275259, 27.98507357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.38258062, 28.13866264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25700615, 28.25250436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7989051, 27.68411556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33015346, 27.65100898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98186878, 27.84202912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10090672, 27.81349134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39359534, 27.72511651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.65715023, 27.57580202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67063616, 27.48458194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.42792641, 27.72637794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12011641, 27.87363173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76081871, 28.02083351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.294573, 28.15932971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.16057916, 28.20635625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.08043435, 28.15804602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.06940166, 28.11470321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.96285687, 28.02671741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42030632, 27.78662164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07088433, 27.43606519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17499675, 27.68090542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.78371198, 28.16551757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4909483, 28.13106863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1751218, 28.06174057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.96546945, 28.07653786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.90820189, 28.0799208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.82210688, 28.06672155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.91093948, 28.00620469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.02529152, 27.89397025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.33107136, 27.67186372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.87699291, 27.40275632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07171825, 27.59093654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7488771, 27.69860616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.56726302, 27.76161885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5925674, 27.7921141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7256151, 27.55821969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.23150577, 27.93313178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.81690371, 28.24555435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.84490414, 28.38644117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.87641321, 28.45046281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.01412069, 28.45389795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.07032174, 28.60999797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.16066507, 28.71615778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.24560654, 28.7423472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.40632022, 28.72099187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.49612467, 28.65803376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09028597, 28.28176617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.74566378, 28.44487252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.39790444, 28.30211396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36385369, 28.1717328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.1227731, 27.95687915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.91452408, 27.65672523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.87065487, 27.51179749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.77087184, 27.55456771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.56095074, 27.58252897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.53472807, 27.58614225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.57626239, 27.55413083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.49222017, 27.56514762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.34368017, 27.59120852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.51566462, 27.64462287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.65672804, 27.67375492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.88415399, 27.52670142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.98793913, 27.44344668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.82207633, 27.54497339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.79445672, 27.54294886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.82663532, 27.5145264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.94978304, 27.43997057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29676993, 27.20742553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.93679224, 27.33083947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.87421413, 27.3670248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.8335279, 27.37394366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.81684781, 27.35560989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.90021742, 27.25250061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.72888284, 27.33173286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.7856031, 27.40051742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.7009015, 27.42512867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.68228935, 27.419594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.00531893, 27.26360553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.9890566, 27.3259107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.7895142, 27.46586463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.66477292, 27.51955448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.81560135, 27.53669151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.90493245, 27.49002066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.92880225, 27.21324628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.60801287, 27.2689117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.48557272, 27.1779906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.48063097, 27.07484283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.53602959, 26.93690913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.69840812, 26.72059242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.65516895, 26.68054845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.68119732, 26.6453546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.89302038, 26.55009061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.21751186, 26.36156798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.51700229, 26.13163865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.70671784, 26.33103424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.60259719, 26.55490326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.56042797, 26.7085663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.52625044, 26.82365942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0488064, 26.94597469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.59828789, 26.98044395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.07762075, 27.22859853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98914472, 27.24833359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.97585005, 27.23866447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.95853118, 27.20509963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9651616, 27.14078375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27884699, 27.08449629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79320666, 27.02301109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.29094359, 26.93449163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.19378117, 26.92580204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.40389619, 27.10680566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6801665, 27.38804721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.29531618, 27.66982792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82862471, 27.91831165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27324131, 28.08666358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00354405, 27.62480604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.36161759, 27.83714617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75794393, 28.00609273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88788615, 28.21087687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.59514738, 28.36403986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.30746831, 28.55088296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06050952, 28.64062563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20205234, 28.54683354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.84652709, 28.49995213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.5874721, 28.42198662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.46791027, 28.30983284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.85113419, 28.50933866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.80540311, 28.49400595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.43798563, 28.35100851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54709327, 28.22789776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.19993982, 28.12613518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.05276029, 28.01055879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.15823404, 27.91995555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.26649321, 27.94755592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.31020513, 28.00615473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.36385403, 28.02909844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42576672, 28.03093822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.43037869, 27.99222502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77730168, 28.08043675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10556909, 28.18943391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.63854117, 28.40012265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09432771, 28.57697575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.46412544, 28.59465425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.0558708, 28.47512387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.73103693, 28.379093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.68979457, 28.28968663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.75586599, 28.14906325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.02297072, 28.06789577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.00817663, 27.91956586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.72401857, 27.79837296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.81331776, 27.69168683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.93591262, 27.55288735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.94276672, 27.41256215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.2993213, 27.13421899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.25382455, 26.88080509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.8764071, 26.6072722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.37205795, 26.28707213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.87757838, 25.98071654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.51609955, 26.16674632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.52019405, 26.27425987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.59047928, 26.29099466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.77021723, 26.26883457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.83762154, 26.2032072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.7961588, 26.07809617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.94811202, 26.43449631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.61768366, 26.6184859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.61599264, 26.6672458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.87595491, 26.70934369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.18132866, 26.68413499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.96158331, 26.60188064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.81344829, 26.79775348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.73249196, 26.93881863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.90238138, 27.05853342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.29284057, 27.17566107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.72333937, 27.28355988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.83340777, 27.29060374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.04731162, 27.4519572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.32162828, 27.57873297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.66893865, 27.65990947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.6758282, 27.58667217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.49436946, 27.48788605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.83998769, 27.56225647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.06497161, 27.59596873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.15854894, 27.59258479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.33902662, 27.39349619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.60445013, 27.36797051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.78801814, 27.54268076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06252483, 27.68248123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.40472103, 27.76162405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67309859, 27.64160632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00776994, 27.48566284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.33432137, 27.24999717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49057223, 27.30639096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89926566, 27.35320881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19334857, 27.35592084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.26264224, 27.20496027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.20339583, 27.29525851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17835048, 27.3483367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43016401, 27.3832196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.38331317, 27.39739789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.96041639, 27.18541634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.67485626, 27.35296865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.23837799, 27.67624544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25325729, 27.82792453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15152859, 27.94046064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.15182814, 27.74125669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41293411, 27.52345989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.68719506, 27.48710583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.71097502, 27.54671987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.75466366, 27.59130644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.78618139, 27.63764246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.62135097, 27.22161899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4764396, 27.16675091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.34848488, 27.37769437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09533603, 27.59573014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87887709, 27.77527528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.68790341, 27.64685817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.87600346, 27.55344726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10494687, 27.59986769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36072494, 27.62300924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.19184212, 27.63720065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50585157, 27.13289619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5137923, 26.7760338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47700145, 26.5436345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.30471683, 26.34261936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.08051799, 26.16017245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77292272, 25.99876418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62926878, 25.79602793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.75985382, 25.5671638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96776444, 25.46355021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.01457683, 25.33692849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09570587, 25.16598433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.90575407, 25.14574276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37480402, 24.74897793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.88234271, 24.44167762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.52313465, 24.1671714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.37438375, 23.88354315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.84136056, 23.98678637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.54155246, 23.89190087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.6385297, 23.90368284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.54800664, 23.88504776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.35053406, 23.81397274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11914962, 28.12297438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62554516, 28.0688009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62443197, 28.06851329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.40744538, 28.11837444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1586106, 28.08624503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21840297, 28.09515955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16867414, 28.15467285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.88104171, 27.93429977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59784603, 28.07185964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59034107, 28.02167171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.04006433, 27.22987178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2647708, 26.92827524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.2369132, 27.33794314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.97603669, 28.03114076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.77349542, 27.88186131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.04341959, 27.16758594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.76993885, 26.56991787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.21629937, 26.31117295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.68137558, 26.96328711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.16534815, 26.9901855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.73970685, 26.93971941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.3792699, 26.79879129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.81743843, 27.54846459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.52723738, 26.81124114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.20735894, 26.07433505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.03099721, 26.75440333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.26021079, 26.15494649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.07057651, 26.01740554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.09472765, 25.9873461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.10054379, 25.84516696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.44397107, 25.79242175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.42657755, 25.27961966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.70976812, 25.12720304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.03022191, 24.83234756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.82244637, 24.7694524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.94585375, 23.93640732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.625, 28.09811321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61160537, 28.18260579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.64821972, 28.14323685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74377582, 28.03062367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.74147099, 27.75603628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99964802, 27.69456416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.46496352, 27.44311545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.88467398, 27.47301604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.16822183, 27.45212473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.23770904, 27.38171797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.2852084, 27.27266154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.27906575, 27.16301178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.35318424, 27.07142762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.48747572, 26.92153101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.17119002, 27.14458853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.77161098, 27.38920172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.54684954, 27.5235835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48304318, 27.55954758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.49078227, 27.53326705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.61119304, 27.44616729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32238585, 27.5342629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16218522, 27.53482823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99919808, 27.58750446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.93681891, 27.58850554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.92706454, 27.53608358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87472979, 27.40654738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5672507, 27.16892054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.39284798, 27.48535024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41608522, 27.50991486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33485142, 27.67437497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.21723406, 27.91082981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87341516, 28.14148543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.58716543, 28.3077551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.2874416, 28.44419738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9539873, 28.52026318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8480892, 28.56080014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93005071, 28.09048383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02299664, 28.26663877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16263619, 28.31293763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3514096, 28.29202367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.61146437, 28.20787215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.42047581, 28.09100092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.47316396, 28.0834474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.55741273, 27.95777399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.69075523, 28.04284518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.88736596, 28.23445661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11443123, 28.31631782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34785263, 28.30772393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.51945415, 28.22849903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.7683223, 28.09661298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.79432038, 28.08920978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67633385, 27.9475415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.71795411, 27.83565045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78051654, 27.86227014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.81724809, 27.82688138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76730455, 27.73147054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67204643, 27.56467182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55711273, 27.41784601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.40811647, 27.13622196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67725608, 27.34184532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.88605772, 27.44948709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.09224818, 27.50624512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19582235, 27.52172791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.27402192, 27.50508903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4269797, 27.44644375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.64910933, 27.32184866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.05969819, 27.16622789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.34108039, 26.94527957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.22622055, 26.99958978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.04616314, 26.98794072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.88395137, 26.90646698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.81090637, 26.75987812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.70502354, 26.73892681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.57131344, 26.87571503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.48571416, 26.78667863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94674875, 27.25508874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.73203897, 27.3443385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.52196721, 27.35396633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.49427908, 27.30642603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3929128, 27.21415944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.3051015, 27.09279916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16936968, 27.22155186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.15747917, 27.2896315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.9840675, 27.43437662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.71560136, 27.54699019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.41583784, 27.60958907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.29234035, 27.60043498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16931932, 27.61109349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94685231, 27.62247533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.71853919, 27.86681268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.30571397, 28.34412003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05851297, 28.43162283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93087569, 28.45521625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77855064, 28.43643487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56635674, 28.36847005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33663865, 28.26294881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.34412904, 28.28070867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.32386562, 28.26685706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12089376, 28.3031096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9070112, 28.2818127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.68451951, 28.18618301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.35540589, 27.98062556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.85702804, 27.75580483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.32626764, 27.95896939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.68520314, 28.21165971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.62737615, 28.2839725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.54309478, 28.42764644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.7389515, 28.51768896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44557891, 28.62975872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.16468849, 28.66471195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8964044, 28.63522412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.38275288, 28.46758483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84411571, 28.10249878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.27629888, 28.01709297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6684352, 27.92559233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.98188425, 27.77050611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.31509384, 27.54664974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6013703, 27.27388598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.02720944, 27.25618499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.46677915, 27.09060519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.85565239, 27.1555308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16566582, 27.19140366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99980783, 27.18802096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02203704, 27.16676351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.07922291, 27.12384263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12380843, 27.0560234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.24175385, 26.95384076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.2559113, 27.06194178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.26397886, 27.18352661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.12099636, 26.96802807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.88893038, 26.69524657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59220864, 26.41291007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.28874224, 26.15815165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0750393, 25.99002623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94649233, 25.96742448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87950518, 26.02411243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84313658, 25.93716163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95679861, 25.75320986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.24996617, 25.52146607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63440708, 25.23205935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.00470805, 24.94967519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14082011, 24.80386076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.45601811, 24.70866405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.68176684, 24.76917133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.26772849, 24.66744455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.73100381, 24.75119646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.11136193, 24.86731096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.39692542, 24.98882299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.63805348, 25.07283188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.70859436, 25.37394643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.73546227, 25.45648118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.9436204, 25.43590938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.90033038, 25.45943622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.10237963, 25.46092216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.08773231, 25.45888897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.88094685, 25.47462416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.2019329, 25.50490992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.61467159, 25.40748035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.81203071, 25.31550816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.94582463, 25.21461417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.08438587, 25.11885868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.17682083, 25.02030985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.2287668, 24.90850542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.26380326, 24.77340828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.35332718, 24.7715909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.4378879, 24.71522041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.32504194, 24.82476871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.36793404, 24.95747571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.38201513, 25.05073709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.36129584, 25.11459626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.29288744, 25.16372477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.21963042, 25.23144009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.21628858, 25.2103448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.16548114, 25.1144353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.15992372, 25.26188205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.29882604, 25.46177106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.0748426, 25.64194051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.70102332, 25.82747105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.37122947, 25.97548445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.48914336, 26.66766435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.4178276, 26.96936865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.20538037, 26.92247144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.70207188, 26.83438259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.72052559, 26.80375875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.4068095, 26.87939228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.26724273, 26.93001304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.33785088, 26.96545504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.93756768, 27.00694935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.51046994, 27.06547045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.20835605, 27.05693413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.0307527, 27.10419946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.98367917, 27.0745228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.98403188, 26.99580867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.13151202, 26.85825966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.06409621, 27.05210866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.03756275, 27.12309082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.04000525, 26.95652045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.38429842, 27.19264269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.78511429, 27.42799653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.00309766, 27.54843257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.02299403, 27.58928097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.87964269, 27.57698292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.89742985, 27.51030769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.89962636, 27.64265675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.7943788, 27.68979548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.62707725, 27.90892295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.42519057, 28.05487472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.41920636, 28.09792995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.38795616, 28.08279761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.71919145, 27.68292134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.39362153, 27.54347025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.05816752, 27.37863268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.16932896, 27.14771734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.25992566, 27.38320724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.47166442, 27.55560647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.6800629, 27.65578657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.48501786, 27.68385531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.37547499, 27.64490653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.38421672, 27.64692491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.15942214, 27.65085344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7749685, 27.77945749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52717327, 27.85172106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19355336, 27.86490692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.85342958, 27.8045622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55622845, 27.63684961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09624562, 27.68477236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.93740583, 27.64755771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.56924681, 27.77158215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.31888632, 27.97557887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.42802971, 28.11173322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.33966596, 28.21673505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9950328, 28.3069917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.76963747, 28.330612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72223355, 28.36013753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6647896, 28.39550204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6322016, 28.38836018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49197946, 28.42241252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.5023416, 28.39609364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.58129006, 28.32881381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97240639, 28.19398432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97517279, 28.06770656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.27064327, 27.75797079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.78902875, 28.24264273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.68705328, 28.45868022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.64338384, 28.57524644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55582147, 28.66757392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.33280136, 28.74493066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.42881996, 28.75036143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.40525041, 28.70265711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.28083247, 28.7572127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.06389435, 28.71540881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82056057, 28.77131185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.45794071, 28.76337077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.99629681, 28.63585695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.54160266, 28.42329617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.31790728, 28.45233592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.16716428, 28.36579819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.60835694, 27.87485468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.28645925, 28.30429327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.85286636, 28.63793805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.56219401, 28.87287923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47785533, 28.99768128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2417674, 29.07791212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.11657589, 29.07296755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.9112283, 29.16570937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.73723629, 29.14699014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.69671436, 29.2134088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.53539412, 29.20392673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.44672336, 29.10345789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.34991714, 28.88334637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.29926917, 28.83891668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.20371053, 28.99555381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.12700722, 29.1376637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.13549057, 29.28822559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.95964298, 29.47508806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.95369782, 29.58908701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.01078852, 29.66095742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.94502061, 29.6673784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.84638396, 29.57887136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.87583597, 29.57347905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.18597766, 29.43836787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.53827373, 29.15026986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.91737017, 29.02643584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21448242, 28.88959011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.77578507, 28.65824361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.14626777, 28.41419595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.17272781, 28.11737445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50524236, 27.92536849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.77446963, 28.20016166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9881905, 28.25747809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.27956805, 28.33633002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21518738, 28.42385475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85255283, 28.54210612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.33745491, 28.64358709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03681083, 28.80304232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.5504616, 28.99331461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.14979316, 29.06222474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.8466647, 29.10637614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.34173376, 29.06420351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.15223504, 28.98885964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.24910205, 28.87281056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.45725181, 28.96528234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.49005781, 29.14546704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.44191403, 29.25436252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.44643583, 29.36386635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.48157807, 29.43696012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.51681468, 29.48182305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.50653071, 29.5065999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.25938367, 29.53118996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.04430809, 29.53725411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.10574483, 29.55612227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.25944245, 29.5514641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.22325509, 29.63498868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.14912064, 29.64221331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.15968636, 29.57860912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.26283008, 29.44817135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42778656, 29.31368403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.58167225, 29.33337196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10571495, 28.78853047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.00126023, 29.14227004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20051616, 29.21608269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50305137, 29.20122112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.71812302, 29.12397558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.01922844, 28.98995616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.24478084, 28.8206313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.51120113, 28.71394468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.79539777, 28.56102342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.97431036, 28.41643862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15762682, 28.25886957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17377379, 28.08772551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.22419344, 27.87779683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3214737, 27.94115304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.10261445, 28.15398415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.92760114, 27.58818359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0793053, 27.97100629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0444402, 28.18478976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.08180745, 28.34641208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.88889823, 28.51649719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.46816548, 28.74343129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05812738, 28.94049493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0561756, 28.92200832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.30494766, 28.6751052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.52151957, 28.6866774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.49233466, 28.65136431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.48650373, 28.59148416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47798149, 28.49671464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.73604466, 28.29639453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.92855983, 28.33793328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.06883481, 28.00213591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21573018, 28.1872779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.4554199, 28.33476961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.68237616, 28.42176355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.42698213, 28.49202668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16116635, 28.52108777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.93987164, 28.46157811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87412656, 28.34715014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.89746223, 28.32190986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32232896, 27.94668893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6900894, 27.71931808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92963948, 27.51916178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05820149, 27.40272669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.14952893, 27.25626297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.33491827, 27.1015172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.28081597, 27.15959954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.618, 27.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.22515939, 27.76745314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.28233624, 27.66382961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11207399, 27.49466694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9360876, 27.7024655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.87297917, 27.86461917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.70482291, 28.00256432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.21400001, 28.12223411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.63211845, 27.99384275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.86027433, 27.59844785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.15101235, 27.9060951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.27666276, 28.02228915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.55093709, 28.07759385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.64433938, 28.06742779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.91063591, 27.99809213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51314446, 27.81721782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80744983, 28.18200008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0864499, 27.96328359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10541951, 28.18320979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.10397896, 28.26717765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.00014254, 28.27703479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04334204, 28.18022692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04799718, 28.51072762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82276263, 28.97377716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.84913264, 28.94076656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86582998, 28.98005765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.7579873, 29.00067734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.37903048, 28.97124265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.72291772, 28.78942383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.00783422, 28.52782696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.54294317, 28.33007437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.53678211, 28.11006034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36576905, 28.13618579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.03299798, 28.29677277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.93087183, 28.37105508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.739032, 28.3755144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.54152138, 28.28441366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.53437716, 28.38818135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.3508674, 28.3659991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.21878865, 28.39051273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.18664058, 28.35821183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.26987894, 28.26408715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.35749305, 28.10074715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.44264448, 27.84563719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.3685028, 27.53920185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.13863821, 27.06574173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.12751657, 27.00062256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.97438051, 26.98995666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.88182237, 27.12187373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.11132717, 27.17825607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.23961906, 27.15104546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.05143509, 27.0470741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.55973594, 27.19425143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.54287712, 27.23284064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.27448028, 27.494243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.29223815, 27.67455343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -84.59017451, 27.86258665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.15913061, 28.03602645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.46411311, 28.06902287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.83708341, 28.2783633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.93181073, 28.5825204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.49727425, 27.99289622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.16176768, 28.25782481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.01793299, 28.38985487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.91579041, 28.42174124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.70877041, 28.36753053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.66252918, 28.37918531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.73314609, 28.37326371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.99312992, 28.63600809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.19665094, 28.80171004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36752777, 28.89675692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44312198, 28.93591541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.40632668, 28.91486351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.47243417, 28.81443724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.26367951, 28.56264168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29389153, 28.75193399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.06491074, 28.87943958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22867049, 28.96222157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.50816239, 29.00637785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.32035101, 28.90222784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.13992977, 28.77466488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82896761, 28.91763546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.79660421, 28.92749834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.98950595, 28.95378176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.99406792, 28.95536002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.86885062, 28.91641044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.80599588, 28.81409508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.67318102, 28.61811909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.45445266, 28.76712621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3490923, 28.77820436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3349745, 28.75642339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.47509698, 28.82731649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74436517, 28.80345057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89237055, 28.71078267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12373465, 28.52976841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.43537219, 28.39752136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72222576, 28.38187748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11813051, 28.35051274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.82982413, 28.21519001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.46682101, 28.05299609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02618541, 27.83048383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47925404, 27.54277838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.98385939, 27.44397796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.41981965, 27.34659585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.31856816, 27.2451963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.47324166, 27.34650825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.44312208, 27.43653064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.66984597, 27.50720679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.29605129, 27.56886343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.87825849, 27.5107056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.2187042, 27.59610985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.65789157, 27.53099589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.93252762, 27.54451197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.0903, 27.49286112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.40449436, 27.38090588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.38835795, 27.26022721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.21373967, 27.09317091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.26694023, 27.13933427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.29799894, 27.12785425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.28902308, 27.12944248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.21562448, 27.28430857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.18118385, 27.38701688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.00018, 27.44045067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.97603267, 27.41622788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.85499865, 27.43666641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.65351276, 27.48503528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.55391759, 27.51154792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.66088833, 27.56757067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.5782559, 27.59702341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.40507339, 27.60477486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.37178987, 27.59910389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.09317565, 27.55768926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.83096707, 27.42754514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.52244791, 27.55852084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.41081819, 27.47998835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.50762751, 27.54931501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.96957572, 27.53900177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.54641177, 27.50466145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.04588284, 27.38630563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.40440321, 27.54697765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.6951061, 27.52700025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.01194061, 27.68305611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5141202, 27.75713518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.16978702, 27.74623962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94602835, 27.67196529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.87258306, 27.53704248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.70059956, 27.49816013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.54416609, 27.47895177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5097348, 27.34350372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.52922609, 27.48954808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.97329138, 27.59429527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.42115487, 27.63289689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02576779, 27.56967728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8816781, 27.53751509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.38952675, 27.47885223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.76679018, 27.33326811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.03767221, 27.29090918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.20085308, 27.28080454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05949162, 27.23355656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.061581, 27.17742648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.04873607, 27.06136625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.34412656, 26.976219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.11948222, 26.53505176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.20772777, 26.8008766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36953813, 27.04386226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.31453807, 27.20576715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.38190346, 27.32205444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4225848, 27.40989505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.35382905, 27.51537535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.11400342, 27.67106384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55561632, 27.82860895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12811481, 27.73547889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93279143, 27.70292447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.05340811, 27.65579888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25712484, 27.55737293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.36954935, 27.57925747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.39703415, 27.65533773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.68014025, 27.35329266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.1691634, 27.31220348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16913783, 27.2187426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87174405, 26.94959819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.60053782, 26.60206561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.60141031, 26.60357121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.94758841, 26.48831638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11161494, 26.44218083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.42229745, 26.6245223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.21417372, 26.71237631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.28964971, 26.73535401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.47419688, 26.70463687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.5147488, 26.61780137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.56990907, 26.56196908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.33273305, 26.62611863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.63530128, 26.62415326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.98280487, 26.76886247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.58795826, 26.74482754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.11113477, 26.61319545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.36761691, 26.2393551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.71603301, 26.6949393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73197339, 26.92717331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.0031447, 27.01625725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.02953065, 27.02278073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.85474404, 26.97128951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.2695464, 26.86238559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.57914231, 26.69802376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.0280439, 26.70490383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.40978483, 26.67636159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77691765, 26.60088868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.40382783, 26.8117713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.09163992, 26.92612269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.75721584, 26.99168801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.60710156, 26.90335153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.48434413, 26.86532512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.41414534, 26.76178894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.23834742, 26.62678286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1049334, 26.83776815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.17872701, 26.98165028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16145557, 27.07731969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.20044677, 27.13023666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.0112519, 27.12593469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.64297379, 27.27970543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.200704, 27.22859921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.95812005, 27.25537948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.79657183, 27.50847611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4621635, 27.74789049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.20363967, 27.91094572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88239707, 28.00751196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.69059988, 28.1546481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.60494609, 28.27844406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55065338, 28.31416822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.43392966, 28.29104529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48218921, 28.20657785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74459422, 27.97736132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0863772, 27.594304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.85302899, 27.50230802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.29648156, 27.647805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82378739, 27.40463565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.11481584, 27.66946479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.22796038, 27.75224037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.29047905, 27.76608032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.38663053, 27.71378362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.72293387, 27.55641357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.66854066, 27.81155796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22953769, 28.2638831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8161377, 28.39535332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.29380041, 28.3710478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.34999797, 28.32125924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25881204, 28.24149886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.99689211, 28.04652061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53756012, 28.31274245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99538264, 27.65611391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.77402864, 27.23034497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7783995, 27.57488263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.23775364, 27.83229521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.83611698, 27.99294292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.18629292, 28.02576561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.60374058, 27.64360113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.29112135, 27.70280904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.95684213, 27.80007802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.56068418, 27.80797893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95771577, 27.74805106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.76217748, 27.62698207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35465748, 27.44188271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.23556895, 27.50258636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.92351378, 27.46689962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.63917262, 27.39893062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32292043, 27.50919753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.99508889, 27.75882613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.79040625, 27.92455262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.45392481, 28.04807203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.43949533, 28.05353648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.54040156, 27.9587253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.76277602, 27.63588705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.30691184, 27.81862567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0161371, 27.90210848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.75192854, 27.91768099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.84606583, 27.8704722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02083701, 27.76718757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.16214476, 27.75663672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.19008226, 27.60020401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44146714, 27.4313697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.52099844, 27.35479675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.39621896, 27.28774841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.43127621, 27.22076962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.57820913, 27.13467444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21994228, 27.00515292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.44401812, 27.04912351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.38164251, 27.01628683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.31354626, 27.0682061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.32436704, 27.14269459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.25292778, 27.21721194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.27352001, 27.27357481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.47267677, 27.39081024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6214542, 27.31807323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.24667617, 27.04824706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.44655464, 27.35277062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.62712849, 27.75503827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.89954354, 28.05629866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.43629054, 28.21100043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.14380534, 28.22718763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.1390729, 28.40942046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.28487562, 28.53310315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.49002171, 28.60925482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.78276789, 28.6371753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.12671022, 28.61195764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54223697, 28.52738929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.88671597, 28.39594277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.11858818, 28.35252008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.33820586, 28.24419384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.66305326, 27.75373827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.67988506, 27.8544415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94697072, 27.86023636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.28069469, 27.79976805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.55078875, 27.62297742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26283495, 27.08515904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.99695867, 26.96458906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.26765667, 26.99188879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.56968287, 26.95437787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.86694181, 26.87860191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.19830906, 26.77590282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.00203142, 26.68383009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.7324359, 26.55718787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.52912554, 26.41072117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.51630656, 26.16619894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.02431058, 25.73080081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.90852642, 25.82821372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.77211759, 25.87209766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.6408517, 25.87720701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53417019, 25.85276443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.42097975, 25.81726689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.26422115, 25.7837209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.16139302, 25.83135779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.1348062, 25.86359096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.84677468, 25.88562225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6768062, 25.88725129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.6950785, 25.86563047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.60865303, 25.53630297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31470531, 25.6099376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32987952, 25.52223506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.89011054, 25.84695392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.69367382, 26.12177341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.3907569, 26.27752224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.7362518, 26.28284069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.70567078, 26.30256522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.15565097, 26.23241842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.56837658, 25.75580443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.30131652, 25.37154443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.2533866, 24.9545378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.43410958, 24.58136396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.532, 24.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94050321, 27.4436491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.99295534, 27.54646472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0004402, 27.6423254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.02354328, 27.78691618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.11836466, 27.88549926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17302203, 27.92236511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.15752704, 27.89296556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94538873, 27.70816021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.17522542, 28.02286697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.21205311, 28.11907727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.36003684, 28.0460892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.42760143, 27.9356107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.42043586, 27.7797645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.0775014, 27.54466048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.72327875, 27.30608133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.70323653, 27.67214264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.60252176, 27.93892128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.56454192, 27.74630525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.48069647, 27.66758883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.09483287, 27.48077046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.64615275, 27.20021929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18178394, 26.84415458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.83944963, 26.44833643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54566632, 26.10058216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.54120307, 25.87520239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.20338514, 25.89104609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.86309803, 26.10304354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.49324694, 26.37800765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.16612628, 26.5318794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.9152365, 26.5385072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.25167656, 25.93812853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36446212, 25.89524077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.22520154, 26.4392009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.12784309, 26.55452712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.17637437, 26.61142134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.21687277, 26.53538069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23576001, 26.25576949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41709622, 25.63066166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.57998271, 25.75327429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.97143518, 25.88083858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.37775118, 25.80470021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.96907845, 25.80704291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54060041, 25.86199507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.9987331, 25.9017525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.26117955, 25.84157734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.0901921, 25.98331215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.74156099, 25.72483989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.72097258, 27.11722416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.0523118, 26.42074055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.58468841, 26.85267946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.25943518, 27.24426128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.11253274, 27.51733404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.12818733, 27.64017332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77724434, 28.16580817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.63927832, 28.48544598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.56881016, 28.63485175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.40435145, 28.58207462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.51791437, 28.40327111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.64055969, 28.00190164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77641551, 27.2240492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.78805083, 25.96273463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.52271566, 26.07780495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.10059124, 26.20347221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.96884093, 26.39237687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.6825481, 26.8216803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.63890088, 27.07644469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.76890892, 27.25334592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.85799852, 27.38467425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.1890188, 27.4701404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.98523043, 27.83442881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.96952628, 27.98180828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.33385465, 27.94408814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.76430052, 27.72229473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0551551, 27.05099825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.41678015, 25.82979271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.76563597, 25.63967439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.06834448, 25.85236855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39611116, 25.82824545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.17749805, 25.50788221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.83954942, 25.8001007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98519276, 26.07983834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.98146013, 26.3088196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.52009999, 26.56515179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.01460933, 26.77060863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.6360741, 27.05209741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41999553, 27.22604573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.43555291, 27.29940387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.37414263, 27.31639756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36718286, 27.29050422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.24805738, 27.2353666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.13810694, 27.164209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.91678827, 27.09717119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.65428421, 27.23088397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.84932061, 27.17485069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.99785219, 27.03884589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.03141098, 27.07380024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.14839116, 27.01150911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.20336748, 26.85238851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.23704788, 26.56836111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.84548862, 26.71008343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.53946312, 26.65720945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.66965041, 26.83685491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.72935517, 26.95175992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.86376959, 27.01749609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.93135033, 27.01029892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.92642433, 26.91100277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.40372823, 26.65742228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.39466192, 26.89727004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.53547874, 26.97793377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.67049182, 27.03077021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.56856645, 27.28204958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.99537009, 27.50380353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.93300762, 27.53338263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77990919, 27.47109911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.83517906, 27.34656758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.90453279, 27.29541844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.16281821, 27.29806325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.91212816, 27.33389637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.81023668, 27.32592729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.79011921, 27.27066242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.7964542, 27.12410005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.46912269, 26.81120812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.11239803, 26.7221035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.00685597, 26.88603413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.28331129, 26.9945989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.38953003, 27.09543531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.80226818, 27.11837769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.3022775, 27.06348206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.66754783, 26.95370265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.884322, 26.8026404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21686835, 26.88262902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.01424692, 26.80835663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42377877, 26.96961784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.50872734, 27.17543883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.62896398, 27.3326993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.71680971, 27.43769409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.82042339, 27.47491574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.05133983, 26.91444907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.81243191, 27.06857218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.38408832, 27.45016281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42187082, 26.84672171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.93711831, 26.75821798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.20101088, 26.68657764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.55326158, 26.5748021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.95024451, 26.42837195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.21895264, 26.40136557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.10113042, 26.41230393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.99543681, 26.1419331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.2121566, 25.96326235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.15464456, 25.8669216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.16632892, 25.79295851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.20592698, 25.70792191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.33445185, 25.58326196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49468262, 25.61997366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46344273, 25.6672345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.18119125, 25.78484189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.22702831, 25.94605431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.27439574, 26.06422078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26618403, 26.14235035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.7836626, 26.17298537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.4583275, 26.19779794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09543256, 26.39585781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.84779131, 26.63648301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.00105209, 26.7146973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.05487184, 26.72397027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.12853566, 26.65625589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09352585, 26.48393703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.14495697, 26.18918297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.04051167, 26.34131004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.77000128, 26.48296795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.97864719, 26.49544329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.32974347, 26.60940659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.64771883, 26.62250538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.04867219, 26.53874758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.39344323, 26.38531205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.3400653, 26.17677197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.26476176, 26.07664429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50649881, 26.1344421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54776249, 26.0421021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.71799446, 25.96650807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95989324, 25.9365507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.13754979, 25.99530697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.28404167, 26.13073233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.38181044, 26.46895895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50544879, 26.7440039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.63456849, 26.43257762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.00702567, 26.29841147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.81038838, 25.95264546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.95529431, 25.78107844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.76117238, 25.77804341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.38032103, 25.89460554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.27654532, 25.97571437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.55252633, 26.09308521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.61657367, 26.14444467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50793899, 26.18756325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.39159591, 26.20284589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.37380575, 26.18248992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.44991263, 26.1374657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41199001, 26.06901056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.39193895, 26.07261686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.4158653, 26.30019525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.40062294, 26.33071146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.38078759, 26.43573523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.20701296, 26.51312844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.11222733, 26.5490561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.8851417, 26.55619024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.89985433, 26.53260572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.78186191, 26.63597728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54809367, 26.81165801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.54389445, 26.94771128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.50336612, 27.03756653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.49832316, 27.08024496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51465142, 27.07155166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.44210499, 27.00049196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.44094653, 26.88968175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46162952, 26.91278149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.48042278, 27.05081505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.46621539, 27.24210248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.53496849, 27.35615743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.61491216, 27.3786654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.70694332, 27.30372673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.95504366, 27.315209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.97304103, 27.49738174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.96237134, 27.7533866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.40395681, 27.71342515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.61791749, 27.60671117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.64663737, 27.46970914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.76384904, 27.28671596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.85227848, 27.06618268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.94630993, 26.96861177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50954407, 27.17611955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92758408, 27.34590867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.55165955, 27.4661213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.36011115, 27.52022574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.51604055, 27.50164614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.92309735, 27.38270088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.48736696, 27.18043092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.6906576, 27.2217053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50816421, 27.13728426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.47795398, 27.29032854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.42075088, 27.40370544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.41912938, 27.4716165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.35337228, 27.48663374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.2391114, 27.42961049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12052384, 27.03106162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.24909196, 26.88651153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.34363748, 26.82273012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.57630316, 27.03868381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.73857547, 27.04444589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.9634981, 27.02556765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.3536525, 26.9410948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.85208637, 26.77583999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.44685736, 26.8226402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.05647077, 26.77087355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.63958118, 26.41051972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.13934234, 26.02538612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.68633938, 25.60461972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.14931596, 25.17129166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.59113724, 24.70709851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.08649064, 24.21943959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.45425268, 24.02291912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.48924614, 24.18618797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.45061474, 24.47685879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.52318672, 24.42901066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.59834189, 24.29983701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.6360863, 24.09284096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.67647742, 23.836321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.85675071, 23.64461466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.76430626, 23.51219204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.59102501, 23.49699489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.55284874, 23.54766489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.54710363, 23.54238348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.61853665, 23.48370027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.69473168, 23.37297385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.79709611, 23.21396475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.69701807, 22.97333456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.82655156, 23.10683056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.92165691, 23.17879197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.91690043, 23.14646801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.89911968, 23.07736731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.99076506, 22.96342217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.27919135, 22.76155967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.87407376, 22.84410226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.3478587, 22.71508663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -96.0444638, 22.8168968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.95841257, 22.93316191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.86836274, 23.022833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.82994485, 23.07683833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.75634629, 23.05790444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.69803715, 22.93469751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.76951219, 22.91749039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.86248309, 22.90786467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.89915073, 22.90826357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.89851879, 22.98067089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.85531511, 23.16888251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.77732051, 23.30883015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.68161701, 23.39913122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.60925873, 23.43407512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.4598347, 23.61010348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.35163529, 23.71519686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.06602098, 24.31946666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.84482457, 24.9082159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.7237331, 25.43551388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.37583393, 25.92149799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.10936694, 26.35329199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.94638475, 26.62401332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.97738781, 26.63385627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.74228621, 26.83380669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.45911118, 26.91138204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.91669281, 27.19948211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.4597333, 27.41705384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.03981944, 27.54909115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65251563, 27.58429127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.35543767, 27.70415222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.05973649, 27.79097883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.69047558, 27.92571084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.48344508, 27.84914882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.25572573, 27.72003139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.06900007, 27.52197619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.8362841, 27.22979489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.68855371, 26.92396124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.61673992, 26.86947256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.50892673, 26.89522028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.25310331, 27.12253159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -89.12643502, 27.28614604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.93583282, 27.39786758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.82951342, 27.44496984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.81422812, 27.43818284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.83600117, 27.38061611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.66062387, 27.36702261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.28321763, 27.4333539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.97974981, 27.50810518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.67153077, 27.54769435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.45793981, 27.53758434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.27264427, 27.47384588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.0811669, 27.34416483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.7849292, 27.52352237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.41008186, 27.98516658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.36793585, 27.97687164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.28494594, 27.91037735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.27540908, 28.03157028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.44226933, 28.07237832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.87025872, 27.96911069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.60267607, 27.73610742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.0523269, 27.79443959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.91256722, 27.64728714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.08166682, 27.9497961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.17414588, 28.09798205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.29002373, 28.14978563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.4070517, 28.12378016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.50993337, 28.00806575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.71881887, 27.63615194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.80285228, 27.89652233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.99543308, 27.95681021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.94389998, 27.80434894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.00645319, 27.84216852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.95920282, 27.8209744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.98968609, 27.71692815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.88925549, 27.4806333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.94495486, 27.95887369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.92080637, 28.327226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.09579047, 28.65257485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.29186284, 28.75508706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.42610923, 28.7388665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.68943173, 28.68822777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -87.808, 28.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.917, 28.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.06377853, 27.11196949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.11370851, 27.36673452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.19817959, 27.54386847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.96260257, 27.80590696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.87531369, 27.95627369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.8512569, 27.97456053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.78492011, 27.90950591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94887495, 27.28307284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.43107483, 26.39506005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.575585, 26.32606875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.34866222, 27.31840552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.60799309, 27.85423748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61920867, 27.87250461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.68241149, 27.79579189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.62663762, 27.78502442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.70780607, 27.79876608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.72599261, 27.90099551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.67428259, 27.95211631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.61600987, 27.96776505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.57708272, 27.96687805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.52478567, 27.89055333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.53202987, 27.84495702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.5449745, 27.66472332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.52887, 27.77023343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.48044429, 27.72233512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.55916374, 27.52568371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.59701295, 27.54331665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.65746612, 27.67655666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.78320378, 27.78114492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.82477213, 27.77829959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.09009262, 27.7036443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.15823338, 27.85261418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.0896719, 27.85336044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.19255095, 27.92568914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.29316675, 27.82986105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.32553385, 27.77534875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.31937281, 27.83758219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.395988, 27.71714157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.14209101, 27.39499464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.73217849, 26.60741589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.66221272, 26.59944469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.71401829, 26.18069986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.34951717, 26.34716406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96670128, 25.65268049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.56203785, 25.11900887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.23676512, 25.85800852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.83597932, 26.55728865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.28621641, 26.74829371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.74898125, 26.74757253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.84424705, 26.87206423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.7706036, 26.83081484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.68191741, 26.70071961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.74849618, 26.78472119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.79128632, 26.69684536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.91899748, 26.73547584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.99609809, 26.88676646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.21833944, 26.8622716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.12300397, 26.80146516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.99453966, 27.05922251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.88680159, 27.08941209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.73962745, 27.06297245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.41127848, 27.04518287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.09549194, 27.00050256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.91157693, 27.15696354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.89886418, 27.11420919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.99170942, 26.89967477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.08461502, 26.58053362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.09696232, 26.29593859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.43533211, 26.06937719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.81721908, 25.7985508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.1847169, 25.66018479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.20341808, 25.72166076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.29603983, 25.7768429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.35150428, 25.78409874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.36277547, 25.77466597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.36940629, 25.90993329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.38895054, 26.16232928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.39478491, 26.26027892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.39813971, 26.28652493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.32221952, 26.32339672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.28956121, 26.35380162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.08137382, 26.19438865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.82451991, 25.90227748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.790273, 25.96320461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.90880934, 25.86678374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -95.01137673, 25.68775658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.92636575, 25.50840388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.70828533, 25.46597922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.53419713, 25.46747138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -94.35410757, 25.42291099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.7588165, 25.18332384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.76801728, 24.68307967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.96643841, 24.01859525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.63078521, 23.22237878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.43452515, 22.32035026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.33687586, 21.20455907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -92.79141892, 20.31095254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.95943178, 19.4551362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.90489, 28.05417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.926, 28.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.825, 28.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -88.513, 28.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.308, 28.456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.918, 28.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.014, 28.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.669, 27.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.763, 28.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.977, 28.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.827, 28.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.007, 28.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.982, 28.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.954, 28.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.034, 28.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.997, 28.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.008, 28.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.001, 28.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.998, 28.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.97, 28.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.983, 28.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.963, 28.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.94, 28.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.935, 28.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.857, 28.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.89, 28.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -91.144, 28.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.925, 28.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.929, 28.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -90.928, 28.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -93.583, 25.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.071, 29.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.056, 29.209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.04, 29.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.04, 29.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.042, 29.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.041, 29.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.102, 29.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -85.962, 29.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.235, 29.288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.251, 29.294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.255, 29.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.248, 29.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.253, 29.27 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.246, 29.271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.34, 29.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.345, 29.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.337, 29.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.343, 29.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.353, 29.359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.292, 29.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.306, 29.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.303, 29.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.303, 29.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.3, 29.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.256, 29.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.248, 29.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.253, 29.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.247, 29.48 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -86.245, 29.479 ] } } +] +} diff --git a/data/whaleShark.jg.webp b/data/whaleShark.jg.webp new file mode 100644 index 0000000000000000000000000000000000000000..d389c3f75c60bd4c59921f4618843fe4189d2e48 GIT binary patch literal 38300 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%0DB*}p(dpm6vRhBgt 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⁣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 literal 0 HcmV?d00001 From af3ccd26d94eb3a6ed7178b35f2046d7739724bc Mon Sep 17 00:00:00 2001 From: laivlys Date: Mon, 28 Oct 2024 11:14:39 -0400 Subject: [PATCH 04/11] Updating folders --- css/style.css | 136 +- data/blueFinWhale.geojson | 21416 ++++++++++++++++++++++++++++++++++++ data/blueFinWhale.jpg | Bin 0 -> 141873 bytes data/northArrow.png | Bin 0 -> 10159 bytes data/pilotWhale.jpg | Bin 0 -> 303987 bytes data/spermWhale.jpg | Bin 73816 -> 111090 bytes data/whaleShark.jg.webp | Bin 38300 -> 0 bytes data/whaleShark.jpg | Bin 202811 -> 0 bytes data/whaleShark2.png | Bin 0 -> 1381542 bytes js/main.js | 326 +- 10 files changed, 21736 insertions(+), 142 deletions(-) create mode 100644 data/blueFinWhale.geojson create mode 100644 data/blueFinWhale.jpg create mode 100644 data/northArrow.png create mode 100644 data/pilotWhale.jpg delete mode 100644 data/whaleShark.jg.webp delete mode 100644 data/whaleShark.jpg create mode 100644 data/whaleShark2.png diff --git a/css/style.css b/css/style.css index c7843df..3472f9d 100644 --- a/css/style.css +++ b/css/style.css @@ -1,70 +1,150 @@ body { - background-color: #121212; /* Dark background */ - color: #ffffff; + background-color: #252829; /* Dark background */ + color: #FAFFFD; margin: 0; padding: 0; - font-family: 'Arial', sans-serif; + font-family: 'Asap Condensed'; + font-weight: 100; } -.container { +#container { display: flex; + height: 100%; + width: 100%; } -.dashboard{ - margin: 20px; - font-size: 24px; +#dashboard h1 { + margin: 20px 0 5px; + margin-left: 20px; + font-size: 45px; } #map { height: 90vh; - width: 130vh; + width: 70vw; padding: 0; margin: 0; } #tab { display: flex; - justify-content: left; - width: 100%; + justify-content: space-around; + align-items: center; + width: 69%; height: 5vh; cursor: pointer; gap: 10px; padding: 10px 10px; border-radius: 5px; + font-family: 'Asap Condensed'; } #sidebar { + display: flex; + flex-direction: column; + align-items: flex-start; + width: 30vw; + height: 90vh; + overflow: hidden; + overflow-y: auto; +} + +#whaleImageContainer { display: flex; flex-direction: column; - align-items: end; + align-items: center; + flex-grow: 1; } #whaleImage { - width: 50vh; - height: 30vh; - border-radius: 5px; + border-radius: 5px; + flex-grow: 1; } .whaleButton { - font-size: 16px; - font-family: "Ariel", sans-serif; - border-radius: 10px; - background-color: white; + font-size: 18px; + font-family: "Helvetica"; + color: #FAFFFD; + border-radius: 5px; + border: none; + background-color: #758fae; + padding: 10px 15px; + cursor: pointer; + transition: background-color 0.3s, transform 0.2s; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); + flex-grow: 1; + max-width: 200px; + +} + +.whaleButton:hover { + background-color: #3a5a77; /* Darker shade on hover */ + transform: translateY(-2px); /* Slight lift effect */ +} + +.whaleButton:active { + transform: translateY(0); /* Reset the lift effect */ + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Reduce shadow on click */ } -#indicator { +#whaleStatusContainer { position: absolute; - top: 10px; + top: 25px; right: 10px; - padding: 10px; - background-color: rgba(255, 255, 255, 0.8); - border: 1px solid #ccc; - border-radius: 5px; + height: 10vh; + width: 29vw; + display: flex; + flex-direction: column; + align-items: center; +} + +#whaleStatusLabel { + font-size: 30px; + color: white; + margin: 0; + padding-bottom: 5px; +} + +#whaleStatus { + font-size: 45px; + margin: 0; +} + +.statusText { + color: inherit; + font-weight:bold; +} + +.activeButton { + box-shadow: 0 0 10px rgba(100, 128, 128, 0.8); + border: 2px solid rgba(100, 128, 128, 0.8); } -#whaleDescription { - font-size: 16px; +#weatherInfo { display: flex; - border-color: red; - width: 50vh; + flex-direction: column; + width: 100%; + flex-grow: 1; +} + +.weatherItem { + margin-bottom: 10px; /* Space between items */ + flex: 1; +} + +.weatherBox { + padding: 10px; /* Space inside the box */ + background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */ + border: 1px solid #ccc; /* Border color */ + border-radius: 5px; /* Rounded corners */ + font-size: 36px; /* Font size for the value */ + color: #ffffff; /* Text color */ + text-align: center; /* Center align text */ + width: 100%; +} + +#windDirection { + position: relative; + text-align: center; /* Center-align text and images */ + flex-grow: 1; } \ No newline at end of file diff --git a/data/blueFinWhale.geojson b/data/blueFinWhale.geojson new file mode 100644 index 0000000..7739234 --- /dev/null +++ b/data/blueFinWhale.geojson @@ -0,0 +1,21416 @@ +{ +"type": "FeatureCollection", +"name": "blueFinWhale", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0726, 33.99902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.07017, 34.00611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04418, 34.00649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0372, 33.96855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01175, 34.02623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00277, 34.00729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00014, 34.01049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02098, 33.9921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99055, 34.01452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99153, 34.00607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98312, 34.00607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96414, 33.98383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9555, 33.98054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95061, 33.9804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95155, 34.00321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9479, 34.01173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97877, 34.07035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98135, 34.07295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94869, 34.0793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00909, 33.9965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00495, 34.01316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00438, 34.00448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.836, 33.95751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.80196, 33.95718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.77598, 33.94963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6471, 33.98038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.58718, 33.98976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59904, 33.91749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.52072, 33.87061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.60968, 33.8366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5936, 33.8235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.50263, 33.83814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.45297, 33.81939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.45292, 33.7939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4175, 33.78718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.46525, 33.77741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.41364, 33.74901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4612, 33.78594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.48796, 33.78226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.45642, 33.73729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.54555, 33.84375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.55046, 33.86707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.56772, 33.87946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.56972, 33.88035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59132, 34.00277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59542, 34.02857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62608, 33.96227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65388, 33.9786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.60616, 33.99868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.60143, 33.99877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.60175, 33.99887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.72987, 33.97893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.75185, 33.98462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.83201, 33.99847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.77674, 33.9747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.78733, 33.97932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.76127, 33.97796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.77128, 33.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.79492, 33.97863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81402, 33.99461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.84602, 33.99316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.867, 33.99319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99013, 33.95905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02862, 33.95783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9983, 34.05644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.06371, 34.07611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01502, 34.06279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99144, 33.96397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.90465, 33.96236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8106, 33.98956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81046, 33.9894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.78503, 33.97721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.72355, 33.97582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.78472, 33.96704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.77599, 33.95395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.76843, 33.95196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73629, 33.95696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.72941, 33.96671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.70751, 33.9791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65631, 33.98095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64123, 33.95699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.56751, 33.87956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.51934, 33.76741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4048, 33.71278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.38697, 33.71955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.39543, 33.66468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34902, 33.63889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3862, 33.67796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.31998, 33.69173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30158, 33.65575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2865, 33.62829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.21779, 33.59565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.13794, 33.56256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.10835, 33.56772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.07599, 33.56748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0465, 33.5586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.04307, 33.57084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0171, 33.57253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.03204, 33.57016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.99984, 33.56181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.96325, 33.55853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.88972, 33.57301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.87789, 33.57157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.90808, 33.53084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.81301, 33.56855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.83647, 33.53659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.82377, 33.53058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.81115, 33.53339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.75124, 33.47551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.77167, 33.47374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.77238, 33.47164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.73755, 33.41989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.71736, 33.40987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.71684, 33.41025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.67438, 33.38746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65441, 33.35073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6399, 33.33565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65806, 33.31792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.62792, 33.2598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.60267, 33.20011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.59272, 33.18528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.57498, 33.14667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56089, 33.11832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55135, 33.10449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54468, 33.07501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5513, 33.07792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54587, 33.04753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.50552, 33.00884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.49876, 32.99638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45698, 33.02322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.41162, 33.0168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30104, 32.99724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27296, 32.98965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35612, 33.04752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34567, 33.07204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36147, 33.08119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31515, 33.05463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31744, 33.02374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29805, 33.00811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33924, 32.98694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27766, 32.88713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2894, 32.81943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31341, 32.78723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3219, 32.75552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33319, 32.74517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34814, 32.72361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35245, 32.71085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31295, 32.68841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30902, 32.6698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27482, 32.6571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.25672, 32.61516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.22374, 32.56299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29307, 32.54409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30885, 32.48301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27801, 32.40028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27939, 32.37357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.24886, 32.21295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2031, 32.22763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.14122, 32.19716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.12724, 32.16342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.11251, 32.13011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.15507, 32.11421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.16817, 32.01017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.16632, 31.95026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.15937, 31.91673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.13832, 31.86692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.15244, 31.84909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.07906, 31.83957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.07661, 31.79878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.07637, 31.79979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.06561, 31.7793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.05498, 31.6302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.06009, 31.56365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.04888, 31.55899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.07202, 31.47384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.94315, 31.35445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.94288, 31.35451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.88409, 31.32998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.88386, 31.3296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.86086, 31.28052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.83938, 31.27337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.82482, 31.25557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.67869, 31.30086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.65688, 31.2906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.62836, 31.27707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.59871, 31.25474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.58285, 31.2501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.50031, 31.25335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.53699, 31.27699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.50338, 31.27411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.48231, 31.28173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.40257, 31.30226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.62534, 31.3127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.63248, 31.37629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.69306, 31.39891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.71842, 31.44237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.76084, 31.45588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.73295, 31.39141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7742, 31.34883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.86435, 31.37761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.89701, 31.38277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.96197, 31.32181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.04611, 31.30986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.20903, 31.31536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.25666, 31.32195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1783, 31.32914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.22997, 31.3152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.22394, 31.31887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.21885, 31.36102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.18928, 31.37612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2535, 31.45131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27427, 31.47238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.21745, 31.49558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.19394, 31.59791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.18196, 31.64937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.17946, 31.64669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.16283, 31.6537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.13332, 31.65462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.11494, 31.66726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.12025, 31.66742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.08088, 31.6901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.04645, 31.71249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.03933, 31.70508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.00305, 31.70367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.96019, 31.72508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.95391, 31.7435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.02415, 31.77865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.01977, 31.80461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.01714, 31.81618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.00075, 31.90451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.02212, 31.90282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.93148, 31.83593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8884, 31.82097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.81516, 31.80417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.75658, 31.73417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.75126, 31.72935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.70555, 31.67243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.71363, 31.67545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.70144, 31.66526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.64348, 31.62174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.61025, 31.58453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.70038, 31.68475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.74542, 31.76279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.74319, 31.81363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.73697, 31.8211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.75316, 31.82208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.79546, 31.86988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.79449, 31.87143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.79966, 31.87559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.83386, 31.90851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.79918, 31.86037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.82724, 31.80331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.79846, 31.87537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.80514, 31.83216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.86046, 31.83553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.80845, 31.8699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.81836, 31.84931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.80984, 31.86612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.81278, 31.89915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.94966, 31.92095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35538, 32.15312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.23584, 32.20474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.25544, 32.21588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28382, 32.28563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29005, 32.38462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35288, 32.35108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35712, 32.49412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36047, 32.53675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37154, 32.58625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36902, 32.58588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.39036, 32.63578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4462, 32.70453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.47264, 32.72849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.61763, 32.89684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.86306, 33.12372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79915, 32.9782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.88808, 32.96612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.84941, 32.89811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.84925, 32.89851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.81854, 32.92679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79811, 32.96624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.87123, 33.01638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.91495, 33.06155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.92581, 33.07706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94933, 33.10371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.98585, 33.14059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.00549, 33.15756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.02373, 33.19624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.04687, 33.22285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.08254, 33.2636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0953, 33.2831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.12686, 33.32517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.11937, 33.31366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.12151, 33.31442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.17777, 33.3567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27628, 33.40347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.21994, 33.40518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.25807, 33.45054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29374, 33.50021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.38681, 33.55416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.25311, 33.48752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.24888, 33.46859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.31768, 33.54142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.26212, 33.5435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.25448, 33.54639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.22874, 33.55686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.24344, 33.55354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.24288, 33.56406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3006, 33.64319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.37216, 33.70656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.38197, 33.73223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.40393, 33.74721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4391, 33.78146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.44005, 33.74122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.47427, 33.76279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.52666, 33.78665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.60487, 33.79722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.63368, 33.84428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62797, 33.8488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64432, 33.89667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.67249, 33.92469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64794, 33.98956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.67845, 34.02347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69061, 34.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.13934, 34.06457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.15477, 34.06786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.15662, 34.06826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.29041, 34.05582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.35682, 34.08716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.31128, 34.07844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.34309, 34.08197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.33026, 34.10112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.41861, 34.12922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.50273, 34.15542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.56263, 34.17362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.55943, 34.18222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.62278, 34.18858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.63165, 34.19993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.62456, 34.20504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.67062, 34.21815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.62955, 34.25773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.64522, 34.27079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.55772, 34.31918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.54242, 34.29018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.54168, 34.30159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.46875, 34.21436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.46678, 34.19383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.44077, 34.17018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.39969, 34.12985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.43437, 34.1341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.45324, 34.14047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4459, 34.12023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.46662, 34.0263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.47399, 33.97308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.46236, 33.88609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.47168, 33.80797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.45346, 33.80347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.44764, 33.77275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.44131, 33.6882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.46129, 33.87573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.45539, 33.85987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.47546, 33.89219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.47577, 33.89217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.47852, 33.86876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.47914, 33.86749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.40712, 33.9336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.36144, 33.95597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3084, 33.83232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.21042, 33.70496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2106, 33.66772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.20932, 33.63673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.21433, 33.56263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.17827, 33.52527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.15228, 33.4857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14635, 33.46146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.12964, 33.43623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.07028, 33.28882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02233, 33.24744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99484, 33.22382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98496, 33.21359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95157, 33.17975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94832, 33.17552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92312, 33.16751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.88085, 33.12994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.87064, 33.11771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.87303, 33.17864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02905, 33.99555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99563, 34.01639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01313, 34.00234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00183, 33.98786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00539, 33.98271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00056, 33.97808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00303, 33.98145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99851, 33.96804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01541, 33.99604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00392, 33.98478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0011, 33.95998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99656, 33.94906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.995, 33.9536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.03579, 33.94061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04091, 33.98105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02831, 33.99045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00454, 33.98245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00233, 33.98284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99895, 33.98291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97068, 33.99147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01545, 33.99397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00986, 33.99805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01004, 33.99635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92905, 33.98426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.90683, 33.9689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01404, 33.96645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02506, 34.01944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00308, 33.98347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99542, 33.95499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9409, 33.9453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94746, 33.96351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.90416, 33.97311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.89164, 33.99615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9235, 33.99523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.93462, 33.9902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94188, 33.97843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96227, 33.98612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98113, 34.00172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99676, 33.98775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99663, 33.98946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99409, 33.96147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99333, 33.99931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0339, 33.99258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04953, 33.9802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00101, 34.00643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0388, 33.99418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99485, 34.01324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98507, 34.0157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97636, 34.02454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97196, 34.02022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.10266, 34.02504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.12897, 34.0268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.07094, 34.04866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9986, 33.98584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99537, 34.01637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99531, 34.03027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99159, 34.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99936, 34.03341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.70126, 33.92315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69647, 33.89963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68174, 33.90541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68548, 33.92124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.672, 33.90492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6909, 33.94178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68951, 33.9413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.70448, 33.93697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69496, 33.94508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.70817, 33.92026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71624, 33.9053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71963, 33.92291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.67923, 33.92906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71515, 33.9435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68341, 33.94978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68971, 33.95639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69865, 33.96313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69222, 33.96814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64485, 33.90066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64299, 33.89627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6911, 33.8653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74781, 33.89298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74684, 33.89472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7067, 33.92328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7512, 33.92204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.70866, 33.86125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73333, 33.89066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74492, 33.90758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74653, 33.9359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.76335, 33.92909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.77328, 33.93841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.83681, 33.95728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.83832, 33.9633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.79798, 33.96671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81786, 33.96142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.80534, 33.97223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81777, 33.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8423, 33.97356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.84604, 33.97189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.85278, 33.96923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.85742, 33.97073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.86076, 33.96619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.88385, 33.97522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91488, 33.97827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92138, 33.95897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.90401, 33.98541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91294, 33.9988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91319, 33.99405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.90651, 33.98196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94074, 33.98013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95938, 33.97178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95052, 33.95952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98187, 33.96719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97025, 33.99332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97691, 33.98901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99644, 33.98709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9324, 33.98769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91835, 33.99272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9308, 33.99249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81359, 33.95654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.76618, 33.93088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69907, 33.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.82173, 33.92601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7955, 33.92253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.78943, 33.91454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.78844, 33.92078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.78071, 33.91692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.79447, 33.92696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.78682, 33.93069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.78892, 33.95551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.83507, 33.9531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8642, 33.98457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94181, 34.00923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95216, 33.9901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94449, 33.97689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.88804, 33.96416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.89345, 33.96482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.89439, 33.9599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91387, 33.95255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92859, 33.94614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91996, 33.89413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92053, 33.86276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96603, 33.90214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91144, 33.88296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.93048, 33.94469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9006, 33.94824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.89238, 33.95955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.89682, 33.97442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.88842, 33.97609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.88478, 33.97994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.85831, 33.95697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.30117, 33.92687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.30124, 33.92635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.46535, 33.95679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.54652, 33.98222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.75807, 33.93725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.77041, 33.93558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.72703, 33.88455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.73253, 33.88064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.67946, 33.91247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.64345, 33.91365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.61342, 33.90818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.62087, 33.90216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.62175, 33.94358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.54122, 33.97617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.45062, 33.99508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.36954, 34.04608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.28828, 34.0534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.06177, 34.06699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25482, 34.06274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00651, 34.03007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91987, 34.01656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91946, 34.01182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.87307, 34.00028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.87526, 33.95221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.84679, 33.9317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.84574, 33.93274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.79868, 33.90926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68339, 33.93971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.60898, 33.93204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65837, 33.96878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65771, 33.98519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66403, 33.99509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71979, 33.97589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74488, 33.91663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.72282, 33.94277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.77639, 33.93424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.76163, 33.91764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.76068, 33.94229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.79587, 33.93391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81527, 33.92888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81022, 33.97103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.79971, 33.98188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73186, 33.95804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.75066, 33.88989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.75261, 33.88121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59697, 33.88293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.49364, 33.86428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.45252, 33.84444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.40031, 33.79094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.44986, 33.74655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.32991, 33.67415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30863, 33.63434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30061, 33.61632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30363, 33.62089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29036, 33.6271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2831, 33.6211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.31904, 33.63036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30664, 33.59381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29959, 33.58262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.17416, 33.54583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.10422, 33.51491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0508, 33.51849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.99296, 33.48598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94348, 33.48713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.82402, 33.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79168, 33.44157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.86862, 33.42364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.86363, 33.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79282, 33.40752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.78751, 33.40286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85505, 33.32279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.86703, 33.28487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79137, 33.27258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.75266, 33.24683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.75042, 33.2387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.75024, 33.23851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.73265, 33.23126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.72262, 33.2107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.72968, 33.20967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.74257, 33.20536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.69218, 33.15737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.67838, 33.13916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.59078, 32.98318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.58893, 32.97827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5834, 32.96371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55669, 32.9121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55621, 32.87787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5491, 32.86261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55522, 32.8322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54945, 32.76997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.51242, 32.74482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.52824, 32.73737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53291, 32.73147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53376, 32.73256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.51984, 32.70349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.52266, 32.67496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55967, 32.67003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55057, 32.6465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53793, 32.62831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5186, 32.5949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5033, 32.56905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.48167, 32.50794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.46119, 32.47258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.47052, 32.4643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4849, 32.47486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.44286, 32.44997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45845, 32.42789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45561, 32.41593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.41831, 32.3772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38051, 32.42658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37935, 32.42743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32997, 32.40199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.24895, 32.32387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.20855, 32.28874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.218, 32.28862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.22357, 32.2569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.23754, 32.24615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26765, 32.30192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.41959, 32.22386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45717, 32.18471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.49072, 32.14342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.57587, 32.11042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.61482, 32.08714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65957, 32.0542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65569, 32.0524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.70287, 32.01028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.61347, 31.9985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.66623, 31.97744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.63238, 31.97163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.58232, 31.93965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.57823, 31.88077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56611, 31.77146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.59952, 31.76969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.62694, 31.93236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.72809, 31.82714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.76512, 31.82343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.77731, 31.82231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7899, 31.76132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80533, 31.76389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.90171, 31.69334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94314, 31.70728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9406, 31.71955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9518, 31.71345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.99072, 31.72924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.01425, 31.76259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.98625, 31.79444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.01803, 31.8279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.03632, 31.85743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0358, 31.89982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.01959, 31.86852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0234, 31.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0701, 31.84261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.12012, 31.92129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.13007, 31.93573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.14556, 32.00935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1397, 32.01423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.15527, 32.03838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.19742, 32.13707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2122, 32.17452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.20938, 32.1886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.22861, 32.24072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27571, 32.30039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28899, 32.32636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30604, 32.36061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.35609, 32.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.40094, 32.413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.43584, 32.44122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.48614, 32.49859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.49331, 32.49941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.48702, 32.48764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.47991, 32.49459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.52374, 32.54272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.50387, 32.52709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.58489, 32.57482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59917, 32.58854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5665, 32.59499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.58763, 32.61309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62023, 32.61887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62281, 32.62296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65653, 32.63736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6817, 32.65322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.70918, 32.6831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7143, 32.68119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.78058, 32.63338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.79521, 32.65902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7625, 32.70735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.88144, 32.70871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.86883, 32.69961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.90282, 32.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91269, 32.69938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92974, 32.68799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96019, 32.6848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95306, 32.68268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02801, 32.68041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00543, 32.69043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.09135, 32.69402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.11009, 32.73326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.11809, 32.73964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.12956, 32.76115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14779, 32.76798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.17414, 32.78031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.15644, 32.76873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22172, 32.79514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24428, 32.90953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.29047, 32.95407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.32988, 32.99993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3623, 33.04441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.38241, 33.06919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.38076, 33.06946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.28991, 33.07899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.39068, 33.09876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.36663, 33.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3124, 33.06906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.23866, 33.09428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.21008, 33.10659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.18155, 33.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.35758, 33.18122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.39231, 33.20806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.44551, 33.15657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.47284, 33.17608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.54075, 33.19231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.52633, 33.19472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.53212, 33.18574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.58138, 33.20745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.67664, 33.23641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.81122, 33.33401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.81157, 33.33364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.90398, 33.38693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.98049, 33.42796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.97573, 33.43898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.05149, 33.47555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.04718, 33.47983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.05085, 33.47583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.06467, 33.47869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.15105, 33.51814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.16482, 33.52206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3446, 33.54672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2749, 33.53307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.28806, 33.53331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.28187, 33.53146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33789, 33.56265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33753, 33.5705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36215, 33.60451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.41643, 33.67301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.08485, 33.96222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98366, 33.98034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0198, 33.99758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92359, 33.97011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.03491, 34.01594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.03675, 34.02033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.03235, 34.0333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04568, 34.0436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24606, 34.00476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.27987, 34.00809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.30796, 34.00941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.32287, 34.00982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.35724, 34.01752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.32604, 33.99818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.30318, 34.02099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99875, 33.92352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.30815, 34.00899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98163, 33.93646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98687, 33.97315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01145, 33.97726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02642, 34.00154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02924, 34.00898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00188, 33.97662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99761, 34.00559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0481, 34.00437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.08567, 34.01448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02396, 33.99238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00296, 34.01566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98045, 34.0134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.975, 34.02263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.82178, 33.98166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.76881, 33.96387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74657, 33.9405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.72265, 33.92802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64723, 33.91909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64729, 33.91901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64707, 33.91117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59379, 33.87433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62432, 33.81883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.63278, 33.83935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.61802, 33.83435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64076, 33.8395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64014, 33.84979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.63182, 33.83284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62707, 33.83134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.61805, 33.82618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7106, 33.82819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73443, 33.82468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.67682, 33.88087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.80072, 33.98158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.80809, 33.99646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92749, 34.01699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.87631, 33.97815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9159, 34.00841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.93271, 34.01689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97164, 33.98883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94572, 33.98544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96802, 33.98753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98609, 33.99239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97116, 33.98053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97554, 33.98035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97581, 33.98035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98803, 33.98766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99946, 33.97574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99556, 33.97262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96503, 34.00465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96507, 33.98295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97972, 34.00929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98832, 34.02631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99369, 34.04117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.05548, 34.03409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.07919, 34.03884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.12025, 34.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.18242, 34.05156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2241, 34.06052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22584, 34.05827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24342, 34.05157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25868, 34.05004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.28283, 34.01955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14995, 34.05155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1705, 34.05488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.13961, 34.06343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.06792, 34.04261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02205, 34.02978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04959, 34.04453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02094, 34.03777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92807, 34.01095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.93099, 33.97927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.90878, 33.98278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.89106, 33.9679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.89807, 33.93355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91193, 33.92411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91824, 33.91686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91475, 33.89157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.86406, 33.88055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.86889, 33.91068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9246, 33.96195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99122, 33.97665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98577, 34.01866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9765, 34.00471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99463, 33.99591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00253, 33.98618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00908, 33.98579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00549, 33.98464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98343, 33.99277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.03398, 33.98561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01969, 33.9841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.993, 33.97482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99948, 33.97207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.06529, 33.98853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.09045, 34.0282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.09457, 34.0356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8657, 33.96439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.86573, 33.9647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8729, 33.97126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.86941, 33.99461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.87586, 34.00086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9034, 34.02357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.90208, 34.01465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.93644, 34.01559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95402, 34.02461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96865, 34.03104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.033, 34.00434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01127, 33.99452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.05126, 34.00222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04766, 33.99902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.08306, 34.00592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02568, 33.99223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04775, 33.99789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.06254, 33.99906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.06665, 34.00119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01184, 34.0134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.03387, 33.95608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.11899, 33.96335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14628, 33.94638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.06796, 33.9817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04449, 33.99654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.05701, 34.03487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04403, 34.00492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.03453, 34.00594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04296, 33.97845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97016, 34.00711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95867, 34.00568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91975, 34.02175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.93277, 34.03337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94229, 33.97352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.05272, 33.99566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1384, 34.00307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.17196, 34.02633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.23625, 34.02727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.34052, 34.12775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.29366, 34.06333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3053, 34.05586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.26759, 34.05285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2982, 34.0496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.27729, 34.07183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25452, 34.05029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.26507, 34.0836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74047, 33.94683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7012, 33.98289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.67796, 33.97117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66322, 33.97004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.57635, 33.90084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.56552, 33.85143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5224, 33.83964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.37308, 33.69647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2965, 33.65379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.23878, 33.57908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.22948, 33.57044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.20223, 33.56761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.13447, 33.5485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.12196, 33.53996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.09711, 33.52675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.48927, 33.25116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.67999, 33.38589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6793, 33.36146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53675, 33.27937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.532, 33.27541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53088, 33.20336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.51104, 33.17028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38374, 32.99733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34786, 32.89798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3171, 32.86257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37043, 32.82928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35446, 32.81378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31953, 32.75205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35026, 32.82622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34268, 32.87643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31255, 32.79137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33313, 32.7431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32348, 32.70025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31795, 32.67037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3386, 32.71013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34912, 32.52164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32556, 32.67582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3319, 32.65591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33364, 32.63787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33605, 32.60871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30999, 32.61217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31742, 32.56686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3279, 32.54644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3297, 32.53955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32847, 32.53571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3414, 32.51891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34675, 32.53297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35375, 32.53374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36651, 32.52362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37822, 32.51177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30612, 32.64198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33625, 32.68652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31354, 32.65708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34798, 32.62401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34285, 32.64461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34361, 32.65186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35409, 32.65505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34639, 32.65349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32094, 32.59618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29971, 32.61031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32942, 32.61321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32984, 32.61494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33127, 32.61621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32658, 32.60676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31523, 32.59103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33622, 32.60369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.41455, 32.60234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3294, 32.71466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32112, 32.74676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33824, 32.75873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.43973, 32.9329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45018, 33.00377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.47049, 33.04944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.59503, 33.15273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.59542, 33.14824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.63082, 33.18394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.72274, 33.22485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.96033, 33.38385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.09387, 33.39518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.16654, 33.32003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.09947, 33.34304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.18789, 33.30958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27637, 33.32417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.44862, 33.46242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29536, 33.63501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.31017, 33.69645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.32747, 33.76564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.35121, 33.83453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.42745, 33.91175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64166, 33.93557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66845, 33.93458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68461, 33.95449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66281, 33.92231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.63099, 33.87019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.63454, 33.85843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.61422, 33.87425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59618, 33.84982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59311, 33.83926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.63135, 33.75787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.63892, 33.72514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4525, 33.64667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.38316, 33.6074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.35912, 33.54192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.33375, 33.51745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34022, 33.51946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30769, 33.48873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34553, 33.52008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.40626, 33.5458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.36288, 33.5224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.316, 33.54995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.22975, 33.54032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.08351, 33.46626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.99717, 33.43475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.99826, 33.38583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.93206, 33.38317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.90622, 33.36345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85151, 33.32425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.89104, 33.32403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.72572, 33.22153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.72626, 33.20332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.67956, 33.17588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.60489, 33.13857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56639, 33.11624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.50468, 33.09124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45622, 33.11868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.48921, 33.10342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5449, 33.09412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56477, 33.1051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.61627, 33.11328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54718, 33.11096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54384, 33.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.57705, 33.09128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56496, 33.07572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55154, 33.11825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53583, 33.11529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53497, 33.12597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54814, 33.15346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53121, 33.15817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5471, 33.14879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55877, 33.15177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55116, 33.15295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54945, 33.14744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55149, 33.14556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54397, 33.15213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56775, 33.14528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53493, 33.14976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53422, 33.14905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53989, 33.1524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54039, 33.15071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54949, 33.15019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54798, 33.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54521, 33.1556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55639, 33.16117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56043, 33.17739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56757, 33.16338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.57206, 33.17431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.57373, 33.17731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56793, 33.1589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.58653, 33.16399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.57279, 33.19838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56522, 33.20988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56051, 33.20619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54081, 33.23709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5391, 33.2389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.56181, 33.22936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55234, 33.23242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55661, 33.22222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.66312, 33.3129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.685, 33.30217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.71993, 33.29844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.77221, 33.2799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.75777, 33.28314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.64808, 33.32717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.58423, 33.28656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.58116, 33.26974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5702, 33.25812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5574, 33.23498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5536, 33.21761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.40158, 32.98628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.76724, 33.39512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.73871, 33.32908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.70971, 33.29199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.69906, 33.26617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.57257, 33.17289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.49645, 33.12054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.46492, 33.12048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4278, 33.03694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4153, 33.00275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30616, 32.87966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26326, 32.85265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37316, 32.75069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1671, 33.66432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22969, 33.8657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.29581, 33.75226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.31033, 33.72256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.38121, 33.57021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.36497, 33.57566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.39975, 33.51142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.43173, 33.45125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.65258, 33.38509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.77488, 33.27397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.90482, 33.15268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.04109, 32.99491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88701, 32.96898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.90019, 32.94201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.90087, 32.94471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.00916, 32.95959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.95859, 32.95133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.00885, 32.95671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.07375, 32.93115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.07858, 32.92567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.11037, 32.90677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.08941, 32.9088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.148, 32.87691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.20612, 32.84098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.20735, 32.84053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.26919, 32.81328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.29071, 32.79021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.30514, 32.77763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.38569, 32.72538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.19616, 32.72369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.24234, 32.66434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.14754, 32.62315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.00508, 32.60116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.22558, 32.4877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.30692, 32.25593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.42509, 32.47164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.54148, 32.64385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6569, 32.79347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.70302, 32.87853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.84033, 32.88137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.68504, 32.85353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85504, 33.00445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.10451, 33.38765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.95241, 33.1852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.91688, 33.19248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.88007, 33.22437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81892, 33.27343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.80788, 33.28454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.76452, 33.29858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57006, 33.48791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.50872, 33.55796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.54471, 33.56363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.44849, 33.67124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.41591, 33.71155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.43858, 33.81637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.47776, 33.88123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.44731, 33.98135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.42779, 34.10638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.35376, 33.80514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33764, 33.74368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.25135, 34.00249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.30903, 33.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.10095, 34.14644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.02699, 34.27734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1828, 33.94308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1715, 33.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.75966, 33.73834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.75968, 33.73831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64312, 33.48099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.60668, 33.46132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.54155, 33.43171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.53023, 33.43516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4695, 33.42296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4913, 33.45415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.93874, 33.47086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.08932, 33.45941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.89871, 33.27329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85761, 33.24449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85215, 33.23218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.83759, 33.20308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65594, 32.9216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.58119, 32.83596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.60918, 32.85158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.60164, 32.83765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55644, 32.77861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5712, 32.79305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.48989, 32.65177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5433, 32.69306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5868, 32.69931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6607, 32.69169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.63852, 32.67492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.72498, 32.68402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.70784, 32.68313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7401, 32.67424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.46494, 32.64954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.49414, 32.64824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.66134, 32.6644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65463, 32.66676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7372, 32.64169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.87487, 32.61393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.98451, 32.62214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34779, 32.63132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27948, 32.68502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27946, 32.76848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29768, 32.79099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27689, 32.79295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28249, 32.82901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2856, 32.83923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29569, 32.86482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.33376, 33.00891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28234, 32.8763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27749, 32.85409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28578, 32.83505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30284, 32.82895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.32364, 32.86219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.35647, 32.86992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.36085, 32.87543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.31574, 32.89776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.40029, 32.98932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.39192, 32.96773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.37784, 32.97659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.38831, 32.99429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3241, 32.95024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.33888, 32.94618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34305, 32.92337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.36959, 32.95904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.37721, 32.92081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.39264, 32.9453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.38357, 32.94247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.61267, 33.08072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.72804, 33.17144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.88908, 33.11463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94348, 33.05832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96164, 33.06017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.03465, 33.07197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14188, 33.06633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.19484, 33.0615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.41003, 33.02589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.44233, 33.03445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.48837, 33.07304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.50344, 33.06849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.60583, 33.0544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.60209, 33.05891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.60625, 33.06259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.79868, 33.06758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.85272, 33.07306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.93566, 33.09427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9016, 33.98909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.89873, 33.98676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.80729, 33.96054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8274, 33.93848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.755, 33.93269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.75419, 33.91513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.56006, 33.84686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.53924, 33.84177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.50429, 33.82834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.48631, 33.81759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.32035, 33.71669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.24581, 33.68034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.13825, 33.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.09587, 33.59896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.05831, 33.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.41387, 33.55863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.05379, 33.44587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.99343, 33.38636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30787, 33.48436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.39636, 33.55807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.40337, 33.56519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4605, 33.51513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.48707, 33.51252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3673, 33.50159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.37726, 33.49686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3856, 33.48065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.35123, 33.49987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.35164, 33.50187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.36198, 33.49874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.35489, 33.49465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34676, 33.49743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27831, 33.48582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.26636, 33.50519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27546, 33.50378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2843, 33.47889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.24642, 33.45218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29206, 33.4608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28773, 33.46193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27026, 33.43911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.31746, 33.45202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28635, 33.47749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27765, 33.48406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27766, 33.48498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2558, 33.49546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.25202, 33.5196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.43603, 33.53232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.50404, 33.50292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.58508, 33.49173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.38792, 33.5155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.36034, 33.50726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.35333, 33.50915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.33368, 33.47231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2253, 33.4765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.14999, 33.55386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.32038, 33.51617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30695, 33.54863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30288, 33.5784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29475, 33.58811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28403, 33.58917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.31515, 33.60825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.32266, 33.61887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.36578, 33.66131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.44443, 33.62159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5036, 33.64782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.52511, 33.6506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.53019, 33.65616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.56466, 33.66328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.58904, 33.67162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.54122, 33.66172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.46596, 33.64609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.45616, 33.63448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.45772, 33.62742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.42564, 33.65733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.55334, 33.73933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.55939, 33.7628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.56597, 33.77384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.58097, 33.79531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59507, 33.84822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.61846, 33.88155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62545, 33.89574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69765, 33.91777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00398, 34.00246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.10826, 34.04485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.26259, 33.96379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.15695, 33.92533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.17774, 33.93665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.26025, 33.94291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.45949, 33.95318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.51906, 33.94977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.16433, 33.84228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81218, 33.68364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.85767, 33.67912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81372, 33.5938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.79697, 33.56626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74459, 33.56835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.54026, 33.55544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.43117, 33.49593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.39697, 33.47711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.41332, 33.48233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34538, 33.42774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34597, 33.51354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28017, 33.50775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.24421, 33.5003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.90245, 33.41804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.87805, 33.41139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.87747, 33.41138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80008, 33.4012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.67816, 33.3525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53687, 33.2817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.52744, 33.27007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.61468, 33.15838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.63659, 33.06419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.57926, 32.94609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.49672, 32.82596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.47499, 32.82239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4237, 32.60707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.48446, 32.57235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.48042, 32.48176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.46346, 32.59168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.43743, 32.41153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.44366, 32.59212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4502, 32.58377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45082, 32.56966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.43405, 32.5677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.51537, 32.58501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.63881, 32.82709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.64329, 32.84403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.64016, 32.91457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.58958, 32.93209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.59629, 32.99332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.58659, 33.16097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.63766, 33.14886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.64914, 33.12465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.63793, 33.1489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65362, 33.19109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65363, 33.19732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.89667, 33.43007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79738, 33.56922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.18645, 33.44113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3228, 33.50253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.44389, 33.54677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.67513, 33.64217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.80959, 33.77963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.86099, 33.80817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73693, 33.77685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69739, 33.79814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74926, 33.83008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.79723, 33.88079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.77212, 33.85731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04704, 33.95057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.12652, 33.98416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.16787, 33.92856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.31157, 33.96191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25992, 33.93489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.80301, 33.86669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.97386, 33.87016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.02444, 33.83818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.07576, 33.83652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.11423, 33.82525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.16106, 33.82665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.38511, 33.82225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4501, 33.81765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4513, 33.82469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64594, 33.87352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.72809, 33.95102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.74104, 33.88935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7411, 33.91093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.82252, 33.9475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.87403, 33.95984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.95887, 33.97729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1736, 34.07676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24524, 34.09008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.28707, 34.11802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.27977, 34.13502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.37207, 34.23342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.39491, 34.25073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.58116, 34.35756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.61582, 34.43512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.69404, 34.4978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.70684, 34.56635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.71468, 34.58536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76489, 34.64526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.80315, 34.72192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.90498, 34.87056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.92926, 34.84929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.97754, 34.9107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.01203, 34.90005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.99895, 34.89308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0357, 34.92957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.03816, 34.92704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.09159, 34.96458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.17494, 35.02267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.24497, 35.06546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33745, 35.12128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3488, 35.16805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.41214, 35.24142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.43759, 35.39302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4799, 35.46403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.53207, 35.56791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60738, 35.71446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.67126, 35.86039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60074, 35.66816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.63412, 35.69751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.77334, 35.80529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.83933, 35.93692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.98503, 35.93888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1645, 36.04489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.15379, 36.04704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01457, 34.00135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01771, 34.00072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04038, 34.0025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.06993, 33.99183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.13251, 33.99469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.07593, 34.02781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.11186, 34.05174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.07382, 34.03929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0625, 34.03291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.03111, 33.99253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97577, 33.98563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9399, 34.00276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9195, 33.99474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.83673, 33.9743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.87236, 33.96827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.87236, 33.9683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.88148, 33.98364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91643, 33.99187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.93037, 33.9985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95683, 33.99953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99331, 34.00816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97545, 33.99796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14068, 34.04223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.16564, 34.06298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.16572, 34.06366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22442, 34.07831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.15269, 34.05095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.09485, 34.06635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.05873, 34.05619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02244, 34.04063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.89747, 33.98172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.47798, 33.88223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.47174, 33.87952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64068, 33.85976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65678, 33.86915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65172, 33.88532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68101, 33.88691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69638, 33.88949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68785, 33.93289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66107, 33.92818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64422, 33.91319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64482, 33.90426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64501, 33.9032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69102, 33.93949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66707, 33.93446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.67089, 33.9356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71416, 33.93748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71061, 33.93497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73324, 33.91109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.75668, 33.89878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.76973, 33.89055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.77522, 33.8775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74328, 33.77933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71104, 33.72333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.67498, 33.71214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.43796, 33.68711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.43359, 33.68361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.40293, 33.68558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.37589, 33.67722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3485, 33.68857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34079, 33.6863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.31367, 33.67875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27487, 33.65996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27669, 33.64026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.23882, 33.60858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2579, 33.57633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.32194, 33.57555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.33228, 33.57843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.33232, 33.57847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3975, 33.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.39141, 33.7063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.38122, 33.71065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.46077, 33.7695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4938, 33.79194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.52898, 33.81896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5586, 33.85411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62161, 33.91894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68939, 33.9707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7395, 33.98858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.75041, 33.97943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81695, 33.98811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7826, 33.98576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.86352, 33.99095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.86738, 33.99345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02337, 33.96005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98003, 33.97633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97367, 33.98019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91628, 33.98074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.89197, 33.97669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.88324, 33.99459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92255, 33.98912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96278, 33.98906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99117, 33.96985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02155, 33.95745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99213, 33.97244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04457, 33.98478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.39698, 33.94736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3106, 33.92724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.33728, 33.90587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.38754, 33.92601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.33188, 33.82686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3269, 33.7998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.30272, 33.77714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.27236, 33.76094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.35919, 33.93921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.279, 33.85803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.425, 33.94632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.45116, 33.95001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.46824, 33.95109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.56552, 34.03428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66279, 34.09308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83593, 34.18164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85336, 34.29112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83864, 34.31437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85314, 34.3333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.84958, 34.36718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.98745, 34.85166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.90452, 35.06001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.89206, 35.10968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.89204, 35.10968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.88327, 35.22369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.89024, 35.20881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.89023, 35.19383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.90227, 35.1851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.93066, 35.27675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.98409, 35.34241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.17271, 35.40194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.25363, 35.48772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2928, 35.51329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.32095, 35.51935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.34956, 35.54616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.36334, 35.52819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3811, 35.54342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.44192, 35.55616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.56408, 35.61992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6261, 35.62991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.93697, 35.78613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0341, 35.78462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.04076, 35.77658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.05881, 35.77608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.07565, 35.80489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.21488, 35.81957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.28251, 35.83123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.30099, 35.83268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48519, 35.86681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.55789, 35.91996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.58093, 35.93683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60175, 35.9437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.62713, 35.95308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6838, 35.9993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.67704, 36.02285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.85393, 36.62205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.80841, 36.59706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.80029, 36.6121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.86701, 36.65459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7673, 36.69127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7433, 36.70412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.76014, 36.74472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.77119, 36.78412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.61655, 36.89704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.61014, 36.97612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6149, 36.9995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.61028, 37.00427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60994, 37.02003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.62695, 37.0541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.63629, 37.08594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.62544, 37.09745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.62747, 37.12085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.66634, 37.2165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.68428, 37.20816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.69668, 37.26102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.87541, 37.76609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.92279, 37.71168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.11719, 37.73231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.12476, 37.7409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.19318, 37.80487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.19413, 37.81085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.25862, 37.8425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.29049, 37.87539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.38512, 37.93708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.50236, 38.03885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4653, 38.10933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.50055, 38.12311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.50418, 38.1401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.53311, 38.20253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.53827, 38.20157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.54253, 38.21005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.59928, 38.27774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8991, 38.53681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.87524, 38.55371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.86399, 38.56446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.94824, 38.58512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.95476, 38.60448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.95421, 38.60577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0292, 38.63325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.05897, 38.65236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.11076, 38.64978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.17149, 38.67028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -125.98114, 38.34417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.26211, 38.63783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2909, 38.63823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.83098, 38.69836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.59225, 38.71929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.61778, 38.72204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.64782, 38.76864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.68291, 38.80139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.69046, 38.81652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.72054, 38.84903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.72366, 38.86128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.73179, 38.8921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.79486, 38.9493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.86874, 38.99875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8993, 39.02019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.93766, 39.05118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.82166, 39.55218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8118, 39.58989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.87285, 39.61049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8487, 39.61769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.85962, 39.68387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.86453, 39.70781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.88478, 39.74421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.89873, 39.77723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.91646, 39.99855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.87067, 40.04328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.86707, 40.07394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.77738, 40.23789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.82666, 40.3564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.82259, 40.40147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.53984, 40.44013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.55429, 40.40819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.62682, 40.43557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.54385, 40.4284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.52597, 40.40266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.52932, 40.40172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.51643, 40.39443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5164, 40.39431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.54745, 40.45124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.52542, 40.42367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.54417, 40.42227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.51247, 40.40274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.51228, 40.4038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.27644, 40.39379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.50371, 40.39593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.60267, 40.39294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.58273, 40.35656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.57432, 40.33666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.51298, 40.29242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.49248, 40.25646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.49723, 40.26257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.47707, 40.24631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.43765, 40.18816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.40133, 40.22506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.11787, 39.65599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.09519, 39.61608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.04758, 39.57548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.03279, 39.54717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.97389, 33.98101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96916, 33.96405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94356, 33.9665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95736, 33.97252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9576, 33.97652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95403, 33.94651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.94315, 33.86965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.79779, 33.92608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.52, 33.77082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.40013, 33.69813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.42292, 33.68345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.40009, 33.64905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.40202, 33.64947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3453, 33.61557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30872, 33.61268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.31413, 33.6088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30646, 33.60741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.32047, 33.5979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30882, 33.58854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3641, 33.6821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4388, 33.66103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.54249, 33.6828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62788, 33.67522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69506, 33.64941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.60346, 33.62741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.63628, 33.62719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66431, 33.63123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6039, 33.62449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6563, 33.66008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59727, 33.67225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69012, 33.59956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7599, 33.58383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71256, 33.65887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71847, 33.65543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71845, 33.6555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.714, 33.66749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71468, 33.65992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73495, 33.66584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71807, 33.64427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.75643, 33.64655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71372, 33.62295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.71516, 33.65426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.72953, 33.63498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73283, 33.63424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68571, 33.65979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68322, 33.66225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.72591, 33.65953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62238, 33.68896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65643, 33.69299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68588, 33.67861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6682, 33.6891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66423, 33.67866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66464, 33.67377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68013, 33.71214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68752, 33.70656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69779, 33.68925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.70177, 33.68329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7457, 33.67465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.81542, 33.6574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73364, 33.65875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69106, 33.63962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69127, 33.63713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66796, 33.59487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.63904, 33.53329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.61628, 33.50518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73449, 33.64622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64278, 33.8125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64315, 33.84578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62431, 33.80322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62301, 33.8189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62515, 33.80047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65814, 33.86006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65689, 33.86539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64835, 33.89935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.61557, 33.88092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.54842, 33.80754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68871, 33.6976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.68932, 33.6956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.67217, 33.70319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6603, 33.67068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6579, 33.66903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.66054, 33.66093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.69321, 33.60395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.79892, 33.54027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.31653, 33.60902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.39594, 33.60565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.43994, 33.61058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.54351, 33.67363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.58712, 33.67888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.73745, 33.71576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.71707, 33.71553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.84806, 33.7838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.74033, 33.89829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.73192, 33.91012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14896, 34.05633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1503, 34.05756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14898, 34.0576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.13634, 34.05773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14745, 34.04905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14824, 34.06451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14648, 34.06366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14844, 34.06592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.12162, 34.08412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.11215, 34.09453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1484, 34.07904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.18683, 34.08241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25714, 34.08965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25889, 34.09937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.26524, 34.09999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.27621, 34.10327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25535, 34.06951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25798, 34.06845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.23046, 34.07907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2405, 34.07349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.23796, 34.07709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24883, 34.07213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25389, 34.08071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24547, 34.07531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25855, 34.07632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24547, 34.0777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.27539, 34.06934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25487, 34.07549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.20311, 34.05868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.20974, 34.04206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.21845, 34.06843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.23282, 34.06324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24558, 34.04592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25139, 34.03845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24786, 34.04073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24037, 34.06207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.23561, 34.05899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.27752, 34.0751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.27855, 34.10371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.29018, 34.10827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.28713, 34.1057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.28874, 34.10699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2905, 34.10017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.29247, 34.10313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.30716, 34.09089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.31777, 34.0946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.31173, 34.10108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.29978, 34.07704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.31989, 34.09794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.32539, 34.10363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.30388, 34.10303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24852, 34.0537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2527, 34.07762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22819, 34.06747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22888, 34.06745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.21211, 34.07669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.23009, 34.06464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.19743, 34.0741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.23492, 34.06635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.21439, 34.07284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2469, 34.06221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22907, 34.06655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.21394, 34.07999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.18676, 34.05361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1792, 34.04677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.14212, 34.03559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1057, 34.05251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.182, 34.08256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.21873, 34.06882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.20958, 34.05621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2128, 34.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.23141, 34.04593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.20306, 34.07785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.21857, 34.06218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.25711, 34.06974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24122, 34.06324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.20681, 34.06905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24417, 34.0576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.20469, 34.03528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1916, 34.01986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.16042, 34.03859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.15198, 34.0415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02813, 34.02301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01432, 34.02165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02037, 34.02563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00783, 34.02053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99605, 34.0067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96653, 34.01472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95837, 33.98837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.86545, 33.98106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.70865, 33.93578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59436, 33.93762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.49634, 33.90955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.51742, 33.87994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4593, 33.86364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.45786, 33.86067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.42149, 33.83715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34887, 33.78114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.44013, 33.73164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.44021, 33.71598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34819, 33.67912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.25332, 33.64316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.26281, 33.64652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27343, 33.65413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.21345, 33.63089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.20932, 33.6369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.24279, 33.60578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.23132, 33.60185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27253, 33.64181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.26755, 33.64704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.25734, 33.64287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2804, 33.64793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28045, 33.64791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28558, 33.6431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29277, 33.64469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30417, 33.65111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.32176, 33.65991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28655, 33.67475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29508, 33.66237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3125, 33.66243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29854, 33.6482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30808, 33.66031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3088, 33.6593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30774, 33.65617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.31024, 33.64824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27704, 33.64485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28002, 33.63755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29767, 33.64776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.33289, 33.71141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.33944, 33.71967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30549, 33.66371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3056, 33.66093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.29309, 33.63822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2969, 33.65478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27322, 33.65887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.25787, 33.64058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.23446, 33.62657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.22531, 33.61828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.22128, 33.61396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.22013, 33.58362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.14324, 33.53876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.92467, 33.48509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85512, 33.44717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85523, 33.44737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.90392, 33.48476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.89798, 33.50359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.89647, 33.50337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.86107, 33.4748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85995, 33.53166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85338, 33.53015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.78627, 33.51389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.81403, 33.52014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85206, 33.5246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.88724, 33.53914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94005, 33.55153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.95642, 33.54792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.95919, 33.56241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.93879, 33.56057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94875, 33.56305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.91579, 33.57248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.93978, 33.59073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.91635, 33.56161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.91439, 33.55705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.913, 33.55452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85513, 33.53659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85139, 33.53329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.84894, 33.51011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.82714, 33.48531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80375, 33.45252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.73541, 33.36415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.67974, 33.31529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.67264, 33.30336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.66951, 33.30427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65495, 33.29675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.57367, 33.23801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.58739, 33.25835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.52188, 33.20974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.52664, 33.19854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.44634, 33.13953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.40569, 33.09689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4572, 33.11295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.39206, 33.07571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4132, 33.07169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.40408, 33.05838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35505, 33.0558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37483, 33.0468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36026, 33.0519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35082, 33.03344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36187, 33.02038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37894, 33.0291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35137, 33.03268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36598, 33.03562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37846, 33.04191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37333, 33.04987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35186, 33.06317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38763, 33.06199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.39619, 33.06703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38217, 33.07956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.40421, 33.05899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.41189, 33.05692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38319, 33.00501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36685, 33.01094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35318, 32.97901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33327, 32.94609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36806, 32.88022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35269, 32.88295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34168, 32.86631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34555, 32.8568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33278, 32.87452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3563, 32.88855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34368, 32.88075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36074, 32.87824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37644, 32.88273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36487, 32.87045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3615, 32.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3253, 32.73103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36956, 32.66607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37162, 32.64968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33147, 32.61145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35912, 32.59514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3656, 32.57708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37375, 32.57972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38425, 32.55889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.39719, 32.52715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.41424, 32.50117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28375, 32.47116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27297, 32.41889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2699, 32.4421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.21048, 32.36952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.21101, 32.35623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31418, 32.53748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30748, 32.55825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.342, 32.60023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35244, 32.62181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36228, 32.64599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35503, 32.65544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33728, 32.66515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32432, 32.65058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3564, 32.74007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37203, 32.79659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38558, 32.87322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38344, 32.93812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37539, 32.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34111, 32.99131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33911, 33.00337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33801, 33.05857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35185, 33.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33397, 33.05792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35031, 33.13816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.63747, 33.3151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.66919, 33.35392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.71279, 33.38452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6719, 33.36957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.69398, 33.37234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.75168, 33.37535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.72357, 33.37451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.74004, 33.41584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.73638, 33.38011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.74409, 33.39479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.74429, 33.39667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.78421, 33.40131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79464, 33.38916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.81411, 33.39742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.84195, 33.42227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.93321, 33.46397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79955, 33.44609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80155, 33.45091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80911, 33.4514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79065, 33.39291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79124, 33.3948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80804, 33.39347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80922, 33.39002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80565, 33.39171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80528, 33.39253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.82031, 33.38967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.78703, 33.35837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80646, 33.33314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7975, 33.33236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.81018, 33.35222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8229, 33.33876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79949, 33.3053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80122, 33.30728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.83022, 33.34022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.82608, 33.34583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.83033, 33.33702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.83048, 33.33685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.83389, 33.33704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.83766, 33.3384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8883, 33.33373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8781, 33.31984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.89004, 33.31187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.839, 33.33825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85223, 33.34169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.90675, 33.33739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.91425, 33.34245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94048, 33.36727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.95989, 33.36328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.96562, 33.36823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.95073, 33.3864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.95947, 33.39239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.96476, 33.37257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.88658, 33.35189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8725, 33.30483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.93655, 33.29547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.93862, 33.29456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.93244, 33.31338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.93392, 33.31026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.93, 33.26838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94348, 33.29737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94591, 33.28977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.86562, 33.26448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.89643, 33.25458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.88511, 33.24362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8616, 33.22716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.89997, 33.24973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94176, 33.24771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.97758, 33.23856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.95352, 33.2824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94879, 33.3079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.95688, 33.2793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.95872, 33.29073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.80879, 33.30205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.78302, 33.29749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.71571, 33.29522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.75234, 33.26368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6214, 33.19531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.50187, 33.14379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.48594, 33.19287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.50844, 33.18352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.48349, 33.17611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.47664, 33.16549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.46862, 33.1412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.44287, 33.13406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.42622, 33.12103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.44464, 33.13391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.47009, 33.12579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45111, 33.12058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45028, 33.12115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.41395, 33.1062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.41653, 33.11903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.42485, 33.11309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.46533, 33.13613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.46272, 33.14369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.44884, 33.13093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.42859, 33.12657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.41856, 33.13385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4028, 33.06712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.40203, 33.04456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36054, 33.03437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34713, 33.02732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33176, 33.04097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33021, 33.03172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38395, 33.03644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34896, 33.0432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31037, 32.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33395, 32.99186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34102, 32.97301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37822, 32.95286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3141, 32.89468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32507, 32.86654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32485, 32.86686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34664, 32.84311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33647, 32.83487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33839, 32.8049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35047, 32.77831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35636, 32.77186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36773, 32.7431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3924, 32.69117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.41875, 32.64881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.44001, 32.65287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.44804, 32.61758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.47423, 32.60784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4439, 32.51267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.46445, 32.47883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.43569, 32.48928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.43574, 32.49645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.39641, 32.54764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3882, 32.56267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38879, 32.56846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38689, 32.5743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.42129, 32.57324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.40826, 32.57067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.40506, 32.55456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.40938, 32.55098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.41742, 32.53844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.48676, 32.41794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45738, 32.36301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45766, 32.34765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.44525, 32.30457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.42958, 32.29114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.43945, 32.26469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34961, 32.28617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31636, 32.29235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28483, 32.30352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26848, 32.28115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2617, 32.2703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.24773, 32.26966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.23659, 32.30988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2914, 32.38817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29613, 32.39936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29056, 32.36816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30457, 32.37903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30103, 32.35832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30116, 32.3615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29788, 32.37173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28717, 32.34974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27674, 32.36166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27693, 32.35204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27402, 32.38768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26789, 32.39163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26561, 32.38919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26387, 32.36974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26198, 32.36176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31423, 32.36305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32233, 32.35463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28172, 32.36877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30611, 32.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29374, 32.41361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30742, 32.41809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29215, 32.37774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29231, 32.36905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28764, 32.37255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28716, 32.36941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29139, 32.36656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29811, 32.3591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26751, 32.32151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26115, 32.32129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.25917, 32.31166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.25706, 32.30852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26393, 32.31697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31976, 32.34629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29959, 32.34155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30385, 32.34812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30505, 32.3464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32828, 32.36074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32501, 32.35768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32318, 32.35098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30988, 32.33321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30058, 32.31746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27559, 32.33927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31193, 32.32929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29979, 32.39575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28087, 32.39427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29329, 32.38568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29361, 32.38485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27323, 32.36469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27629, 32.36455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28391, 32.34105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2802, 32.29536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.21623, 32.26592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26427, 32.28325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.25259, 32.28363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.24885, 32.32926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29199, 32.33974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29017, 32.33823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28201, 32.35271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30831, 32.40846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33341, 32.41816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34233, 32.42723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29702, 32.45221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34403, 32.43985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36828, 32.48612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30657, 32.46046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30374, 32.46641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28921, 32.46127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36363, 32.45343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37403, 32.41723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3514, 32.4575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36869, 32.41752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28989, 32.40019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29961, 32.41506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27248, 32.39515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.29079, 32.36847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28292, 32.35492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28951, 32.36141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30783, 32.33585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26974, 32.30413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2619, 32.2899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.26008, 32.27957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.25243, 32.27032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.23895, 32.26863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.23369, 32.26445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.22281, 32.24109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.18821, 32.2367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.18458, 32.22442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.15485, 32.21525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.10906, 32.1406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.10567, 32.2091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.06439, 32.1548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.00879, 32.22837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.96044, 32.23691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.91572, 32.22908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.89931, 32.22409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0669, 32.06679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.97009, 32.05958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.00062, 32.0553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.01585, 32.0327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.98222, 32.04263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.03754, 32.01113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.03847, 32.01145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0026, 32.00199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0254, 31.98045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.94129, 31.97072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.94492, 31.93131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.93405, 31.9093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.90448, 31.92261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.91655, 31.91402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.91109, 31.90507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.90085, 31.92959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.91465, 31.91556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.92816, 31.94067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.91044, 31.95044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.90439, 31.95701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.82924, 31.90815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.79283, 31.89227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8255, 31.88507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.82883, 31.87221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.86132, 31.87461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.85462, 31.85888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.82972, 31.85794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.78521, 31.84462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.79599, 31.81522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.84153, 31.82761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.85834, 31.79768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.82002, 31.74876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.79591, 31.73367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.80147, 31.73124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.79438, 31.73041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.79296, 31.70904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.78646, 31.69536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.78644, 31.68895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.76562, 31.66579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.72773, 31.60865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.72643, 31.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.74811, 31.63068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.77412, 31.65342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.75549, 31.77766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.86354, 31.84246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.89016, 31.8762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.89712, 31.92383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.89433, 31.96109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.92351, 32.01698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.90295, 31.97718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.90489, 31.98154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9743, 31.99414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.93707, 31.92939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.98435, 31.95949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.97183, 31.98492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.97021, 31.99441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.00591, 32.0207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.00953, 32.02423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.02442, 32.06058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.03804, 32.08165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.05671, 32.09917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0718, 32.16496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.09679, 32.20024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.11451, 32.22576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.14568, 32.21254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.16978, 32.23761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.25851, 32.27242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27945, 32.28755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31765, 32.32447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34875, 32.34979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3218, 32.35407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32831, 32.36468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3168, 32.41557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32161, 32.44144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32887, 32.46574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33652, 32.49319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.43882, 32.67588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.47439, 32.71598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.50937, 32.78412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55214, 32.81203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.55176, 32.81072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.59571, 32.87094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.59687, 32.87251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.61061, 32.89193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.62933, 32.97057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65771, 33.01919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53654, 33.03639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.66086, 33.02641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.77877, 33.21126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85175, 33.3124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.86918, 33.35056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.88499, 33.38396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.92848, 33.42292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94177, 33.44681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.90992, 33.46117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.05469, 33.47552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.07433, 33.50584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.18969, 33.54564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28632, 33.61473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.41349, 33.6549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.50344, 33.72441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.53391, 33.74436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.55561, 33.76332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.54967, 33.78031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.61442, 33.84472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6615, 33.85843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.72453, 33.91175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7876, 33.95717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.84813, 33.99846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9186, 34.02361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.77962, 34.00129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.82631, 34.03594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95288, 34.06236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.09881, 34.04538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.12757, 34.05454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22404, 34.03934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22412, 34.06015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.29449, 34.04125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.37504, 34.05143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.45122, 34.04297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.52634, 34.04324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.48962, 34.04224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.04436, 33.90068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.83473, 33.77154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.93489, 33.7559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.11327, 33.73942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.49698, 34.04999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4577, 34.01838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2384, 33.91414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.25075, 33.86181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.47326, 33.97338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5909, 34.07898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60813, 34.09027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61962, 34.08357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63223, 34.08895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61616, 34.08202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61956, 34.08175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63433, 34.0854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60578, 34.10167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60637, 34.10424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60839, 34.11319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.58131, 34.09375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63721, 34.10754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59236, 34.08541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60268, 34.10686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59433, 34.09852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59248, 34.09704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.56256, 34.08751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57229, 34.08525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60253, 34.08433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63381, 34.09173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60236, 34.10152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62773, 34.09661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62099, 34.09787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60837, 34.10875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60034, 34.11511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.58539, 34.11465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57458, 34.13307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63069, 34.11864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6285, 34.11017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60382, 34.10025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61609, 34.12684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.58762, 34.09613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61669, 34.1084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61632, 34.10204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6189, 34.10912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62677, 34.11314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63102, 34.11102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63275, 34.11103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63533, 34.11325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64633, 34.12012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6203, 34.12043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62022, 34.12039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62775, 34.11311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60389, 34.13539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62943, 34.18688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61564, 34.17942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62771, 34.1675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62859, 34.16586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62759, 34.16119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60465, 34.18233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.56717, 34.20852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.54677, 34.27776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57632, 34.27434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63221, 34.50666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62918, 34.54989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6145, 34.56636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.89938, 34.80589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.92654, 34.88322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.92627, 34.89251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.27549, 35.17507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83562, 34.74781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81676, 34.33516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.94572, 34.32603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.94666, 34.2832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.00129, 34.26748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.96405, 34.08971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.89943, 34.04968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8223, 34.02931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7972, 34.00172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.74163, 33.96132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.74392, 33.95466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.79541, 33.88275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.78884, 33.87363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.52172, 33.72616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.50459, 33.69562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.49388, 33.68575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.49059, 33.68814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.45781, 33.64219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.46842, 33.65933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.22507, 33.64298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.17303, 33.6214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.12141, 33.59544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.10657, 33.60432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.90637, 33.54136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.03535, 33.61839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0661, 33.71035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9869, 33.76539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.94373, 33.83728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.01716, 33.63563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.12062, 33.66204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.12232, 33.69456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.12696, 33.70157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.13764, 33.69801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.99779, 33.72292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.06729, 33.55005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.11654, 33.43425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1092, 33.41689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.14634, 33.36169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.18434, 33.27204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.23721, 33.07836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2195, 33.23262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.19465, 33.24234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.22025, 33.24797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.22671, 33.22635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.22799, 33.23143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.29843, 33.19165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.34542, 33.1387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.34664, 33.15527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33268, 33.18355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.37102, 33.14289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36569, 33.16509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.40404, 33.13663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.47329, 33.09031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.49022, 33.13194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.52201, 33.18988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.54389, 33.17381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5891, 33.1386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.58727, 33.14056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61464, 33.16122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.71598, 33.13195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.72013, 33.12462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7513, 33.11064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.71915, 33.11485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.74859, 33.10161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7614, 33.09208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.78571, 33.08315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81131, 33.07059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81203, 33.06894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.80357, 33.04229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.80262, 33.03652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81602, 32.99466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.78875, 33.00983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.77535, 32.99157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81903, 32.97432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8185, 32.97632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.82511, 32.95458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83262, 32.92936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.91173, 32.89901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.90987, 32.94257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.92984, 32.92342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.98566, 32.95118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.02793, 32.95773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.17845, 32.98839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.20375, 32.99434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.19225, 33.00355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.20441, 33.01863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.27007, 33.03378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.34916, 33.07988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.31534, 33.07294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43477, 33.10429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4479, 33.09715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.45193, 33.08932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.38927, 33.04125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.35097, 32.97796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.39835, 32.96032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4094, 32.93633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.33335, 33.15058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.42608, 33.20654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4091, 33.27609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24491, 33.68521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.34133, 33.45203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.33132, 33.44689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43843, 33.35377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.49394, 33.38853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.52484, 33.4091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.58745, 33.44626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.55941, 33.46449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.55155, 33.46569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.51453, 33.44767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.57364, 33.46217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.53369, 33.46885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.56713, 33.51227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.46577, 33.51013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.46635, 33.52696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.50235, 33.60947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.49898, 33.66842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43371, 33.62379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.36111, 33.56422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2994, 33.53815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.42339, 33.53403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43053, 33.54396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43572, 33.51798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.44279, 33.5092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.44864, 33.49823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.46127, 33.48034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.45305, 33.46613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43922, 33.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.36254, 33.36247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.34021, 33.30711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.35515, 33.35779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.34072, 33.3079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.35065, 33.33396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.31061, 33.32762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.33956, 33.34064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3271, 33.32041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.32574, 33.32572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.30072, 33.30306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.27126, 33.27848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.26348, 33.26993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.29268, 33.23647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.26621, 33.22741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.25068, 33.20337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24642, 33.19901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.22315, 33.1876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.20392, 33.20387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.12037, 33.16458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.11634, 33.17611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.22004, 33.22433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1973, 33.22977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.20517, 33.23193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.19335, 33.23311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1648, 33.23333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.17686, 33.26293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.17072, 33.27037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.19311, 33.25419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.18132, 33.25112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.16419, 33.25251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.15904, 33.24227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1108, 33.22907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.14253, 33.2222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.15184, 33.22271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.14275, 33.21171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.14529, 33.12197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.13579, 33.0477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.00263, 33.06475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.95178, 33.02741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.95918, 33.03638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.93976, 33.02806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.01708, 33.02077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.93676, 32.97886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.95548, 32.97634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.97227, 32.91787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.97097, 32.91713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.84979, 32.85835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.93191, 32.8649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.928, 32.85913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.93199, 32.8699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.91112, 32.8518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85731, 32.81385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85747, 32.81097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.84467, 32.80308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83625, 32.80359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81434, 32.78502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.80636, 32.77889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.76596, 32.77334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.80612, 32.80465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.76759, 32.79244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7605, 32.85968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67203, 32.93197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67091, 32.93171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85849, 32.98073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.851, 33.04669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.86965, 33.03701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85598, 33.06933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85932, 33.07679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.86572, 33.09091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.86164, 33.0967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.894, 33.09448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.89756, 33.15649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.97227, 33.15653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.99123, 33.15207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.10582, 33.1871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.05424, 33.17497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.06933, 33.22017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.04182, 33.24159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0676, 33.2852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0106, 33.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.03418, 33.32869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.04053, 33.3711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.04619, 33.39536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.05807, 33.43283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.07314, 33.52948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.11554, 33.58742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.23688, 33.60492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.49304, 33.58747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.67956, 33.67335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.74867, 33.71317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.77314, 33.74744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.95521, 33.83506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.74144, 33.7582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.81438, 33.81963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.78567, 33.81201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.82838, 33.86322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.88068, 33.94296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.80846, 33.92931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.82519, 33.9265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.80412, 33.94451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.81071, 33.96338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.77108, 33.98305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.75933, 33.98747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76297, 33.97449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.72855, 33.97034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.71463, 33.97177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.63682, 33.94666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6369, 34.11992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63759, 34.12024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63774, 34.12078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62386, 34.0932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59788, 34.12855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.58959, 34.14193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5699, 34.15591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59258, 34.15642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63572, 34.14533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.69298, 34.15583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.69367, 34.24192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.71567, 34.27094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62635, 34.22881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62603, 34.26447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61228, 34.26046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61559, 34.26431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61867, 34.26897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6333, 34.28924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63566, 34.30649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62952, 34.28777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63606, 34.29889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63252, 34.32874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63501, 34.34074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63529, 34.34021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67306, 34.30468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6749, 34.30381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59853, 34.29452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.65614, 34.31653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6542, 34.33406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.70273, 34.29148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.72361, 34.29603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64889, 34.27165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66454, 34.27839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.73169, 34.28443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9008, 34.38191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.98398, 34.42261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.96155, 34.42049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.06937, 34.42464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.08999, 34.42794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.11326, 34.42648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.14999, 34.43924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.16835, 34.44916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.40833, 34.42369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.45556, 34.43919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3613, 34.41213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.37695, 34.40099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.31707, 34.34027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.31654, 34.33982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.25836, 34.29241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.29653, 34.25308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.37874, 34.25576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.37898, 34.22372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.37499, 34.20444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.37594, 34.18448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.36725, 34.06051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.35705, 34.05245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.36804, 34.04754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.36818, 34.04407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.42872, 34.01207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43177, 34.00921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43937, 33.99686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.45868, 33.94786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.46842, 33.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.48247, 33.92017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.30487, 33.93209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.29494, 33.85869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.29365, 33.85036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2577, 33.8552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.22159, 33.83569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.28896, 33.86018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24717, 33.83794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.18292, 33.8194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.11246, 33.87844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9617, 33.89063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.92624, 33.89067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.84861, 33.9178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83073, 33.91162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.70724, 33.92844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.685, 33.92887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.65085, 33.93548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.56804, 33.98408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.49865, 34.01219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.50417, 33.98443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.41355, 33.99772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.39146, 33.97427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.37226, 33.96697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.34459, 33.95912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36084, 33.96232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33339, 33.96121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.17052, 33.84529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.14943, 33.83314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.13946, 33.82686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.13099, 33.76296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.11686, 33.75825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.11467, 33.75954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.06403, 33.71155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.94883, 33.59237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.95655, 33.62314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.94808, 33.59471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88545, 33.59198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8874, 33.57826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.87549, 33.56428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.81102, 33.54973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.75321, 33.50518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.73989, 33.46868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.56327, 33.32775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4784, 33.28662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.43705, 33.25857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.38951, 33.21374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.38093, 33.21596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.31895, 33.15361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.31916, 33.17305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24854, 33.09906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.21602, 33.08875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.08754, 32.95513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.03752, 32.91042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96881, 32.87218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.91061, 32.84571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.85111, 32.81683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.85281, 32.81795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7948, 32.78888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74369, 32.78464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.72346, 32.77164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65987, 32.75625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.42777, 32.66374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.44868, 32.70751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.39593, 32.69602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.34947, 32.68729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.30272, 32.68953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.28116, 32.67284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.26913, 32.66857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.25291, 32.61103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.18823, 32.5878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.02863, 32.54421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.02703, 32.55343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.90377, 32.54186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.84106, 32.56944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.85509, 32.58078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.83186, 32.58013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.84412, 32.57878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.58805, 32.58146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.47822, 32.60493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.52849, 32.61108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.53053, 32.6143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.48882, 32.61361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.42184, 32.61252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.43244, 32.62763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34995, 32.65214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38433, 32.67107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.31982, 32.6825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35275, 32.69371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35952, 32.68005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.35386, 32.66527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33225, 32.65706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30467, 32.63155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27661, 32.61686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1818, 32.53199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.22782, 32.49746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.14418, 32.44086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.22472, 32.42665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.20577, 32.41532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.18613, 32.39869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.15152, 32.35506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.10733, 32.3041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.12263, 32.30343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.11996, 32.30875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.07112, 32.26673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.11919, 32.19626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.12376, 32.17384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9839, 32.17428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.98842, 32.16101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.98847, 32.16102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9606, 32.15019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.96716, 32.1422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.96309, 32.1319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.95016, 32.11674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.97681, 32.11382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.93538, 32.10541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9326, 32.10056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.87968, 32.07299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.88402, 32.07101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.86988, 32.07038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.86234, 32.02569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.86717, 32.01793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.87413, 32.00583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.90273, 32.00351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.88353, 31.98531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.88258, 31.98262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.85296, 31.95734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.83949, 31.95092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.82983, 31.94271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.81296, 31.92201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.80266, 31.91898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.80103, 31.91995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.83657, 31.94323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.81977, 31.93042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.87262, 32.00196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8749, 32.00059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.92772, 31.94913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.00576, 31.9601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.04724, 31.93419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.14332, 31.86926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.14267, 31.85521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.93489, 31.90927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.86667, 31.83217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.82199, 31.82308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.81811, 31.79679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.81802, 31.80625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.74809, 31.76907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.76591, 31.7367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.75689, 31.7139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.71146, 31.67412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.66299, 31.62734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.71652, 31.59666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.70197, 31.59264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.69752, 31.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.68821, 31.57925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.69523, 31.59424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.67684, 31.58456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.65309, 31.54784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.67293, 31.49237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.59579, 31.37232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.47889, 31.20536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.46165, 31.15026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.59288, 31.15664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.58076, 31.12459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.51658, 31.04847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.49975, 31.04583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.94968, 31.0779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.95145, 31.07701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.95188, 31.07317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.96204, 31.07529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.02471, 31.1261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.07433, 31.06762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.30827, 31.07659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.09904, 31.09627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.13319, 31.12011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.18883, 31.16745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.25971, 31.13923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34428, 31.19874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.60257, 31.07677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65874, 31.09287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.65892, 31.09456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6563, 31.09403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.83679, 31.08979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.92472, 31.09963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.00115, 31.10172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.05334, 31.09882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.19333, 31.09445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1058, 31.10017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.22853, 31.10264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.17148, 31.11262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.17393, 31.11643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.25656, 31.12668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.35751, 31.14191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4028, 31.13945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.67484, 31.15885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.53194, 31.16133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.64925, 31.24544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.59627, 31.31859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.61742, 31.33619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62503, 31.34121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6607, 31.35322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.72399, 31.38857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.00776, 31.51499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04561, 31.53329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.07861, 31.54486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.15962, 31.57699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22092, 31.57568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22653, 31.59131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1285, 31.55084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.26626, 31.61432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.29528, 31.64179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.38697, 31.69482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.33145, 31.66509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.42513, 31.76989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.45986, 31.79648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.44328, 31.77895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.48972, 31.79271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.62409, 31.80988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5677, 31.75949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.52338, 31.72296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.54415, 31.67481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.58454, 31.64155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.55332, 31.64929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.60608, 31.6789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.59835, 31.67717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.70553, 31.68802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8985, 31.63473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.94573, 31.5931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.91042, 31.59802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.95077, 31.58639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.91674, 31.61102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.90173, 31.64342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.92081, 31.64666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.92935, 31.64618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.97365, 31.64515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.89499, 31.68314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.87153, 31.69784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.86899, 31.70853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.00701, 31.81655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.28871, 32.0206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2659, 32.00784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.37329, 32.08422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.37189, 32.09088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.30149, 32.06757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.20717, 32.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.21579, 32.07238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33348, 32.2145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.35411, 32.21222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.28469, 32.14432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.39532, 32.19233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.46432, 32.28212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.48188, 32.31159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57104, 32.39677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64044, 32.47037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.73793, 32.58403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8144, 32.64614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.04769, 32.92232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.90557, 32.75821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.99653, 32.85882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.00514, 32.8813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.02944, 32.90888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.99761, 32.88764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.04462, 32.88946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.06755, 32.90409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.09899, 32.95642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.04836, 32.94096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.97863, 32.96209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9844, 32.96319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.86921, 33.03157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.92576, 33.03285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.00206, 33.03539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.00618, 33.08996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.03142, 33.10223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.02589, 33.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.01977, 33.1375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.962, 33.14856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.90376, 33.18377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.88267, 33.20322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.86878, 33.19721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.84072, 33.21256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83357, 33.21766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83142, 33.21666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.73534, 33.28046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.74122, 33.28737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.74232, 33.43297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.82276, 33.51518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.79891, 33.64122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81034, 33.61236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9497, 33.67746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.15045, 33.73836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2034, 33.73618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24107, 33.7463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.25111, 33.74993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.31612, 33.78839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.35205, 33.80384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.44448, 33.85678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.68224, 34.10865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.86789, 34.22508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.71451, 34.15259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.24919, 34.54048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76947, 34.43093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.91811, 34.40743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.82007, 34.45433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.39152, 34.36477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.37497, 34.35882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9625, 34.50406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.28771, 34.59956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.05604, 34.6855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.86767, 34.50426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.91249, 34.49298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.96785, 34.68368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.01466, 34.755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.05435, 34.89801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.23454, 34.90173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43876, 35.01136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.61183, 35.17166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.45054, 34.99805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.61013, 35.19345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.72755, 35.32789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.52663, 35.19876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.55577, 35.26337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.62939, 35.45527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.64882, 35.47836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3523, 35.54644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.33252, 35.61551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.30217, 35.70505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.31973, 35.69411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3348, 35.74134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.49342, 35.90665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.50493, 35.92989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.60703, 36.00875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.59132, 36.04989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.62227, 36.07142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.69667, 36.15837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.92117, 36.35646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.05646, 36.40672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.02531, 36.34442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1325, 36.38589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.12154, 36.3846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.47292, 36.52544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.27565, 36.44818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.73611, 36.53794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.82047, 36.6686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.85918, 36.72921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.94485, 36.76713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.97409, 36.8188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.91627, 36.87157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.89396, 36.88118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.49567, 34.1295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.48396, 34.11208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62435, 34.14515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62254, 34.10308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61613, 34.10141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6156, 34.09378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64701, 34.13224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.69023, 34.25761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.76172, 34.30618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.76127, 34.30579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.73952, 34.28694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.76227, 34.32882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.75469, 34.32742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.77156, 34.34414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.84411, 34.44301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8637, 34.48837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.78383, 34.48155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.76649, 34.45557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.78686, 34.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81991, 34.43244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.82, 34.43213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.82477, 34.41184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.82131, 34.40833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81497, 34.4178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.82254, 34.40835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.77286, 34.43446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.70791, 34.48895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.70814, 34.48747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67138, 34.51508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.68145, 34.50968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67737, 34.49376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.68785, 34.48881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67126, 34.49887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6938, 34.49593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.65027, 34.4986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64613, 34.49652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.69187, 34.48155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67042, 34.43967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.68256, 34.44586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.72138, 34.46797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.71933, 34.46882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.72401, 34.47108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.72343, 34.46557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.72376, 34.45585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64526, 34.44933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66922, 34.40413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67844, 34.3834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66278, 34.36377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66984, 34.37078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.70673, 34.37268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66508, 34.39418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63255, 34.39158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61071, 34.40938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60716, 34.42083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.55033, 34.42878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60238, 34.43448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.73885, 34.41685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.77398, 34.40886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.74607, 34.44559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.74946, 34.42631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.71302, 34.34091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83311, 34.37556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8809, 34.36354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0533, 34.3502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.10232, 34.32657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.04284, 34.2727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.04639, 34.26257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.05034, 34.23439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.07975, 34.24998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.07491, 34.24662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24487, 34.18773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.75379, 34.5177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.04347, 34.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.12446, 34.60414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.08841, 34.59094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.10819, 34.52981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.03406, 34.59171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.13383, 34.51194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.21032, 34.44392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32502, 34.3167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.30419, 34.16331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.36607, 34.13426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.37916, 34.11203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.35741, 34.13031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.31266, 34.07288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29899, 34.05243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29648, 34.03149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29951, 33.99096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.36865, 33.91511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.31878, 33.93789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32721, 33.92128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33213, 34.01194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.30928, 34.11167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32179, 34.11795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.43285, 34.13634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.35798, 34.14246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3815, 34.16158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.39628, 34.18082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.41652, 34.17971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.41177, 34.20268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.45227, 34.25592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.58417, 34.34844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.68397, 34.44095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.65815, 34.42218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.80336, 34.43538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.76468, 34.44479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.80563, 34.46875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.83144, 34.50006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.93343, 34.59953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.813, 34.56166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.86239, 34.73687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7955, 34.75361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.85438, 34.83028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.67234, 34.88597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.93055, 35.01444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.90948, 34.95937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.92811, 35.00171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.64682, 34.97691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.55742, 35.04014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.63986, 35.11359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.58752, 35.15239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.57406, 35.15926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.56982, 35.16719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.50264, 35.22258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.47233, 35.25621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.47317, 35.2668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.37789, 35.34265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34592, 35.36277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.37792, 35.36452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34469, 35.37648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33499, 35.38299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33884, 35.39695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32254, 35.46761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29384, 35.49339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.13511, 35.63642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.30602, 35.5951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.38793, 35.60434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.68743, 35.70778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.39389, 35.56207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2354, 35.52348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.18509, 35.52489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.14644, 35.52969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.09324, 35.51919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.85693, 35.51568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.86926, 35.53108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.82618, 35.55642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.77461, 35.62058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.78231, 35.6538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.66222, 35.6623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.51219, 35.68662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5815, 35.70473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.59117, 35.68917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.51312, 35.64988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.51163, 35.61951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.53001, 35.64414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.54983, 35.63903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.55484, 35.65239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.55722, 35.65374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.55801, 35.65108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.55975, 35.6526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.55556, 35.5533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.56634, 35.58456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5776, 35.57074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.60132, 35.52086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.59274, 35.58628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.69612, 35.50496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.69336, 35.50903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.70112, 35.65714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.68868, 35.67916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.87257, 35.53455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.11907, 35.62977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.10351, 35.73357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.18735, 35.80812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2791, 35.85919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.22435, 35.85952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.44958, 35.93731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.36884, 35.9303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.54867, 35.97916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46202, 36.06948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.57181, 36.20605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.59627, 36.23301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.63709, 36.2653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.65037, 36.25986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48613, 36.20213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.31539, 36.20892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.41746, 36.20328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.55917, 36.38507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.61707, 36.50185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.65225, 36.5525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.74894, 36.66314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.76078, 36.64394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.94905, 36.78467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.94582, 36.78094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.98297, 36.84586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.97833, 36.87991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.03673, 36.9381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.18742, 37.13677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.11269, 37.28663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.14049, 37.34786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.15606, 37.37911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.23767, 37.35679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.29629, 37.42703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.28857, 37.42839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.41148, 37.53119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.52699, 37.61055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.91258, 37.83275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.00983, 37.99592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.83336, 37.85422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.24088, 38.08127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.20601, 38.07396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.10175, 38.19965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.10693, 38.23375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.15009, 38.49394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.13536, 38.4831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.12357, 38.45834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.13787, 38.52483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.15741, 38.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.15565, 38.58206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.17026, 38.78521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.16466, 38.76929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.21181, 38.88558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.21818, 38.92886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.26317, 39.28002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.42105, 39.33423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.47617, 39.37653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.48013, 39.418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.50937, 39.46226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62125, 34.12993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62186, 34.13767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6426, 34.1279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62339, 34.14238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66527, 34.18387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67768, 34.2027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.84458, 34.1006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.93047, 34.16182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.94013, 34.16355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.09583, 34.20278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.17794, 34.27504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24048, 34.28877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1938, 34.33878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.24652, 34.37784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.26598, 34.41453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.33488, 34.52779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3497, 34.58113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.32228, 34.57686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.25426, 34.56668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.12138, 34.61928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.09337, 34.62956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.06776, 34.64831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.05558, 34.65197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.00674, 34.72364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.93278, 34.81254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.89057, 34.8444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8794, 34.81189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.88587, 34.81876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.87267, 34.81318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8518, 34.82271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85243, 34.82248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.86905, 34.81073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.87129, 34.79996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85879, 34.80496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85864, 34.80533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.89919, 34.90292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.92592, 34.91568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.20766, 34.88828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.25525, 34.9083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.25687, 34.91183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.25214, 34.90891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.26297, 34.92266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2791, 34.93428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.35993, 34.93709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.45937, 34.9767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.48624, 34.98726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.67459, 35.01356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.68464, 35.01343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.67724, 35.0156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.73841, 35.03907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.74458, 35.03797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.74774, 35.03227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.85725, 35.08006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9656, 35.11006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.89981, 35.09756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.91956, 35.10355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.00118, 35.10463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.10765, 35.12487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.17888, 35.1294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.19755, 35.12044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.20027, 35.12045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.24659, 35.13278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.28039, 35.14413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32016, 35.1685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.35372, 35.17882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34816, 35.17748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.42634, 35.15124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.47063, 35.16053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.49545, 35.18053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46566, 35.17122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4887, 35.16598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.52855, 35.17206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.51003, 35.22665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.51003, 35.22602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.54844, 35.23617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.57453, 35.24646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.51337, 35.30243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.51856, 35.31478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.53307, 35.36095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5926, 35.40411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60438, 35.42343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60029, 35.41975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.61234, 35.42866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.62979, 35.46074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.62577, 35.46463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6232, 35.43633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.64093, 35.45886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.68361, 35.49864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6965, 35.51149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.65903, 35.5416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.67971, 35.60919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.69258, 35.64051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.69162, 35.65442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.69807, 35.67697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.70683, 35.69407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.71825, 35.73479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7281, 35.76349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.72378, 35.83997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6953, 35.91397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.61178, 36.02012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5847, 36.03548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.58161, 36.04931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.58011, 36.08768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60581, 36.05233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.58224, 35.98118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5766, 35.96742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.52288, 35.86596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46821, 35.83375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.45455, 35.81626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.44717, 35.80459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.47554, 35.76905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.44852, 35.7719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46214, 35.74807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46179, 35.72678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46057, 35.72104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.47003, 35.70702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46688, 35.67569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46292, 35.64959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5148, 35.6142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.52671, 35.53404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.515, 35.48233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.51558, 35.40004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.49907, 35.38019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48166, 35.35748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.47109, 35.34241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.45393, 35.31555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.40488, 35.25669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.17696, 35.28593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.12773, 35.29502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.04539, 35.28064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.09816, 35.34754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.08834, 35.34935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0308, 35.34283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0628, 35.3523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9381, 35.38902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.82364, 35.41296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.88477, 35.43415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.81822, 35.46745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.80874, 35.47065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.82107, 35.48393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.78857, 35.50799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.77351, 35.53543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.77074, 35.52654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.77498, 35.53029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.82612, 35.52862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8369, 35.5153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.83344, 35.52297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.81671, 35.53064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.79654, 35.49983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.75567, 35.52404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.70712, 35.55647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.68058, 35.55913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.68339, 35.55813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6925, 35.55989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.68066, 35.5404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.67386, 35.52277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.68434, 35.52986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.66835, 35.50332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.65292, 35.50679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.69017, 35.50441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.87613, 35.59027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.96139, 35.62344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.95454, 35.6115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.85004, 35.61764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.84039, 35.61915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.79677, 35.63707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.78728, 35.64449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76529, 35.65734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76445, 35.66681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7569, 35.67643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.75299, 35.71355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76999, 35.73548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7633, 35.77931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.75037, 35.86994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.62309, 35.84429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.62199, 35.84431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.59561, 35.87362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.61854, 35.87962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.61547, 35.88268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.61673, 35.88037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.62047, 35.88643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.62374, 35.89885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.63984, 35.88652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.70325, 35.88359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.80546, 35.91289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.86342, 35.90262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.89644, 35.90556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.95391, 35.85394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9764, 35.84608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.88284, 35.85936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.87835, 35.84227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.89373, 35.84371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8681, 35.84289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.87154, 35.83445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.02375, 35.81913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.05141, 35.8364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.98718, 35.79724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.97375, 35.80225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.97279, 35.80597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.93741, 35.81257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.93577, 35.81682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.92044, 35.81492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.83532, 35.82507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.82847, 35.83378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.79056, 35.82882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.75264, 35.82783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.77685, 35.90367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.77901, 35.90921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.89649, 35.93426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.96005, 35.95537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9737, 35.94034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.01694, 35.94905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.05183, 35.9679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.08486, 36.0309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.12057, 36.04718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.10171, 36.06133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.09391, 36.05961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.06121, 36.10045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.03442, 36.08376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.04677, 36.0953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.07664, 36.16615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0342, 36.21289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.00915, 36.28841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.00839, 36.29161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.00154, 36.31524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.03857, 36.3347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.15432, 36.32853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.00249, 36.35353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.00948, 36.32609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.09145, 36.36478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.17834, 36.46369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.24557, 36.50063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29436, 36.55385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46859, 36.46407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48473, 36.41018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.44323, 36.3509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.51994, 36.38148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46758, 36.37132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.50884, 36.39062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.40998, 36.47245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3962, 36.51865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.39368, 36.51554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.43763, 36.58145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.45874, 36.64145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46481, 36.64389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4762, 36.6819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.49103, 36.69987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.53273, 36.71715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.54527, 36.73629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.55112, 36.73924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.61356, 36.7065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.68297, 36.69764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.76091, 36.61205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.82319, 36.60981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.85454, 36.60332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.86429, 36.602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.90083, 36.5778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.88441, 36.57504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.93449, 36.55807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.94161, 36.55182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0006, 36.51065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.01236, 36.50124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8624, 36.42289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.87564, 36.30086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.87565, 36.30046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.85683, 36.24604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8582, 36.25411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.85282, 36.2371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.83593, 36.20755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.82671, 36.19713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.81883, 36.18224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.79882, 36.12981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8327, 36.06461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.80515, 36.01978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.77662, 35.98575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7692, 35.95947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.73985, 35.93033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7229, 35.9178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.72325, 35.91794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.71143, 35.89306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.67217, 35.8942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.61499, 35.88078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.59443, 35.87258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.56439, 35.85585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.53704, 35.79196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.50986, 35.75998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.50763, 35.77117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.47408, 35.7436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46655, 35.71198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.41248, 35.65442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34953, 35.56203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32364, 35.54991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33877, 35.5908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.35612, 35.60346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.30076, 35.57997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29669, 35.57516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.27, 35.56057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32567, 35.57511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34054, 35.6268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.31239, 35.62116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.28046, 35.68401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.25756, 35.69629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.20614, 35.63911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.23558, 35.60475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2306, 35.61614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.26144, 35.57529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.21792, 35.51599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.26014, 35.48017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.20264, 35.48712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.20743, 35.42928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.19868, 35.4972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.20338, 35.49642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2453, 35.55868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29359, 35.58842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.30779, 35.60619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33125, 35.6499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32784, 35.65752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3529, 35.69027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.35502, 35.69493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.35163, 35.70926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32335, 35.74239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32593, 35.76372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32656, 35.7719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.31405, 35.74944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.30346, 35.77102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.30785, 35.77671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32671, 35.72657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32857, 35.72437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33062, 35.72511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34421, 35.73488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.36701, 35.73495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.37224, 35.73523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.39169, 35.75696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.37819, 35.72733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34418, 35.69748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34343, 35.69194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3276, 35.66443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33445, 35.66257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32318, 35.6497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.31802, 35.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.28069, 35.6428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.20394, 35.63532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.18165, 35.61764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.21046, 35.62234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.20449, 35.62146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.21035, 35.58299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.19798, 35.61738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1978, 35.56878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.17786, 35.59885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.13244, 35.58288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.10327, 35.5813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.97785, 35.58135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.09228, 35.57632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.87099, 35.59018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8374, 35.65666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.77988, 35.66342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76751, 35.64528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.99949, 35.49038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.09718, 35.4277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.17664, 35.46811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29635, 35.38683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.04462, 35.63322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.05661, 35.69039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0461, 35.73024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.06193, 35.72487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.04512, 35.73077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.06403, 35.73265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.05993, 35.71641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0512, 35.76829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.05417, 35.77879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.05927, 35.75363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.06751, 35.77564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.93723, 35.71185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.92658, 35.69908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.93649, 35.68514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9167, 35.68581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.88563, 35.68152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.87268, 35.68108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.87984, 35.69696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.84452, 35.71416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.96965, 35.6471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.98338, 35.64479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.00249, 35.64138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.02404, 35.73008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.08293, 35.80924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.08268, 35.80932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.08738, 35.7999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.04036, 35.81283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0604, 35.75724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.06245, 35.77138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.05408, 35.70588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.06162, 35.69749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0558, 35.68323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.04238, 35.67861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.96093, 35.61235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.00852, 35.65326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.13419, 35.70821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.12088, 35.81823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.16773, 35.74626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.13963, 35.7186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.13778, 35.71284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.15789, 35.68965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.15847, 35.68373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.14382, 35.65684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.14332, 35.64831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1581, 35.58171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.21216, 35.63956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.26811, 35.57033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34946, 35.55346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.42067, 35.56068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.52341, 35.53962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.49383, 35.63182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.62057, 35.6492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.36254, 35.61571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.36526, 35.61205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.39083, 35.61902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.42204, 35.61147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.43618, 35.59079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.44163, 35.59014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.44877, 35.60958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.45427, 35.61356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.45128, 35.61342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.44352, 35.65337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.44481, 35.68436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.44496, 35.72729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.43746, 35.7493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.43107, 35.77769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.45082, 35.79106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46037, 35.85944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.53526, 35.8814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.59575, 35.92579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.51776, 35.96679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5328, 36.04895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48659, 36.04178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.49686, 36.05327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48672, 36.05518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48233, 36.0863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48462, 36.10742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48948, 36.15297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5007, 36.2588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60111, 36.26013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60933, 36.25804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60948, 36.25783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.63206, 36.28542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.66476, 36.28192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.66509, 36.28153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.70656, 36.31395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.71925, 36.33183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.81235, 36.45771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.71893, 36.38963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.71195, 36.41216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.70018, 36.52013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.69576, 36.54516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.69855, 36.58321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.71046, 36.64145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.67525, 36.65532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6699, 36.63886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.63832, 36.74158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.62816, 36.78657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.63595, 36.76392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7113, 36.78712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.72787, 36.82907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.74103, 36.86595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.74612, 36.9171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.72363, 37.00904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.72697, 37.12243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.68442, 37.15993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.64757, 37.25341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.70762, 37.26694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.83, 37.31724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.87391, 37.3209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.94152, 37.3721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.95126, 37.36192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.00938, 37.38784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.07513, 37.41046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.13228, 37.46883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.18553, 37.50649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.19554, 37.52545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.21174, 37.57598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2492, 37.58545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.28043, 37.61726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.28837, 37.58812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.34989, 37.63604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.38069, 37.65138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.42961, 37.60204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.66783, 37.64957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.79145, 37.66127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.93723, 37.68628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.94753, 37.70062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.02496, 37.72124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.085, 37.73781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.17414, 37.75581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.16044, 37.74537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.22267, 37.75803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.13948, 37.74634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.16876, 37.78251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.22617, 37.84263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.25642, 37.87524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.37848, 37.94227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.33037, 37.87643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.31285, 37.86739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.31163, 37.86401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.40804, 37.82965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.47102, 37.82891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4798, 37.8338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.59688, 37.84989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.61999, 37.84099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.65549, 37.87425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.75983, 37.88786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.74859, 37.89589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.81677, 38.06814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.85864, 38.06249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6847, 37.98831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.72618, 38.01149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.70635, 37.99888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.65706, 37.86753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.70565, 37.87541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7209, 37.87755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.73161, 37.82256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.82403, 37.79428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.64879, 37.69867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.40581, 34.10922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61692, 34.14723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60933, 34.18416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64438, 34.18593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67818, 34.19697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64923, 34.1873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.74953, 34.19392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62255, 34.21567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61844, 34.2036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61583, 34.18225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60003, 34.19947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60111, 34.1809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60245, 34.1802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60696, 34.18213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62214, 34.20694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63323, 34.21524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.65649, 34.22157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.65326, 34.19201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.68634, 34.16054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.69176, 34.15771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67035, 34.17914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67044, 34.16332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.65874, 34.16198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61957, 34.12082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.62105, 34.11687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60802, 34.11189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59802, 34.11166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57662, 34.1321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6207, 34.21199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60889, 34.19456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61926, 34.16279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6196, 34.16404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5813, 34.04703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57128, 34.04357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.547, 33.98482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.47733, 33.97878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.45048, 33.94622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.45075, 33.92733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.42556, 33.91094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.41887, 33.90658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.37745, 33.87231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3706, 33.86915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36746, 33.87602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.38051, 33.88252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33906, 33.88284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.34996, 33.9073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.40804, 33.92993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.35716, 33.90017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.38105, 33.9172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.35299, 33.94438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33125, 33.91293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.40833, 33.91526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.40324, 33.92795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.40657, 33.92897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36173, 33.91907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36197, 33.91924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.37106, 33.92144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.35485, 33.92274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.35876, 33.92718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.37723, 33.90837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.30097, 33.8805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.29246, 33.87829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.27609, 33.86249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.28046, 33.85132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.24055, 33.83908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.21345, 33.83198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.22668, 33.83583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.21375, 33.7916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.20433, 33.79907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.16274, 33.75821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.17469, 33.75609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.19094, 33.69783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.18691, 33.66554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.18319, 33.6341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.14314, 33.58835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.13182, 33.55147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.13257, 33.55283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.17349, 33.5103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.18002, 33.53578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1718, 33.48284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.16701, 33.46939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.17081, 33.47979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0724, 33.4593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.11707, 33.44373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.05301, 33.44561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0192, 33.40998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.92512, 33.41306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.91185, 33.40079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.89513, 33.38989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8836, 33.41009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.85963, 33.40158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.86867, 33.36075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8442, 33.34122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8706, 33.35762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88337, 33.37446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88211, 33.38293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.85566, 33.38733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.87041, 33.39186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.84273, 33.39413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.85138, 33.40022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.78648, 33.39676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.85747, 33.36037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8828, 33.35239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88433, 33.35079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.87376, 33.36129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88456, 33.36622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.89453, 33.36125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.89384, 33.34603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88271, 33.34745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.89371, 33.32556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.87837, 33.33635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.84278, 33.33983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.86359, 33.35493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.86189, 33.3463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.85421, 33.39901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.85491, 33.38542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.86422, 33.38955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.86282, 33.40396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8658, 33.37938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.84986, 33.38867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8481, 33.38766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.87306, 33.37998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.82088, 33.35589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.83914, 33.3625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.83846, 33.33859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.83452, 33.33081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.82353, 33.29225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.80055, 33.28649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.78934, 33.27423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.78079, 33.25289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.76048, 33.21445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8927, 33.2241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.89399, 33.23074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.89639, 33.23028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88979, 33.23217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88121, 33.22579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.90048, 33.23082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.88236, 33.26535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8823, 33.27235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.93302, 33.25655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.89659, 33.23467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.93991, 33.24156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.94567, 33.24642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.00359, 33.2782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.01027, 33.28244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.01533, 33.28529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.02, 33.30482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.02082, 33.30458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.06501, 33.33973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.07917, 33.35356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1196, 33.38974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.14521, 33.41299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.17816, 33.41164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.26696, 33.4415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33141, 33.48003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36144, 33.49751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36615, 33.49265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.33771, 33.51189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3537, 33.5119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.35481, 33.50497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3922, 33.54684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36039, 33.50777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.37184, 33.52669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.43655, 33.53206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.54331, 33.6336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.64769, 33.68644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.55706, 33.6488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.60287, 33.70314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67364, 33.72935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.65915, 33.74743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66831, 33.76177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6604, 33.73705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63835, 33.76413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.61716, 33.78641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59286, 33.77092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57667, 33.75913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57152, 33.75998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.56787, 33.76246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.51433, 33.79052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.50861, 33.79685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.51213, 33.79571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.40778, 33.80076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36254, 33.80994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36859, 33.80906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.46877, 33.88144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.41691, 33.85106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.53174, 33.86522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5085, 33.86492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.54911, 33.84767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.51869, 33.84888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57369, 33.8712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.75973, 33.89482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.86263, 33.92481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.91428, 33.94592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.00218, 33.97735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.96201, 33.96553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0766, 34.02349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.06332, 34.02538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.14252, 34.03628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.13998, 34.0353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0739, 34.02084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.14533, 34.04268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.30608, 34.08319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.54017, 34.21591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.56257, 34.27558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.37188, 34.39602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.32164, 34.39699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.34747, 34.46754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3027, 34.53511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.30663, 34.62972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.19047, 34.61518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.08414, 34.58947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.04959, 34.6042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.95531, 34.66873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.95067, 34.68762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.92106, 34.71698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.95487, 34.73915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.93531, 34.74924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.90431, 34.77645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83035, 34.83063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81889, 34.9138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.82548, 34.92473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85364, 34.96922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.97814, 35.0407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.05228, 34.99363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.12141, 35.11495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.16153, 35.10213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.14089, 35.09095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.21847, 35.10092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.28453, 35.17841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.31734, 35.21555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.39313, 35.29583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.37714, 35.28268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4044, 35.31287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.40115, 35.32109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.40717, 35.33335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.42733, 35.35585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.45334, 35.40728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.484, 35.42361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.48299, 35.44366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.52787, 35.48539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.50339, 35.47669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.48681, 35.4904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.52572, 35.52969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.48292, 35.48329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.50828, 35.50047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.55149, 35.53006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.57822, 35.55481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.64585, 35.61903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.69544, 35.66054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.72463, 35.6869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.74597, 35.70916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.75335, 35.73472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76235, 35.7454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.75903, 35.74922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.74516, 35.74507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76197, 35.76954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.75135, 35.79303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76775, 35.7956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.77889, 35.81617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.82275, 35.86856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.97512, 36.02555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.96922, 36.01854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.98652, 36.04257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.99827, 36.05826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.00049, 36.05753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.95069, 35.99322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.02158, 35.99911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.07441, 36.02661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.13319, 35.96604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.15573, 35.97319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.17153, 35.99288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.24572, 36.00954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.23102, 35.99811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.26419, 36.00556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29133, 36.0077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29228, 35.99937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29165, 36.00434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33119, 35.97629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.32796, 35.97645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33459, 35.97817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33501, 35.98073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33954, 35.98994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34921, 35.99571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.33406, 36.00035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.45832, 36.10837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.47572, 36.12319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4854, 36.13069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48296, 36.10691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.50471, 36.1166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48502, 36.14089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5224, 36.1373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.56615, 36.14477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.57208, 36.1888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.62195, 36.16897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.65256, 36.1894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60203, 36.32484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.65898, 36.38884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.68771, 36.41931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7108, 36.43979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.69074, 36.42864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.71656, 36.44724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.73741, 36.47502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.75993, 36.50374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.75226, 36.49838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.79019, 36.55889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.80945, 36.59096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6681, 36.56761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.57825, 36.6852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.60638, 36.68316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6609, 36.71039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.67193, 36.72909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.68988, 36.75047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.69898, 36.79642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.70846, 36.80855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.71306, 36.83746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.72206, 36.83212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.78393, 36.87321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.86391, 36.93652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.87774, 36.93717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.88057, 36.94164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.93638, 36.94366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.96428, 36.95544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.03243, 36.99315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.02827, 36.98968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.05551, 37.00308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.03714, 36.99937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.10478, 37.03976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2043, 37.08804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.20358, 37.09988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.19398, 37.09401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.19912, 37.01211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.29508, 36.9805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.41772, 36.93516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.45828, 36.91912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.51385, 36.88977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.57239, 36.8703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.64077, 36.87297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.64773, 36.85608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6868, 36.91376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.66772, 36.90852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.71835, 36.91986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.74935, 36.92384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.68041, 36.93218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.70183, 36.9327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.79881, 36.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.04891, 37.00445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.00121, 36.99962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.12422, 37.02678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.97449, 37.08807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.95005, 37.08194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.00902, 37.12741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.02342, 37.14134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.06253, 37.17845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0606, 33.9908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0492, 34.0167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.033, 33.9996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0331, 33.9994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0343, 33.9991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0312, 34.0005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0356, 33.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0046, 33.9828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9961, 33.9977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9828, 33.9982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9789, 33.9998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9837, 34.0108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9853, 34.0122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9791, 34.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9761, 34.0205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9706, 34.0204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9685, 34.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9586, 34.0183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9329, 34.0095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9261, 34.0067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9019, 33.9971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.898, 33.9962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.897, 33.9846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9118, 33.9656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9194, 33.9652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9299, 33.9671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9308, 33.9775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.951, 33.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9667, 33.9867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9791, 33.9918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0117, 34.0084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9696, 33.9938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.961, 33.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9439, 33.9939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8914, 33.9967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8814, 33.9951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8557, 33.9896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8343, 33.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5675, 33.8674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5799, 33.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4767, 33.8323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.476, 33.7548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5519, 33.8379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5577, 33.8406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6386, 33.9398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7015, 33.9886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7129, 33.9815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7606, 33.9602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.765, 33.9708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0344, 34.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0793, 34.0062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1915, 34.0488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9343, 34.0013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7906, 33.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7769, 33.9821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7781, 33.9869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.755, 33.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7519, 33.9822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7443, 33.9841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7372, 33.9792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7538, 33.9783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7518, 33.9495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7374, 33.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7188, 33.9715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.707, 33.9838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.659, 33.9801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6441, 33.9783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.582, 33.9402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5714, 33.9247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4321, 33.7147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3146, 33.6619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3152, 33.6559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2979, 33.6424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2832, 33.6314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2792, 33.6277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2686, 33.6248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2641, 33.6254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2399, 33.6153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2193, 33.6113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1757, 33.5936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1651, 33.5761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1479, 33.5685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1358, 33.5657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1088, 33.5583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0925, 33.5663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9908, 33.5663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9858, 33.5668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9303, 33.5792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9268, 33.5815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9036, 33.5688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8873, 33.5587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8116, 33.5308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.788, 33.5092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7892, 33.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7891, 33.4865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7514, 33.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7386, 33.4445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7285, 33.4366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.694, 33.3987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6906, 33.3946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6637, 33.3569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6488, 33.3158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6399, 33.2633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6328, 33.2438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5817, 33.1087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.577, 33.1013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4398, 33.0152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4355, 33.0154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.325, 33.0158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3419, 33.0379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3456, 33.0398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3614, 33.0769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2805, 32.9179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2949, 32.8554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3136, 32.8238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3157, 32.7977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2559, 32.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2488, 32.5884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2522, 32.5752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2542, 32.5692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2857, 32.4242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2528, 32.3321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2483, 32.3244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2442, 32.3192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2378, 32.3101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1556, 32.1293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0671, 31.5159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0345, 31.4646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0136, 31.4429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0093, 31.4376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0018, 31.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9825, 31.4125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9721, 31.3993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9632, 31.3906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9547, 31.3867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8533, 31.3151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7558, 31.2913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.538, 31.2624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.509, 31.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7289, 31.3779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1843, 31.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0289, 31.6895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0062, 31.8237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7559, 31.7304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7435, 31.7239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7411, 31.7158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7057, 31.6734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.735, 31.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7489, 31.7402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.763, 31.7504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7251, 31.8067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7484, 31.8352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7814, 31.8657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8341, 31.8865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8511, 31.868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.761, 31.7564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8014, 31.8604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2227, 32.2006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2961, 32.4249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3384, 32.6021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5041, 32.7013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7101, 32.7447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8577, 32.9022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8665, 32.9039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2231, 33.4109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2406, 33.4421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2804, 33.5257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2952, 33.6384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3004, 33.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2964, 33.6368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2945, 33.6432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6332, 33.8046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1302, 34.0651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1342, 34.0628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1499, 34.0638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3246, 34.1139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4428, 34.1488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4596, 34.2266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6041, 34.0568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4407, 33.9119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3853, 33.9149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3794, 33.914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2325, 33.7644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1628, 33.5863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1527, 33.4749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0936, 33.3615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.055, 33.2785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0028, 33.2353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6439, 33.1642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0127, 33.9789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0203, 33.9778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0274, 33.9808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0264, 33.9816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0205, 33.9816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02, 33.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0222, 33.9934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.021, 33.9982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0229, 34.0043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0298, 34.0067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0332, 34.0084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0341, 34.0093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0362, 34.0057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0254, 34.0015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0195, 34.0064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0148, 34.0051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0107, 34.0012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0028, 33.9931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9974, 33.9932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9886, 33.9943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9884, 33.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9925, 33.9984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9982, 33.9977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0037, 33.9947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0048, 33.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0051, 33.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0022, 33.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.007, 33.9843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.016, 33.9845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0189, 33.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0236, 33.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0235, 33.9874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0233, 33.9886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.025, 33.9862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0215, 33.9825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0173, 33.9812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0142, 33.9799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0085, 33.9759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0013, 33.9783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9988, 33.9827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0035, 33.9833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0049, 33.9844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0102, 33.9844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0108, 33.9861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.012, 33.9863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0137, 33.9881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0184, 33.9885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0161, 33.9853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0096, 33.9851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.002, 33.9854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0078, 33.9873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0148, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0203, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0193, 33.9813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0185, 33.9769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0172, 33.9688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0161, 33.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0148, 33.9589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0121, 33.9583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0076, 33.9572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0043, 33.9564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9949, 33.9549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9905, 33.9538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9818, 33.9506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9777, 33.9487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9741, 33.9459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9708, 33.9452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9677, 33.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9637, 33.9427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9611, 33.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9568, 33.9403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9524, 33.9393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9481, 33.9384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9506, 33.9397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9578, 33.9355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9607, 33.9338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9647, 33.9328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9694, 33.9334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9724, 33.9334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9758, 33.9332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9787, 33.9339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9836, 33.9337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9912, 33.9353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9967, 33.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0002, 33.9363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0054, 33.9368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0088, 33.9364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0133, 33.9356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0178, 33.9362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0285, 33.9392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0317, 33.9408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0365, 33.9402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0415, 33.9409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0447, 33.9475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0427, 33.9512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0398, 33.9539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0374, 33.9579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0352, 33.9628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0321, 33.9718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0313, 33.9779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.027, 33.9881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0282, 33.9913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0293, 33.9893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0211, 33.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0188, 33.9884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0089, 33.9905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0064, 33.9877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0038, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0018, 33.9857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9947, 33.9879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9885, 33.9903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9807, 33.9922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.979, 33.9883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9773, 33.9871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9761, 33.9889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.979, 33.9885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9817, 33.9863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9879, 33.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9928, 33.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9973, 33.9865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0027, 33.9863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0094, 33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0161, 33.9887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0239, 33.9907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.027, 33.9963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0257, 33.9993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0339, 34.0004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.04, 33.9965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0417, 33.9904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0443, 33.9867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0419, 33.9857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0368, 33.9912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0319, 33.9967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0325, 34.0047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0358, 34.0066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0324, 34.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0268, 34.0093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0227, 34.0041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0129, 33.9968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0146, 33.9929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0109, 33.9885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0071, 33.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0035, 33.9857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9989, 33.9811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9918, 33.9822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9858, 33.9839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9787, 33.9809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9695, 33.9798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9627, 33.9762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9519, 33.9714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.944, 33.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9343, 33.9745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9314, 33.9806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9359, 33.9827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9484, 33.9826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9558, 33.9816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9626, 33.9796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9714, 33.9809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9786, 33.9836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9858, 33.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9927, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0014, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0109, 33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0162, 33.9888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0238, 33.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0288, 33.9884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0361, 33.9903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0407, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0487, 33.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0538, 34.0014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0636, 34.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0579, 34.0134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0488, 34.0118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0328, 34.0011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0278, 33.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0206, 33.9849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.01, 33.9825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0026, 33.9835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9944, 33.9832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9866, 33.9797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9796, 33.9783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9742, 33.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9701, 33.9711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9709, 33.9795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9689, 33.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9583, 33.9866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9468, 33.9819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9396, 33.9779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.933, 33.9724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9179, 33.9679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9095, 33.9673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9008, 33.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8937, 33.9715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9007, 33.9753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9089, 33.9822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.921, 33.9885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9301, 33.9894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.934, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9328, 33.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9286, 33.9793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9231, 33.9801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.921, 33.9819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.922, 33.9835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9246, 33.9831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9283, 33.9828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9311, 33.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9348, 33.9817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9383, 33.9785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9404, 33.9715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9405, 33.9669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.942, 33.9624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9436, 33.9593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9504, 33.9517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.954, 33.9488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9591, 33.947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.968, 33.9453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9719, 33.9475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9793, 33.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9855, 33.9617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9886, 33.9664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9948, 33.9831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9943, 33.9887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9925, 33.9836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9983, 33.9852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0028, 33.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0115, 33.9893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0167, 33.9841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0205, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0259, 33.9909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0298, 33.9917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0305, 33.9866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0233, 33.9895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0194, 33.9891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0165, 33.9923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0102, 33.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0044, 33.9882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9976, 33.9837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0012, 33.9818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9995, 33.9796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0031, 33.9834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0049, 33.9816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0062, 33.9808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0054, 33.9801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0029, 33.9781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9952, 33.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9852, 33.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9837, 33.9757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9768, 33.9774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9728, 33.9768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9654, 33.9681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9587, 33.9683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9615, 33.9779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9706, 33.9869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9808, 33.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.992, 33.9916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9995, 33.9948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0081, 34.0026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0098, 34.0099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0089, 34.0148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0069, 34.0125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0055, 34.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0072, 34.0081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0026, 34.0097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.005, 34.0156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0108, 34.0182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0215, 34.0141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0193, 34.0034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0123, 34.0008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0092, 33.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0268, 33.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0358, 33.9932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0434, 33.9987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0409, 34.0081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0334, 34.0165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0271, 34.0213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0198, 34.0256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0097, 34.0166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0054, 34.0111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0093, 34.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0073, 34.0086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0029, 34.0086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0031, 34.0146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9945, 34.0135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0037, 34.0098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0119, 33.9992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0133, 33.9921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0103, 33.9857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0075, 33.9767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9934, 33.9791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9796, 33.9771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9677, 33.9818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9656, 33.9877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9649, 33.9959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9644, 34.0044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9659, 34.0136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9782, 34.0157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9895, 34.0188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.002, 34.0198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0144, 34.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0254, 34.0256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.032, 34.0273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0388, 34.0286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0445, 34.0375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0359, 34.0336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0337, 34.0262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0374, 34.0184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0449, 34.0109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0609, 34.0068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0704, 34.0045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0785, 34.0014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0897, 34.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0976, 34.0057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1063, 34.0143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0949, 34.0199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0875, 34.0221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0788, 34.0233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0619, 34.0242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0522, 34.0246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.042, 34.0233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0306, 34.0224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0122, 34.0226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0033, 34.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9954, 34.0163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9844, 34.0131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9769, 34.0114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9662, 34.0101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9509, 34.0073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9387, 34.0041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.929, 34.0015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9074, 33.9967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8975, 33.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8864, 33.9928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8809, 33.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8696, 33.9882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8546, 33.9815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8382, 33.9783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8208, 33.9743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8051, 33.9733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7931, 33.9767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7805, 33.9776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7712, 33.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7712, 33.9708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7711, 33.9704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.771, 33.9728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7714, 33.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7608, 33.9705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7461, 33.9627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7419, 33.9596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7336, 33.9556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7254, 33.9515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7173, 33.9458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7132, 33.9426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7081, 33.9377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7025, 33.9328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6969, 33.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6908, 33.9227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6893, 33.9199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6888, 33.9219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6902, 33.9199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.695, 33.9218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6981, 33.9184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6994, 33.9135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6991, 33.9141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6985, 33.9159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6977, 33.9181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6961, 33.9107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6959, 33.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6941, 33.9091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6967, 33.9076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6965, 33.9051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6955, 33.9025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6881, 33.9016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6923, 33.9051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6915, 33.9085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6922, 33.9066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6932, 33.9032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6942, 33.9024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.696, 33.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6927, 33.8984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.689, 33.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6858, 33.9073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6857, 33.9075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6842, 33.9091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6858, 33.9093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6861, 33.9102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6908, 33.9087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6994, 33.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6976, 33.9118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6933, 33.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6901, 33.9212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6889, 33.9267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6868, 33.9308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6853, 33.9355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6859, 33.9399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6943, 33.9418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6994, 33.9396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7018, 33.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7061, 33.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7117, 33.9401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7167, 33.9411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7222, 33.9438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7202, 33.9474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7148, 33.9456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7113, 33.9447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7051, 33.9465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7105, 33.9464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7061, 33.9399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7036, 33.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7052, 33.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7084, 33.9261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7035, 33.9213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.704, 33.9147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7053, 33.9102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7092, 33.9071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7141, 33.9015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7158, 33.8935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7035, 33.8907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6978, 33.8927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6904, 33.8965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6865, 33.9015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6799, 33.9073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6732, 33.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6674, 33.9091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6714, 33.9148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6743, 33.9192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6773, 33.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6741, 33.9288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6795, 33.9318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6862, 33.9337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6955, 33.9349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7032, 33.939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7108, 33.9431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7211, 33.9443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.729, 33.9479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7312, 33.9611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7338, 33.9645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7404, 33.9601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7355, 33.9511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7218, 33.9443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7204, 33.9408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.717, 33.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7141, 33.9314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7145, 33.9268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7132, 33.9215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.706, 33.9203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7066, 33.9118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7125, 33.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7163, 33.9031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7111, 33.8973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7016, 33.8973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6917, 33.8961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6865, 33.8988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6821, 33.8957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6833, 33.8891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6793, 33.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6746, 33.8811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6771, 33.8791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6865, 33.8783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6936, 33.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6971, 33.8703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7048, 33.8657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7168, 33.8661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7194, 33.8699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.728, 33.8701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7333, 33.8738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7436, 33.8753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7332, 33.8841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.729, 33.8875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7276, 33.8903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7281, 33.8954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.724, 33.8996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7194, 33.8944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7161, 33.8901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7135, 33.8846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7071, 33.8811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6993, 33.8797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6925, 33.8783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6862, 33.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6803, 33.8808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6804, 33.8875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.683, 33.8927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6878, 33.8998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6926, 33.9014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6972, 33.9011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7043, 33.9008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7108, 33.9003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7259, 33.8962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7317, 33.8933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7361, 33.8911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7416, 33.8899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7466, 33.8882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7515, 33.8856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7583, 33.8834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7625, 33.8781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7597, 33.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.755, 33.8685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7506, 33.8623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.745, 33.8569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7396, 33.854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7308, 33.8511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7261, 33.8545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7205, 33.8602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7187, 33.8635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7154, 33.8669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7135, 33.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.717, 33.8789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7194, 33.8854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7219, 33.8872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7225, 33.8939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7269, 33.8951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7275, 33.8922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7277, 33.8908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7305, 33.8915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7305, 33.8988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7314, 33.9078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7328, 33.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7351, 33.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7364, 33.9097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.738, 33.9102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7356, 33.9122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7321, 33.9157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7391, 33.9145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7421, 33.9122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7451, 33.9125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7429, 33.9083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7418, 33.9143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7449, 33.9188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7506, 33.9223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7572, 33.9257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.761, 33.9303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7683, 33.9341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7763, 33.9363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.783, 33.9386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7924, 33.9413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7984, 33.9456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8022, 33.9504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8088, 33.9518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8213, 33.9499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8341, 33.9532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8456, 33.9585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8502, 33.9611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8506, 33.9599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.853, 33.9587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8428, 33.9607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8453, 33.9561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8508, 33.9551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8538, 33.9541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8622, 33.9549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8662, 33.9502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8575, 33.9509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.847, 33.9581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8408, 33.9547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8323, 33.9553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8229, 33.9622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8136, 33.9658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8088, 33.9662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8021, 33.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7936, 33.9675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7888, 33.9632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7836, 33.9614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7795, 33.9575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7762, 33.9554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7733, 33.9508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7681, 33.9546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7648, 33.9516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7616, 33.9496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7605, 33.9464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7699, 33.9472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7718, 33.9466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7688, 33.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7675, 33.9556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7639, 33.9567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7677, 33.9528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7735, 33.9482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7722, 33.9447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7763, 33.9491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7803, 33.9502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.784, 33.9538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7872, 33.9593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7936, 33.9646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7981, 33.9685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8076, 33.9674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8131, 33.9657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8166, 33.9685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8127, 33.9733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8093, 33.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.805, 33.9689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8041, 33.9739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8111, 33.9766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8176, 33.9796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8174, 33.9797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8226, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8262, 33.9822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.833, 33.9849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8357, 33.9843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8294, 33.9818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8276, 33.9801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.83, 33.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8295, 33.9731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8281, 33.9715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8268, 33.9706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.825, 33.9664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8227, 33.9651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8164, 33.9614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8163, 33.9605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8132, 33.9617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8168, 33.9617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8214, 33.9629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8288, 33.9636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.83, 33.9691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8375, 33.9718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8443, 33.9721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8523, 33.9707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8569, 33.9713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8607, 33.9719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8651, 33.9721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8684, 33.9724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8723, 33.9721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8749, 33.9716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8796, 33.9672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8838, 33.9619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8836, 33.9588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8826, 33.9556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8901, 33.9458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8933, 33.9385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8933, 33.9344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8894, 33.9242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8858, 33.9234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8835, 33.9252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8863, 33.9286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8883, 33.9315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8912, 33.9339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8942, 33.9367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8944, 33.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8954, 33.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8966, 33.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9003, 33.9484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9043, 33.9505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.915, 33.9569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9209, 33.9628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9157, 33.9688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.912, 33.9716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9117, 33.9764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9113, 33.9809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9131, 33.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9202, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9249, 33.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9221, 33.9811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.919, 33.9805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9155, 33.9807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9137, 33.9819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9174, 33.9857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9285, 33.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9332, 33.9804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.932, 33.9757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9305, 33.9732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9366, 33.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9454, 33.9768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.952, 33.9776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9563, 33.9766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9567, 33.9743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9558, 33.9721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9518, 33.9711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.954, 33.9682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9557, 33.9626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9564, 33.9618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9612, 33.9597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9638, 33.9537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9662, 33.9505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9673, 33.9547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9704, 33.9558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9748, 33.9607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9796, 33.9655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9727, 33.9702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9713, 33.9735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9772, 33.9801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9846, 33.9827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9881, 33.9814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9889, 33.9765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.982, 33.9711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9763, 33.9701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9769, 33.9725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9795, 33.9709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9812, 33.9691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98, 33.9676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9797, 33.9701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9734, 33.9671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9712, 33.9635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9773, 33.9619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9883, 33.9658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9961, 33.9678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0008, 33.9702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0038, 33.9664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.007, 33.9654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.009, 33.9715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0091, 33.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0123, 33.9865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.005, 33.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0014, 33.9957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0045, 34.0103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0082, 34.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0149, 34.0177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0071, 34.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0021, 34.0077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0035, 34.0008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.997, 33.9953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9905, 33.9871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9836, 33.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9828, 33.9704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9877, 33.9666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9957, 33.9661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0035, 33.9654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0108, 33.9641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0179, 33.9639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0241, 33.9668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0264, 33.9706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0318, 33.9697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0346, 33.9713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0331, 33.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0396, 33.9716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0312, 33.9703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0303, 33.9707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0355, 33.9725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0307, 33.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0261, 33.9767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0233, 33.9849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0177, 33.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0075, 33.9908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0046, 33.9964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.995, 33.9964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9863, 33.9935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9791, 33.9936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9729, 33.9889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9709, 33.9831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9716, 33.9819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9779, 33.9799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9768, 33.9719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9772, 33.9689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9652, 33.9769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9557, 33.9789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9474, 33.9808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9399, 33.9833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9331, 33.9838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9237, 33.9845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9167, 33.9848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9065, 33.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8984, 33.9834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8912, 33.9828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8845, 33.9822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8777, 33.9818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8705, 33.9813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8634, 33.9806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8519, 33.9754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.847, 33.9724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8424, 33.9683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8373, 33.9653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8326, 33.9627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8267, 33.9598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8217, 33.9561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8167, 33.9533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8109, 33.9506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8058, 33.9481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8004, 33.9457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.795, 33.9432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7817, 33.9391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7778, 33.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7741, 33.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7705, 33.9398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7703, 33.9366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7703, 33.9317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7717, 33.9326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7772, 33.9301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7732, 33.9268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7674, 33.9258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7543, 33.9302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7496, 33.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7452, 33.9283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7414, 33.9253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7417, 33.9213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7437, 33.9171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7463, 33.9137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7499, 33.9112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7562, 33.9076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7614, 33.9081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7659, 33.9092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7708, 33.9123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7752, 33.9163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.776, 33.9221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7751, 33.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7814, 33.9213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7868, 33.9245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7927, 33.9244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7916, 33.9228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.785, 33.9237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7817, 33.9244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.78, 33.9275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7782, 33.9317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7839, 33.9347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7845, 33.9308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7849, 33.9242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.777, 33.9172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7693, 33.9159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.764, 33.9177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7623, 33.9199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7645, 33.9207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7655, 33.9206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7641, 33.9171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.771, 33.9161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7744, 33.9153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7799, 33.9174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7864, 33.9208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7892, 33.9235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7985, 33.9279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.809, 33.9308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.814, 33.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8226, 33.9397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8309, 33.9421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8334, 33.9464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.834, 33.9467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8394, 33.9456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8433, 33.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8442, 33.9555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8512, 33.9634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8588, 33.9697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8652, 33.9752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8741, 33.9812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8865, 33.9797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9017, 33.9798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9116, 33.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9162, 33.9946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9205, 33.9955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9231, 33.9924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9301, 33.9946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9307, 33.9932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9373, 33.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9449, 33.9903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9488, 33.9947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9466, 33.9949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9517, 33.9975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9531, 33.9927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9571, 33.9927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9617, 33.9908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9653, 33.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9696, 33.9866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.972, 33.9837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9761, 33.9916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9779, 33.9913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9716, 33.9912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9691, 33.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.961, 33.9936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9544, 33.9902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9554, 33.9894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9495, 33.9879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9452, 33.9896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.944, 33.9879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9501, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.956, 33.9891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9629, 33.9922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9677, 33.9889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9723, 33.9893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9721, 33.9944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9747, 33.9887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.974, 33.9882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.978, 33.9878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9774, 33.9823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9838, 33.9879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9913, 33.9891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9932, 33.9847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9866, 33.9827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9811, 33.9822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9796, 33.9858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9817, 33.9848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9828, 33.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9842, 33.9922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9777, 33.9908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9714, 33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9663, 33.9862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9698, 33.9832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9706, 33.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9734, 33.9805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9754, 33.9811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9741, 33.9818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9689, 33.9788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9598, 33.9801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9525, 33.9789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9448, 33.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9394, 33.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9353, 33.9815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9362, 33.9762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9388, 33.9765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9377, 33.9792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9425, 33.9757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9445, 33.9776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9379, 33.9714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9364, 33.9701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9283, 33.9714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9203, 33.9696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9168, 33.9696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9121, 33.9689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9017, 33.9694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8941, 33.9682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8886, 33.9705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8811, 33.9677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.876, 33.9709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.883, 33.9645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8848, 33.9613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8877, 33.9592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8886, 33.9554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8882, 33.9479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8883, 33.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8897, 33.9318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8909, 33.9257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8929, 33.9239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9032, 33.9186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9075, 33.9149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9142, 33.9175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9157, 33.9162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.918, 33.9161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9207, 33.9144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9217, 33.9142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9229, 33.9119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9246, 33.9065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9219, 33.9011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9205, 33.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9188, 33.8955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9131, 33.8892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9104, 33.8876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9085, 33.8886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.906, 33.8864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9026, 33.8858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8979, 33.8851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.894, 33.8857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8907, 33.8874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8862, 33.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8865, 33.8808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8877, 33.8775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.894, 33.8743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8978, 33.8727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9012, 33.8709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9046, 33.8686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9091, 33.8676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.913, 33.8667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9173, 33.8646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9215, 33.8639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.926, 33.8667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9272, 33.8701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9272, 33.8729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9284, 33.8767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9283, 33.8825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9301, 33.8868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9339, 33.8904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9349, 33.8961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9353, 33.8994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9359, 33.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9336, 33.9062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9316, 33.9088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9289, 33.9113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.926, 33.9153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9218, 33.9224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9208, 33.9258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9173, 33.933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9151, 33.9386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9137, 33.9441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9114, 33.9493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.906, 33.9538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9002, 33.9573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8952, 33.959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.889, 33.9604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8835, 33.9578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8777, 33.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8727, 33.962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8685, 33.9662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8639, 33.9706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8613, 33.9724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8631, 33.9738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8654, 33.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8667, 33.9705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8665, 33.9736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8669, 33.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8652, 33.9732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8628, 33.9686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8585, 33.9638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8528, 33.9614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8463, 33.9597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8356, 33.9665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8358, 33.9686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8394, 33.9728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8435, 33.9757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8494, 33.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8555, 33.9797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8613, 33.9825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8665, 33.9852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8791, 33.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8844, 33.9861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8876, 33.9903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8934, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9038, 33.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9067, 33.9926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9162, 33.9938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9262, 33.9926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9339, 33.9976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.942, 34.0001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9547, 34.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9639, 34.0053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9743, 34.0075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98, 34.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9863, 34.0174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9958, 34.0242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0019, 34.0298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0074, 34.0354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0107, 34.0419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.022, 34.0447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0317, 34.0451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0423, 34.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0492, 34.0468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0552, 34.0478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0599, 34.0496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0664, 34.0487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0673, 34.0551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0743, 34.0591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0837, 34.0563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0901, 34.0506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1052, 34.0557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1127, 34.0562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1375, 34.0632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1598, 34.0648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1686, 34.0633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1837, 34.0566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2068, 34.0398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2185, 34.0351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2347, 34.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2378, 34.0144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2425, 34.0037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2468, 33.9939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2408, 33.9884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2441, 33.9786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2497, 33.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2569, 33.9565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2627, 33.9506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2798, 33.9373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3163, 33.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3236, 33.9171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3312, 33.9149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3466, 33.9111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3539, 33.9086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3624, 33.9055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3711, 33.9036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3801, 33.9025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3891, 33.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3993, 33.9012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4154, 33.8977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4342, 33.9028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4456, 33.9088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4537, 33.9148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4537, 33.9229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4528, 33.9269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4554, 33.9297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4736, 33.9387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4835, 33.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4912, 33.9495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4971, 33.9549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5026, 33.9616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5042, 33.9722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5006, 33.9784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5072, 33.9854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5145, 33.9886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5207, 33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5259, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5312, 33.9838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5369, 33.9837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5514, 33.9783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5646, 33.9763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.587, 33.9725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5975, 33.9694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6077, 33.9676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6194, 33.9664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6474, 33.9627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6606, 33.9597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6734, 33.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6862, 33.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7072, 33.9446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.723, 33.9398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7412, 33.9351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7589, 33.9323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7769, 33.9296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7897, 33.9249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7952, 33.9141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8063, 33.9041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8015, 33.8987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7931, 33.8949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7807, 33.8914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7651, 33.8892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7553, 33.8898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7433, 33.8888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7273, 33.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7159, 33.8902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7028, 33.8913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6815, 33.895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6622, 33.9009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6464, 33.9079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6336, 33.9111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6105, 33.9148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5989, 33.9168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.585, 33.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5723, 33.9224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5544, 33.9253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5483, 33.9303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5414, 33.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5279, 33.9398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5141, 33.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5005, 33.9445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4837, 33.9481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4693, 33.9518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4522, 33.9565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4443, 33.9612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4326, 33.9683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4149, 33.9769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3962, 33.9832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3785, 33.9879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3631, 33.9941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3456, 34.0062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3297, 34.0469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.302, 34.0376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2841, 34.0464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2735, 34.0502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2664, 34.0528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2344, 34.0629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2174, 34.0654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2048, 34.0664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1951, 34.0668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1856, 34.0672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1526, 34.0614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1381, 34.0582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.123, 34.0536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1197, 34.0542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1173, 34.0546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1135, 34.0507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1186, 34.0536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1204, 34.0565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1202, 34.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1151, 34.0513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1092, 34.0519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0992, 34.0494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0907, 34.0505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.079, 34.0501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0683, 34.0484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0577, 34.0446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0488, 34.0393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0396, 34.0336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0308, 34.0277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0221, 34.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0169, 34.008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0141, 34.0078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0059, 34.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0058, 34.0077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9992, 34.0034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9892, 33.9991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9797, 33.9937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9704, 33.9825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9692, 33.9807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9636, 33.9795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9604, 33.9759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.964, 33.9781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9637, 33.9784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.958, 33.9763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9538, 33.9707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9464, 33.9649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9392, 33.9623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9308, 33.9602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.923, 33.9588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9161, 33.9572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9097, 33.9555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9027, 33.9546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8957, 33.9534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8881, 33.9528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8809, 33.9526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8732, 33.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8661, 33.9519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8604, 33.9495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8558, 33.9457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8434, 33.9392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8397, 33.9359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8327, 33.9342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8271, 33.9342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8164, 33.9385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8114, 33.9403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8046, 33.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.799, 33.9408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7922, 33.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7866, 33.9408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7795, 33.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7718, 33.9431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7653, 33.9427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7601, 33.9419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7558, 33.9418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7511, 33.9421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7452, 33.9425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7407, 33.9433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.728, 33.9437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7208, 33.9446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7159, 33.9446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7082, 33.9448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7008, 33.9451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6938, 33.9457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6848, 33.9443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6772, 33.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6714, 33.9437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6643, 33.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.659, 33.9423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6508, 33.9435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6423, 33.9536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6461, 33.9596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6486, 33.9626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6451, 33.9659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6424, 33.9695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6417, 33.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6424, 33.9805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6494, 33.9854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6544, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6595, 33.9917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6663, 33.9919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6731, 33.9918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6834, 33.9913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6944, 33.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.698, 33.9766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7023, 33.9747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7057, 33.9725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7124, 33.9719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7201, 33.9726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.725, 33.9738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7337, 33.9738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7389, 33.9741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7442, 33.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7505, 33.9751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7559, 33.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7614, 33.9719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7657, 33.969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7789, 33.9684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7837, 33.9684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7938, 33.968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7986, 33.9679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8153, 33.9687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8215, 33.9698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8252, 33.9715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8323, 33.9715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8392, 33.9755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8432, 33.9766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8498, 33.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8555, 33.9752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8632, 33.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8697, 33.9793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8699, 33.9838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8657, 33.9863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8606, 33.9792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8593, 33.9759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8542, 33.9737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8456, 33.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8372, 33.9705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8288, 33.9708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8182, 33.9714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8118, 33.9716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8054, 33.9722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7947, 33.9726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7844, 33.9719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7735, 33.9722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7632, 33.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7562, 33.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7503, 33.9734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7448, 33.9735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7388, 33.9754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7282, 33.9771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7227, 33.9782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7174, 33.9791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7122, 33.9795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7066, 33.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6985, 33.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6905, 33.9804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6847, 33.9808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6774, 33.9799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6702, 33.9787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6644, 33.9774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6591, 33.9726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.652, 33.9704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6449, 33.9679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.637, 33.9636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6307, 33.9613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6233, 33.9552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6152, 33.9498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5957, 33.9303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5849, 33.9185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5767, 33.9132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5724, 33.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5684, 33.9003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5623, 33.8909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5582, 33.8828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.55, 33.8585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5456, 33.8468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5498, 33.8447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5549, 33.8481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5541, 33.8534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5485, 33.8503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5416, 33.8478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.537, 33.8424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.534, 33.8191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5316, 33.8133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5308, 33.7999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.529, 33.7932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5268, 33.7853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5223, 33.7792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5171, 33.7735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5121, 33.7687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5057, 33.7614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4974, 33.7618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4813, 33.7481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4768, 33.7445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4689, 33.7384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4431, 33.7197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4266, 33.7096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4186, 33.7065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.409, 33.7028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3994, 33.6997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3907, 33.6974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3838, 33.6928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3788, 33.6889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3751, 33.6863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3681, 33.6811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3602, 33.6771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3559, 33.6756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3525, 33.67 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3478, 33.6636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3402, 33.6576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3363, 33.6553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3286, 33.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3221, 33.6457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3176, 33.6406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3151, 33.6362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3116, 33.632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3075, 33.6279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3027, 33.6284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2997, 33.6324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3022, 33.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.302, 33.6282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3009, 33.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3011, 33.6223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2984, 33.6214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2995, 33.6176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2971, 33.6246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2993, 33.6288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3059, 33.6297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3088, 33.6354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3214, 33.6325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3292, 33.6294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3264, 33.6252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3252, 33.6156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3212, 33.6067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3118, 33.5961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2984, 33.5857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2912, 33.5833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2716, 33.5791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2619, 33.5763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2563, 33.5744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2484, 33.5696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2373, 33.5662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2249, 33.5615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2115, 33.5583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2043, 33.558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1936, 33.5546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1844, 33.5521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1753, 33.5502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1696, 33.5484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1648, 33.5459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1569, 33.5425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1504, 33.5396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1447, 33.537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1402, 33.5337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1339, 33.5308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1217, 33.5276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1127, 33.5234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0998, 33.5199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0911, 33.5177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0858, 33.5161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0764, 33.5113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0667, 33.5074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0592, 33.5049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0514, 33.5009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0455, 33.4987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0364, 33.4945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0282, 33.4907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0184, 33.4871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0138, 33.4853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0065, 33.4842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9979, 33.4834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9934, 33.482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.988, 33.4815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9781, 33.4767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9729, 33.4749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9682, 33.4736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9552, 33.4696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9495, 33.4663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9429, 33.4596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9385, 33.4566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9341, 33.4523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9333, 33.4436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9251, 33.4441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.921, 33.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9163, 33.4375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9114, 33.4347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9076, 33.4328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9031, 33.4293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8885, 33.4144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8837, 33.4081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8814, 33.4047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.878, 33.4008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8764, 33.3983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.874, 33.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8717, 33.3913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8655, 33.3798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8638, 33.3754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8602, 33.3656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8594, 33.3589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8585, 33.3526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8579, 33.3485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8556, 33.3364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8545, 33.3314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8545, 33.3277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8547, 33.3247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8562, 33.3233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8593, 33.3198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8601, 33.3157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8596, 33.3144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8582, 33.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.856, 33.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8548, 33.3058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8514, 33.3022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8495, 33.2997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8446, 33.2946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8432, 33.2929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8392, 33.2905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8303, 33.2875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8276, 33.2866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8248, 33.2843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8211, 33.2844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8177, 33.2825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8142, 33.2815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8089, 33.2803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8056, 33.2797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8025, 33.2794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7976, 33.2771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7936, 33.2754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7854, 33.2703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7806, 33.2689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7691, 33.2625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7676, 33.2582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7601, 33.2544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7581, 33.2525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.754, 33.2496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7523, 33.2471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7473, 33.2415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7461, 33.2382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.745, 33.2359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7434, 33.2325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7412, 33.2306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7405, 33.2288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.738, 33.2256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.735, 33.2239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7343, 33.2209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7327, 33.2191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7337, 33.2162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7357, 33.2135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7368, 33.2105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7383, 33.2036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7388, 33.2006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7365, 33.1973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7288, 33.1919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.727, 33.1888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7174, 33.1834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.716, 33.1818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7136, 33.1784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7116, 33.1753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7086, 33.1732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7031, 33.1687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7008, 33.1657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6981, 33.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6945, 33.1608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6916, 33.1595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6914, 33.1552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6888, 33.1529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6765, 33.1463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6742, 33.1448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6745, 33.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6711, 33.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6696, 33.1378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6615, 33.1328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.658, 33.1296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6514, 33.1254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.649, 33.1212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6444, 33.1188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6406, 33.1151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6357, 33.1114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6318, 33.1088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6283, 33.1054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6199, 33.1014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6109, 33.0957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6095, 33.0869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6075, 33.0813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6055, 33.0752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5987, 33.0652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5967, 33.0613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5937, 33.0563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5899, 33.0487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5801, 33.0264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5814, 33.0179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5827, 33.0116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.582, 33.0048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5811, 32.9971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5802, 32.9905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5766, 32.9717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5725, 32.9554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5704, 32.9461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5695, 32.9296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5662, 32.9154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5645, 32.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5631, 32.8902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5631, 32.8862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5633, 32.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.563, 32.8777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5669, 32.8697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5706, 32.8597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5703, 32.8481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5707, 32.8434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5695, 32.838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5691, 32.8335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5694, 32.8299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5676, 32.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5647, 32.8181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5638, 32.8147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5629, 32.8098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5624, 32.806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5604, 32.8021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5591, 32.7973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5561, 32.7939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5526, 32.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5499, 32.7862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5465, 32.7836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5436, 32.7809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5405, 32.7779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5381, 32.7742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5369, 32.7705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5348, 32.7673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5325, 32.7647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5303, 32.7632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.526, 32.7593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.522, 32.7577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5184, 32.7519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5189, 32.7478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5202, 32.7432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5262, 32.7364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5266, 32.7325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5282, 32.7291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5306, 32.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5356, 32.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5397, 32.7205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5436, 32.7178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5485, 32.7145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5523, 32.7098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5565, 32.7037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5597, 32.6991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.563, 32.691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5641, 32.6857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.564, 32.6816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5637, 32.6755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5616, 32.6653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5616, 32.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5605, 32.6568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5595, 32.6533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5588, 32.6498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5572, 32.6448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5541, 32.6341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5459, 32.6192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5432, 32.6152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5412, 32.6114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5395, 32.6075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5379, 32.6042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5334, 32.5894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5298, 32.5846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5273, 32.5813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5244, 32.5761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5216, 32.5713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5187, 32.5676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5171, 32.5639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5149, 32.5599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5106, 32.5555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.498, 32.5403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.497, 32.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4947, 32.5312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4904, 32.5258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4856, 32.5155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4848, 32.5104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4828, 32.5066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.479, 32.4969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4783, 32.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4765, 32.4879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4731, 32.4791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4734, 32.4708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4712, 32.4691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4672, 32.4739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4577, 32.4699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4521, 32.4698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4416, 32.4662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4315, 32.4554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.425, 32.4506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4202, 32.4445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4176, 32.4353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.413, 32.4266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4084, 32.4223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4015, 32.4126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3968, 32.4064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3921, 32.4034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3858, 32.4031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3786, 32.4028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3706, 32.3996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.36, 32.4055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3429, 32.4218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3375, 32.4236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.331, 32.4269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3267, 32.4285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3237, 32.4317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3222, 32.4369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3154, 32.4348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3051, 32.4231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.298, 32.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2958, 32.4092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2906, 32.4052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2847, 32.4017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.28, 32.3986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.276, 32.3923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2755, 32.3861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2721, 32.3764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2643, 32.3669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2589, 32.3585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2536, 32.3493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2476, 32.3414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2416, 32.3332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2401, 32.3244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2407, 32.3182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2448, 32.3112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2628, 32.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2667, 32.3091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2682, 32.3114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2736, 32.3092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2788, 32.31 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2863, 32.3035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2908, 32.3005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.299, 32.2934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3079, 32.2856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3123, 32.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3167, 32.2788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3305, 32.2696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3384, 32.2644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3426, 32.2597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3584, 32.2436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3683, 32.2365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.377, 32.2301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3823, 32.2243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3898, 32.2182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3993, 32.2126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4138, 32.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4277, 32.2035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4385, 32.2017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4476, 32.1988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.453, 32.1973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4586, 32.1958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4633, 32.1942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4701, 32.1925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4754, 32.1903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4802, 32.1882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4904, 32.1834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4939, 32.1804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5004, 32.1757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5065, 32.1714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5117, 32.1682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5177, 32.1644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5246, 32.16 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5345, 32.1548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5443, 32.1496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5512, 32.1448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5575, 32.1403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5674, 32.1346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5769, 32.1291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5908, 32.1231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5992, 32.1192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6077, 32.1138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6154, 32.1089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6206, 32.1033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6254, 32.0976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6326, 32.0891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6365, 32.0829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6389, 32.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6415, 32.0694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6445, 32.0603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6471, 32.0492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6487, 32.0532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6464, 32.0559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.639, 32.0475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6322, 32.0408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6219, 32.0274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6098, 32.0143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.604, 32.0054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6, 32.0008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5957, 31.9962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5903, 31.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5852, 31.9761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5841, 31.9686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.584, 31.9597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5863, 31.9534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5911, 31.9446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5967, 31.9385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6011, 31.9333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6059, 31.9294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6093, 31.9259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6121, 31.9228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6153, 31.9196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6186, 31.9175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6221, 31.9143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6259, 31.9112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6296, 31.9082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6335, 31.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.637, 31.9022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6399, 31.8994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6435, 31.8973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6472, 31.8953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6509, 31.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6548, 31.8906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6582, 31.8888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.662, 31.8873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.666, 31.8858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6695, 31.8845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.674, 31.8823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6783, 31.8809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6825, 31.8791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.687, 31.8779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6914, 31.8775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.699, 31.8739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7029, 31.8721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7078, 31.8694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7122, 31.8667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7174, 31.8639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7219, 31.8609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7265, 31.8589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7313, 31.8563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7371, 31.8536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7421, 31.8511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7505, 31.8467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7548, 31.8438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7578, 31.8409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7613, 31.8406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7651, 31.8357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.769, 31.8301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7718, 31.8262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.775, 31.8205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7806, 31.8066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7877, 31.7986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7938, 31.7924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8019, 31.7861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8057, 31.7819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8024, 31.7728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8013, 31.764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8054, 31.7584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8083, 31.7496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8181, 31.7442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8242, 31.7418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8272, 31.7389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8379, 31.7337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8456, 31.7308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8535, 31.7259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8582, 31.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.863, 31.7172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8685, 31.7162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8745, 31.7131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8779, 31.7102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8804, 31.7074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8857, 31.7048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8904, 31.7027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8962, 31.6999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9026, 31.6968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9044, 31.6968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9098, 31.6951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9112, 31.6919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9175, 31.6877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9251, 31.6888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9263, 31.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9308, 31.6936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9353, 31.6943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9353, 31.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9295, 31.6947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9251, 31.6951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9258, 31.6934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9287, 31.6946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9327, 31.6963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9336, 31.6991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9349, 31.7022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9367, 31.7053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9526, 31.7209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9625, 31.7307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9653, 31.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.967, 31.7459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.968, 31.7509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9726, 31.7572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9751, 31.7612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9772, 31.7647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9809, 31.7699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9864, 31.7757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9889, 31.7789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9917, 31.7826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9947, 31.7861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9986, 31.7928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0003, 31.7959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0036, 31.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0068, 31.8049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0106, 31.8081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0156, 31.8115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0205, 31.8173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0253, 31.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0283, 31.8364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0306, 31.8423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0329, 31.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0342, 31.8501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0369, 31.8566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0355, 31.8607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0132, 31.8615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0265, 31.8584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0336, 31.8543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0353, 31.8549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0406, 31.8557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0432, 31.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0458, 31.8559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0559, 31.8638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0609, 31.8678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0644, 31.8677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0675, 31.8677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0692, 31.8676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0785, 31.872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0805, 31.8739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0816, 31.8747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0839, 31.8756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0849, 31.8761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0863, 31.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0983, 31.8829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1009, 31.884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1019, 31.8853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1069, 31.8915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1114, 31.8991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1206, 31.9102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1229, 31.9224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1262, 31.9431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1277, 31.9526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1299, 31.9597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1326, 31.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1337, 31.9718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1391, 31.9806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1419, 31.9872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1407, 31.9933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1433, 32.0071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1446, 32.0153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1461, 32.0252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1467, 32.0337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1474, 32.0395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1496, 32.0498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1508, 32.0593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1519, 32.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.153, 32.0691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1545, 32.0739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.156, 32.0797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1607, 32.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1641, 32.1029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1658, 32.1118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1691, 32.1207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1702, 32.1276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1744, 32.1346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1792, 32.1412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1832, 32.1469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1871, 32.1535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1909, 32.1607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1943, 32.1683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1979, 32.1768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2019, 32.1851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2059, 32.1951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2083, 32.2031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2132, 32.2108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2159, 32.2191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2195, 32.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2259, 32.2358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2317, 32.2468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2391, 32.2584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2459, 32.2666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2573, 32.2753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2669, 32.2818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2785, 32.2888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.288, 32.2958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2968, 32.3034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.305, 32.3126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.312, 32.3209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3178, 32.3309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3225, 32.3378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3285, 32.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3367, 32.3536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3528, 32.3695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3607, 32.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3693, 32.3844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3808, 32.3943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3892, 32.4017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3983, 32.4088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4035, 32.4135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4108, 32.4208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4169, 32.4295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.419, 32.4321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4263, 32.4366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4305, 32.4415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4398, 32.4484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4483, 32.4545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4584, 32.4627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4626, 32.4672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4642, 32.4692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.472, 32.4743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4731, 32.4768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4741, 32.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4758, 32.4816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4783, 32.4844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4797, 32.4867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4809, 32.4885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4816, 32.4898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4822, 32.4909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4826, 32.4927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4831, 32.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.484, 32.4954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4842, 32.4968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4853, 32.4976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4874, 32.5005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4889, 32.5012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4908, 32.5015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4956, 32.5038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4977, 32.5054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5046, 32.5114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5076, 32.5135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.51, 32.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5126, 32.5188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5159, 32.5212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5185, 32.5234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5228, 32.5281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5255, 32.5309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5279, 32.5338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5305, 32.5366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5338, 32.5392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5367, 32.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5401, 32.5471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5432, 32.5495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5474, 32.5529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5507, 32.5579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5541, 32.5621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5581, 32.5666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5713, 32.5788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5779, 32.5831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.58, 32.5885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5726, 32.5946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5776, 32.5945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5815, 32.5909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5882, 32.5888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5947, 32.5957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6012, 32.6039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6092, 32.6097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6142, 32.6148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6208, 32.6215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6299, 32.6281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6353, 32.6322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6416, 32.6368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6438, 32.6384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.646, 32.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6443, 32.6444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6429, 32.6438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.647, 32.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6529, 32.6466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6551, 32.6462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6555, 32.6434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6609, 32.6413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6654, 32.6453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6727, 32.6458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6745, 32.6443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6683, 32.6469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6639, 32.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6616, 32.6499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6545, 32.6498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6536, 32.6569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6503, 32.6608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6446, 32.6651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6521, 32.6726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6605, 32.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6664, 32.6677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6661, 32.6615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6661, 32.6565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6667, 32.6528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6714, 32.6535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.678, 32.6515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6821, 32.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6873, 32.6487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6898, 32.6466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.695, 32.6442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6997, 32.6465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7046, 32.6429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7129, 32.6428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7188, 32.6477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7252, 32.6503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7308, 32.6497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7342, 32.6552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7422, 32.6547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7473, 32.6527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7533, 32.6514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7596, 32.6538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7647, 32.6566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7765, 32.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7809, 32.6624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7871, 32.6654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7907, 32.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7948, 32.6686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7996, 32.6716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8043, 32.6737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8081, 32.6751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8129, 32.6776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8177, 32.6805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.821, 32.6817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8242, 32.6824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8302, 32.6855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8367, 32.6888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8453, 32.6922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8505, 32.6926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8543, 32.6939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8581, 32.6943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8639, 32.6953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8712, 32.6973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8776, 32.6957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8826, 32.6969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8886, 32.6973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8928, 32.6977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8978, 32.698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9026, 32.6961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9052, 32.6967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9073, 32.6968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9102, 32.6982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9129, 32.6973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9145, 32.6968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9162, 32.6964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9183, 32.6962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9214, 32.6949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9249, 32.6942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9288, 32.6931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9325, 32.6919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.936, 32.6914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9396, 32.6902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9431, 32.6894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9463, 32.6894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9501, 32.6894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9544, 32.6885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9579, 32.6853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9617, 32.6818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.966, 32.6831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9713, 32.6835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.976, 32.6843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9825, 32.6848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9855, 32.6846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9883, 32.6847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9916, 32.6847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9963, 32.6837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9999, 32.6835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0033, 32.6827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0067, 32.6813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0104, 32.6811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0197, 32.6809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0239, 32.6804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0274, 32.6805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0324, 32.6821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0367, 32.6835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0402, 32.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0436, 32.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0463, 32.6904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0534, 32.6952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.058, 32.6981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0625, 32.7005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0713, 32.7075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0784, 32.7112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0839, 32.7158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0895, 32.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0954, 32.7237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.102, 32.7275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.107, 32.731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.111, 32.7334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1147, 32.7389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.121, 32.7453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1318, 32.7575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1376, 32.7643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1453, 32.7743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.152, 32.7827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1588, 32.7902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1645, 32.7983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1686, 32.8068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1722, 32.8148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1778, 32.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.183, 32.8326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1872, 32.8423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1922, 32.8508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1993, 32.8596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2069, 32.8684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2139, 32.8772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2171, 32.8829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2189, 32.8865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2273, 32.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2368, 32.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2453, 32.9078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2508, 32.9123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2603, 32.921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2647, 32.9285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2688, 32.9346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2716, 32.9391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2761, 32.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2799, 32.9525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2851, 32.9602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2927, 32.9694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3001, 32.9791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3055, 32.9862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3136, 32.9954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.319, 33.0022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3243, 33.0085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3297, 33.0141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3363, 33.0232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3415, 33.0304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3569, 33.0452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3615, 33.0517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3567, 33.0553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3517, 33.0575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3457, 33.0592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3382, 33.0604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3311, 33.0611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3218, 33.0634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3112, 33.0637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2866, 33.0667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2742, 33.0699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.269, 33.0733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.259, 33.0858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2454, 33.0941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2387, 33.0933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2344, 33.0957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2259, 33.1056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2243, 33.1088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2228, 33.1122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2195, 33.1157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.218, 33.1203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2173, 33.1242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2179, 33.1281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2161, 33.1323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2153, 33.1369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.218, 33.1412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2253, 33.1456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2365, 33.1542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2462, 33.1625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2561, 33.1716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2662, 33.1803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.278, 33.187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2886, 33.1949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3013, 33.1964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.316, 33.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3302, 33.1908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.34, 33.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3473, 33.1879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3545, 33.185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3644, 33.1832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.378, 33.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3908, 33.1784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.406, 33.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4188, 33.1701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4304, 33.1697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.443, 33.1707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.458, 33.1715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4708, 33.1734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4775, 33.1748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4936, 33.1778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5006, 33.1795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5155, 33.1811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5317, 33.1835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5478, 33.1872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5636, 33.1922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.577, 33.1959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5909, 33.1976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6035, 33.1961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6171, 33.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6338, 33.2027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6481, 33.2101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6639, 33.2181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6724, 33.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6838, 33.2332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6989, 33.2429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7098, 33.2513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7234, 33.2618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7314, 33.2689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7408, 33.2778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.753, 33.2892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7643, 33.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7898, 33.3224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8021, 33.3294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8126, 33.3354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8237, 33.3442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8404, 33.3518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.853, 33.3584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8646, 33.3665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8793, 33.3759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8903, 33.3843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9024, 33.3922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9135, 33.4002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9273, 33.4078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9377, 33.4142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9432, 33.4191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.948, 33.4236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9551, 33.4303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9618, 33.4342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9738, 33.44 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9799, 33.4437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.983, 33.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9891, 33.4555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9947, 33.4582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0022, 33.4619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0085, 33.4643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0136, 33.4658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0254, 33.4696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0303, 33.4706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0379, 33.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0458, 33.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.058, 33.4792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0744, 33.4817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0836, 33.4877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0919, 33.4932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0982, 33.4964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1062, 33.5006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1107, 33.5024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1162, 33.5048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1239, 33.5079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1316, 33.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1435, 33.5216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1541, 33.5295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1585, 33.5309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1715, 33.5304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.178, 33.5305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.18, 33.5302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1817, 33.5295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1851, 33.5289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.19, 33.5284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1937, 33.5274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1973, 33.5252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2013, 33.5245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2056, 33.5246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2078, 33.5237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2126, 33.5224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2147, 33.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2178, 33.5219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2204, 33.5215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2241, 33.5223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2277, 33.522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2327, 33.5218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2382, 33.5227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.243, 33.5238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2477, 33.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2533, 33.5259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2597, 33.5274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.27, 33.5334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2752, 33.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.278, 33.5356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2821, 33.5358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.285, 33.5361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2881, 33.5361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2906, 33.5369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.299, 33.5395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3347, 33.5699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.36, 33.6002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3866, 33.6261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4097, 33.6546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0281, 33.9866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0438, 33.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0271, 34.0209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0229, 34.039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0316, 34.0409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0912, 34.0386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1016, 34.0376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1152, 34.0368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1606, 34.0311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.174, 34.0349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1796, 34.0356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2068, 34.0411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2414, 34.0154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2803, 33.9985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2858, 33.9973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2918, 34.0125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2576, 34.0288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2503, 34.0331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1873, 34.0456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1466, 34.0415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0234, 33.9883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0535, 34.0012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9737, 34.0093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9606, 33.9994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9446, 33.9979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9232, 34.0007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8136, 33.9721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.747, 33.9628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6438, 33.9161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.603, 33.8397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5411, 33.8376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5641, 33.8207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6333, 33.8323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6748, 33.8696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.691, 33.9034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6917, 33.9082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6895, 33.9152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6945, 33.9172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7061, 33.9299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7088, 33.9341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7156, 33.9446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7247, 33.9595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7382, 33.9732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7498, 33.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7729, 33.9835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7854, 33.9824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7983, 33.9824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9042, 33.9987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9271, 33.9985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9827, 33.9862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9783, 33.9792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9761, 33.9836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9824, 33.9841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9606, 33.9941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9594, 33.9922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9573, 33.9891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.974, 33.9869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9815, 33.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9977, 33.9698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0229, 34.0303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0778, 34.0162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0896, 34.0209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1662, 34.0553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1716, 34.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1495, 34.0461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1434, 34.0485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.131, 34.0457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1143, 34.0499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0577, 34.0398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.054, 34.0388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0532, 34.0409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0089, 33.9966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0056, 33.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.991, 33.9895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9946, 33.9889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9938, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9892, 33.9931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9788, 33.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.976, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9712, 33.9814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9681, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9655, 33.9848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9648, 33.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9591, 33.9842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.958, 33.9849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.965, 33.9838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9729, 33.9846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9803, 33.9835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9687, 33.9834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.958, 33.9802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.95, 33.9809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9452, 33.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9355, 33.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9401, 33.9783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9371, 33.9776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9308, 33.9764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9322, 33.9749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9141, 33.9699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9095, 33.9665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9258, 33.9479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9227, 33.9417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9187, 33.9356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9134, 33.9239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9208, 33.9097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8981, 33.8888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8881, 33.8778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8871, 33.875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8717, 33.8808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8684, 33.8886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8706, 33.9016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8728, 33.9034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8758, 33.9074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8784, 33.9089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8865, 33.9158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8858, 33.9371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.885, 33.9405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8821, 33.9432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8787, 33.9459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8749, 33.9491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8746, 33.9559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8714, 33.9636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.87, 33.9649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8676, 33.9713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8636, 33.9717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8577, 33.9745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8537, 33.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8533, 33.9792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8513, 33.9832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8523, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8544, 33.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8582, 33.9933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.864, 33.9956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8707, 33.9963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8777, 33.9965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.888, 33.9965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8958, 33.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9054, 33.9969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9133, 33.9975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.92, 33.9968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9242, 33.9903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9257, 33.9827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9183, 33.9947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9143, 33.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9109, 33.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9049, 33.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8945, 33.9905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.885, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8797, 33.9867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8757, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8718, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8794, 33.9785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8736, 33.9819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8883, 33.9776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9009, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9075, 33.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9156, 33.9953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.936, 33.9958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9394, 33.9925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9547, 33.9912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9588, 33.9896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9652, 33.9885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9636, 33.9881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9788, 33.9849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9783, 33.9874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9785, 33.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9771, 33.9909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9778, 33.9887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9795, 33.9834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9794, 33.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9781, 33.9872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.986, 33.9839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9877, 33.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0028, 33.9867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0035, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0038, 33.9903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0086, 33.9838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9967, 33.9816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9881, 33.9768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0383, 33.9932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.037, 33.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0296, 33.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0052, 33.9927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9684, 33.9895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9698, 33.9911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.967, 33.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9656, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9625, 33.9887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9623, 33.9844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9607, 33.9806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0025, 33.9653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9634, 33.9829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9687, 33.8979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9929, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9581, 33.9888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9538, 33.9871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9499, 33.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.951, 33.9895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9489, 33.9871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9435, 33.9853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9485, 33.9853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9569, 33.9829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9436, 33.9816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9362, 33.9824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9338, 33.9839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9336, 33.9853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9276, 33.9808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9242, 33.9791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9202, 33.9757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9147, 33.9785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9204, 33.9791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9229, 33.9787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9264, 33.9765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.925, 33.9744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9277, 33.9761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9226, 33.9746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9283, 33.9787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9325, 33.9785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.934, 33.9771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.936, 33.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9371, 33.9752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.932, 33.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9366, 33.9711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9325, 33.9733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9277, 33.9776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9211, 33.9765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8958, 33.9599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8753, 33.9757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8961, 34.0095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9117, 34.0113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9166, 34.0124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9222, 34.0132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9361, 34.0159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9475, 34.0166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0446, 34.0104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0448, 33.9962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0445, 33.9947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0737, 33.9837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0597, 33.9832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0487, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0362, 33.9987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0153, 33.9969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0117, 33.9842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0174, 33.9772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0261, 33.9863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0344, 33.9937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0259, 34.005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0312, 34.0107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0286, 34.0205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0159, 34.0191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0095, 34.0229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9986, 34.0177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9921, 34.0129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9858, 34.0081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9815, 33.9955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.983, 33.9863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9874, 33.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9906, 33.9805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9903, 33.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9919, 33.9878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9896, 33.9844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9825, 33.9887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9865, 33.9851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9928, 33.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.993, 33.9884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9885, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9952, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9896, 33.9896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.99, 33.9886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9895, 33.9893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9917, 33.9857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9941, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9937, 33.9847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9958, 33.9836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9935, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9878, 33.9873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9892, 33.9923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9901, 33.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9936, 33.9836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.005, 33.985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0102, 33.9877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0077, 33.9841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0088, 33.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.014, 33.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0175, 33.9873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0105, 33.9878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0088, 33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0151, 33.9871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0191, 33.9896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0182, 33.9893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0208, 33.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0274, 33.9872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0993, 33.9682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.105, 33.9692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1113, 33.9672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0972, 33.9533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0821, 33.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.076, 34.0053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0734, 34.009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0663, 34.0141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0318, 34.0231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0249, 34.0267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0503, 34.0143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0294, 34.0052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0002, 34.0063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0025, 34.0052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0079, 34.0075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0146, 34.0103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0144, 34.0099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0119, 34.0103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0046, 34.0077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0056, 34.0058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0105, 34.0073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0174, 34.0096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0179, 34.0085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.02, 34.0089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0228, 34.0112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0202, 34.0079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0153, 34.0141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0081, 34.0119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0001, 34.0097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0027, 34.0009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0193, 33.9998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0278, 34.0051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0254, 34.0111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0236, 34.0071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0201, 34.0045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0125, 34.0001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9968, 33.9999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9899, 33.9956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9835, 33.9924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.98, 33.9867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9852, 33.9874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9848, 33.9867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9862, 33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9846, 33.9837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9859, 33.9821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9814, 33.9853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9742, 33.9914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9809, 33.9953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9972, 33.9968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0023, 34.0028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0071, 34.0078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0057, 34.0144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0089, 34.0203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0135, 34.0274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.013, 34.0113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0159, 33.9986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0137, 33.9893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0139, 33.9839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0008, 33.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9848, 33.9851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9672, 33.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9488, 33.9984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9504, 33.9984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9488, 34.0035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0015, 33.9837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1106, 33.9977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1352, 34.0042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.145, 34.0052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2027, 34.0215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.224, 34.0225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2303, 34.0225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2363, 34.0241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2734, 34.0328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3192, 34.0468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3451, 34.0645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3502, 34.0761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3531, 34.0923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3478, 34.0985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3416, 34.0955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3355, 34.1297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2471, 34.0362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2598, 34.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.27, 34.0558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2644, 34.0583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.257, 34.0583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.251, 34.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2655, 34.0573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2674, 34.0598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2554, 34.0638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2459, 34.0649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.236, 34.0664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.22, 34.0676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2045, 34.0679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.191, 34.0668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.182, 34.0639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.174, 34.0591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1673, 34.0539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1623, 34.0478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1517, 34.0455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1404, 34.0446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.129, 34.0467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1146, 34.0481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.089, 34.0466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0796, 34.0443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0703, 34.0437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.052, 34.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.043, 34.0351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0339, 34.0317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0146, 34.024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0082, 34.0182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0006, 34.0121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9926, 34.0025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9934, 33.9874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9796, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9794, 33.9866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9754, 33.9952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9569, 33.9944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9331, 33.9986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9106, 33.9944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8671, 33.9959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8518, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8343, 33.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8159, 33.9796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8074, 33.9826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.794, 33.9844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.795, 33.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6899, 33.9724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5996, 33.8946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5925, 33.8898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5726, 33.8716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5028, 33.8038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4121, 33.7055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3073, 33.6425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2232, 33.5676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1996, 33.5558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1939, 33.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1413, 33.5393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0653, 33.5233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0127, 33.526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9446, 33.5552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9436, 33.5514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9448, 33.5489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9459, 33.5567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9457, 33.5616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9471, 33.5666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9426, 33.5535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9482, 33.5471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9514, 33.5494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9437, 33.5471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9348, 33.5419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9274, 33.5528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9235, 33.5671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9215, 33.5781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9089, 33.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8979, 33.5689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8857, 33.5636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8759, 33.5575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8662, 33.5512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8527, 33.5437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8402, 33.5374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8383, 33.5355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8312, 33.5302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8223, 33.5258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8154, 33.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8127, 33.5149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8093, 33.5106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8062, 33.5086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8065, 33.5018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8065, 33.504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8049, 33.5008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8052, 33.4969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8049, 33.4915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8002, 33.4897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7927, 33.4851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7901, 33.4806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7751, 33.4666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7991, 33.5361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7699, 33.4544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7655, 33.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6324, 33.3426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5052, 33.1678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4843, 33.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4633, 33.1144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4193, 33.0129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.345, 32.8525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3276, 32.8646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3478, 32.737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3449, 32.7098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3474, 32.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3489, 32.7039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3459, 32.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.344, 32.7013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3379, 32.6943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3472, 32.6873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3504, 32.6949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3505, 32.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3527, 32.7069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3464, 32.7128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3435, 32.7104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3423, 32.7068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3418, 32.7025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3434, 32.6994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3408, 32.6966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3437, 32.6954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3382, 32.6899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3359, 32.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3387, 32.6832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3317, 32.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3389, 32.6494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.331, 32.6383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3308, 32.6218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3121, 32.5744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3151, 32.5455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3128, 32.5391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3335, 32.5283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3381, 32.5282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3573, 32.5321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3595, 32.5307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3193, 32.5527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3277, 32.5162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3333, 32.5176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3468, 32.5292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3496, 32.5324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3525, 32.5329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3352, 32.6286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3383, 32.6321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.337, 32.6313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3338, 32.6691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3312, 32.6726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3205, 32.6503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3283, 32.6702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3295, 32.6786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3236, 32.6776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3219, 32.6741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3221, 32.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.321, 32.6756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3191, 32.6781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3245, 32.6708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3295, 32.6665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3332, 32.6635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3356, 32.6625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3413, 32.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3439, 32.6465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3437, 32.6471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3447, 32.6418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3457, 32.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3438, 32.6358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3427, 32.6325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3427, 32.631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3459, 32.6251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3435, 32.6252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3467, 32.6263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3467, 32.6223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3576, 32.6181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3525, 32.6289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3409, 32.6237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3441, 32.6216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3179, 32.6051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3253, 32.604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3231, 32.5944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3207, 32.6037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3228, 32.6046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3307, 32.6028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3523, 32.6065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3503, 32.6214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3506, 32.6244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3549, 32.6146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3538, 32.6276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.336, 32.6032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3279, 32.5955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3311, 32.5856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3488, 32.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3626, 32.5767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3772, 32.5742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4271, 32.5734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4294, 32.5858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3576, 32.6886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3514, 32.7094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3596, 32.7536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3361, 32.8707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3057, 32.9053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3062, 32.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3237, 32.9332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3301, 32.9436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3503, 32.9577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3693, 32.9812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3888, 32.9935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4, 32.9969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4108, 33.0018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5972, 33.0872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0632, 33.2805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3854, 33.6768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5938, 33.8614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6095, 33.8743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6354, 33.8978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6655, 33.9177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7058, 33.9358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7088, 33.9569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6528, 33.9204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5941, 33.8633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5933, 33.8461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.398, 33.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3967, 33.5288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3754, 33.5476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2974, 33.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2859, 33.5448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.145, 33.5015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.69, 33.1898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6967, 33.1899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5854, 33.1116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5808, 33.1157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5763, 33.0991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.576, 33.1051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5548, 33.1023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5517, 33.1068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.54, 33.1261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5275, 33.1174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5196, 33.0865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5363, 33.0897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5423, 33.0902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5545, 33.0881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5679, 33.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5613, 33.0737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5496, 33.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5387, 33.1529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5498, 33.1508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.545, 33.1456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5463, 33.1411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5593, 33.1371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5592, 33.1394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5486, 33.1548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5468, 33.1509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5425, 33.1395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5455, 33.1502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5467, 33.1542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5321, 33.1656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5278, 33.1641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5257, 33.1609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5194, 33.1545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5162, 33.1535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5149, 33.1533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5198, 33.1573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5393, 33.1557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5463, 33.1547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5473, 33.1517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5486, 33.1527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5506, 33.1502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5551, 33.1554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5583, 33.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5629, 33.1766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5608, 33.1814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5583, 33.1795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5525, 33.1709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.554, 33.1594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5723, 33.1517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5803, 33.1653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5764, 33.1657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5734, 33.1686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5686, 33.1749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5586, 33.1886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5733, 33.2015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5723, 33.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5732, 33.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5709, 33.2002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5744, 33.2116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5806, 33.2183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5579, 33.2163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5594, 33.2056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5581, 33.2033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.566, 33.2087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5688, 33.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.57, 33.2281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5727, 33.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5758, 33.2356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5799, 33.2362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5853, 33.2411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5866, 33.2393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5906, 33.2397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5887, 33.2448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5964, 33.2445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5996, 33.2456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5985, 33.2421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6032, 33.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6067, 33.2489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6114, 33.2484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6109, 33.2521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6031, 33.2508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6031, 33.2502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6005, 33.2482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6027, 33.2523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6002, 33.2518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5992, 33.2519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5968, 33.2496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5968, 33.2473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5976, 33.245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6021, 33.2461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.601, 33.2502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5987, 33.2489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6082, 33.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6139, 33.2496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6171, 33.2526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6175, 33.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6185, 33.2631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6165, 33.263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6169, 33.2634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6145, 33.2655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6182, 33.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6312, 33.2679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6393, 33.2676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6423, 33.2716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6459, 33.2737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.648, 33.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6523, 33.2783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6544, 33.2804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6662, 33.2878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6682, 33.2862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6742, 33.2897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.693, 33.2994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6987, 33.3099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7312, 33.2944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7764, 33.2839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.777, 33.2801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7778, 33.2767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7722, 33.2673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7654, 33.2642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7625, 33.2626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7297, 33.2585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7161, 33.2731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7115, 33.2737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6998, 33.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6849, 33.3021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6817, 33.3051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6745, 33.3111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6636, 33.3208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6558, 33.3269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6532, 33.3289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5895, 33.2807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.585, 33.2391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5905, 33.2307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5951, 33.2242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6159, 33.2086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6192, 33.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6166, 33.2251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.613, 33.2326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6099, 33.2399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6051, 33.2468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6011, 33.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5944, 33.2604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5901, 33.2671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5941, 33.2687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5992, 33.274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6013, 33.2769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6044, 33.2795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6095, 33.2842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6142, 33.2881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6136, 33.2909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6205, 33.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6262, 33.3043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6319, 33.3085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6378, 33.3116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6417, 33.3158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6429, 33.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6472, 33.3185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6512, 33.3239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6555, 33.3291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6603, 33.3327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6636, 33.3379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6696, 33.3367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6731, 33.3401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.681, 33.3516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6778, 33.3495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6817, 33.3521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6861, 33.3573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6891, 33.3617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6951, 33.3628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6976, 33.3627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7002, 33.3601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7066, 33.3673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7093, 33.3718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7096, 33.3761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7147, 33.3783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7195, 33.3823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7249, 33.3828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7312, 33.3899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7376, 33.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7427, 33.3974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.748, 33.3994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7513, 33.4004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7523, 33.4051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7592, 33.4091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7681, 33.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7713, 33.4168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7747, 33.4231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7807, 33.4251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7859, 33.4281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.79, 33.4335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7911, 33.4364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7891, 33.4396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7837, 33.4305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7836, 33.4248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7808, 33.4226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7754, 33.4152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7791, 33.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7827, 33.4123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7875, 33.4103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7912, 33.4058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7939, 33.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8025, 33.4035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8316, 33.4165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8271, 33.4132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7442, 33.3186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7042, 33.2769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6904, 33.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6814, 33.2493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5777, 33.1743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5526, 33.1605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.523, 33.1443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4614, 33.1015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4576, 33.0953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4537, 33.0898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4499, 33.0842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4365, 33.0599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4327, 33.0547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.375, 32.7369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0465, 34.0118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0376, 34.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0389, 34.0137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0423, 34.0074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0487, 34.0055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0504, 34.0017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0521, 33.9973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.057, 33.9918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0506, 33.9879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.046, 33.9876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0394, 33.9853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0342, 33.9871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.031, 33.9887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0326, 33.9887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0291, 33.9919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0287, 33.9984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0284, 34.0045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0332, 34.0077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0405, 34.0046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0488, 34.0057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0507, 34.0076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0519, 34.0091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0556, 34.0074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0562, 34.0081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0569, 34.0088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0603, 34.0109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.068, 34.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0758, 34.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0868, 34.0194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0911, 34.0231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0962, 34.0273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0997, 34.0328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0999, 34.0409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.095, 34.0437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0876, 34.0406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0791, 34.0419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0712, 34.0421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0635, 34.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0561, 34.0404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0479, 34.0382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0399, 34.0358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0339, 34.0316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0275, 34.0246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0296, 34.0131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0346, 34.0043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0314, 33.9977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0278, 33.9963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0232, 33.9916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0177, 33.9894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0118, 33.9906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0055, 33.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9993, 33.9885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9951, 33.9872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9906, 33.9869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9863, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9813, 33.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9624, 33.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9607, 33.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9549, 33.9971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9474, 34.0022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9436, 34.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9402, 34.0028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9357, 34.0025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9303, 34.0002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9241, 33.9997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.919, 33.9989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9134, 33.9979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9103, 33.9967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9001, 33.9926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8897, 33.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8837, 33.9892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.879, 33.9896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8748, 33.9883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.872, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8665, 33.9843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8611, 33.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8592, 33.9815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8548, 33.9798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8503, 33.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8465, 33.9769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8428, 33.9746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8388, 33.9732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8341, 33.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8306, 33.972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8263, 33.9713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8221, 33.9734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8238, 33.9726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8261, 33.9736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8288, 33.9738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8354, 33.9725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8382, 33.9713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.841, 33.9724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8484, 33.9716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8507, 33.9698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8521, 33.9677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8538, 33.9657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8597, 33.9655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8626, 33.9654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8655, 33.9666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8682, 33.9677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8708, 33.9687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8739, 33.9701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8745, 33.9721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.875, 33.9755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8767, 33.9774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8798, 33.9793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8831, 33.9812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8868, 33.9825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8934, 33.9842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8986, 33.9865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9026, 33.9895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9073, 33.9923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9146, 33.9948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9219, 33.9967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9301, 33.9992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9403, 34.0006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9479, 34.0003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9586, 33.9992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9674, 34.0001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9757, 33.9991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9806, 33.9955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9851, 33.9918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9822, 33.9901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9815, 33.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9803, 33.9881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9804, 33.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9814, 33.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9882, 33.9842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9936, 33.9835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.992, 33.9839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9882, 33.9845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9858, 33.9825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9879, 33.9832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9845, 33.9839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9797, 33.9829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9748, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9815, 33.9825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9842, 33.9821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9844, 33.9821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9841, 33.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9815, 33.9814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9866, 33.982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9824, 33.9821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.975, 33.9808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.964, 33.9772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.962, 33.9776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9641, 33.9804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9634, 33.9752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9586, 33.978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9563, 33.9786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9635, 33.9773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9608, 33.9753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9632, 33.9728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9584, 33.9742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9612, 33.9757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9672, 33.9802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9737, 33.9852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9828, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9916, 33.9896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9983, 33.9905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0047, 33.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0165, 33.9937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0348, 34.0086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0444, 34.0193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.054, 34.0242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0637, 34.0331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0697, 34.0439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0778, 34.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0901, 34.0483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1002, 34.0467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1073, 34.0461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1124, 34.0484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1198, 34.0456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1287, 34.0437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1315, 34.0417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1332, 34.0436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1304, 34.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1268, 34.0426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1355, 34.0439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1389, 34.041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1471, 34.0487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1675, 34.0515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1748, 34.0551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1821, 34.0608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1957, 34.0592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2029, 34.0589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2129, 34.0566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2149, 34.0514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1963, 34.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1847, 34.0459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.174, 34.0479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1613, 34.0527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1555, 34.0516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1473, 34.0566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1414, 34.0609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1416, 34.0633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1395, 34.0663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1351, 34.0685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1202, 34.0667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1138, 34.0659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1092, 34.0638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1033, 34.0616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0971, 34.0612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0905, 34.0609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0843, 34.0608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0772, 34.0596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0707, 34.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0585, 34.0553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0533, 34.0539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0472, 34.0522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0406, 34.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0351, 34.0485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0294, 34.0463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.022, 34.0435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0164, 34.0424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0101, 34.0402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0029, 34.0376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9911, 34.0332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9794, 34.0286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9725, 34.0269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9653, 34.0233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9598, 34.0207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9443, 34.0091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9411, 34.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9375, 34.002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9365, 33.9984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9318, 33.9948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9277, 33.9917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9246, 33.9892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9217, 33.9854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9104, 33.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9065, 33.9776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.903, 33.9761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8994, 33.9763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8969, 33.9775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8946, 33.9787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8974, 33.9797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8983, 33.9815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8957, 33.9824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8933, 33.9813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8864, 33.9828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8838, 33.9841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8807, 33.9848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8765, 33.9853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8732, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8681, 33.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8642, 33.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8607, 33.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.857, 33.9852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8532, 33.9857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.848, 33.9861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.844, 33.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8401, 33.9863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.828, 33.9826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.82, 33.9802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8176, 33.9785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8159, 33.9755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8096, 33.9713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8032, 33.9704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7967, 33.9696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7863, 33.9687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7792, 33.9675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7708, 33.9664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7643, 33.9655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.753, 33.9656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7461, 33.9656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7382, 33.9673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7272, 33.9689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7149, 33.9715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6982, 33.9759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6899, 33.9777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6799, 33.9777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6719, 33.975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6672, 33.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6583, 33.9706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6553, 33.9707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6549, 33.9684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6464, 33.9703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.639, 33.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6302, 33.9793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.625, 33.9767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6233, 33.9702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6234, 33.9678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6204, 33.9537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6188, 33.945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6207, 33.9385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6167, 33.9321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.612, 33.9295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6113, 33.9289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6167, 33.9286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.617, 33.9307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6178, 33.9233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6114, 33.9177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6009, 33.9148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6016, 33.9119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.602, 33.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6016, 33.9143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6027, 33.9134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.606, 33.9165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5976, 33.9148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5963, 33.9098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6034, 33.9122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6119, 33.9131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6193, 33.9088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.619, 33.9 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6208, 33.8936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6206, 33.8833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6211, 33.8714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6216, 33.8639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6212, 33.8569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6226, 33.8568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6236, 33.8572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6244, 33.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6262, 33.8601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6272, 33.8587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6283, 33.8601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6274, 33.8608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6305, 33.8623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6307, 33.8643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6339, 33.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6358, 33.8675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6372, 33.8644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6297, 33.8611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6199, 33.861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6162, 33.8549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6176, 33.8521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6205, 33.8535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6227, 33.8581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6254, 33.8623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6251, 33.8681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6351, 33.8716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6428, 33.878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6423, 33.8824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6435, 33.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6422, 33.8862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6457, 33.8845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6526, 33.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6554, 33.8864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.663, 33.8869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6692, 33.8902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6746, 33.8929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6752, 33.8911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6746, 33.8916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6742, 33.8894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6789, 33.8917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6784, 33.8955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6775, 33.8966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6835, 33.8959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6871, 33.8981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6913, 33.8979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6945, 33.8936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6906, 33.8917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6859, 33.8938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6824, 33.8966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6818, 33.9015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6832, 33.9013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6823, 33.9026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.684, 33.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6858, 33.9198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6861, 33.9237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6876, 33.9263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.686, 33.9299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6777, 33.9389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6747, 33.9433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6713, 33.9462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6666, 33.9539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6686, 33.9572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.677, 33.9544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6799, 33.9519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6702, 33.94 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6833, 33.9453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.683, 33.9409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6772, 33.9347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6729, 33.9293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6677, 33.9265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6668, 33.9269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6687, 33.9287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6699, 33.9296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6668, 33.9275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6612, 33.9291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6597, 33.9291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6595, 33.9265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6615, 33.9238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6631, 33.9256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6621, 33.9298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6629, 33.9318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6571, 33.931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6531, 33.9298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6534, 33.9296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6546, 33.9299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.645, 33.9263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6449, 33.9209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6461, 33.9195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6466, 33.9179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6466, 33.9156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6473, 33.9137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6477, 33.9102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6481, 33.9078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6495, 33.9062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6511, 33.9043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6513, 33.9017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6496, 33.8986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6476, 33.8952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6453, 33.892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6421, 33.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.638, 33.8859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6315, 33.8839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6309, 33.8787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6349, 33.8779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6281, 33.8797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6286, 33.8769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.635, 33.8768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6358, 33.8723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6281, 33.8675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6247, 33.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6216, 33.8628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6189, 33.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6194, 33.8565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62, 33.8522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6167, 33.8477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6106, 33.8472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6089, 33.8503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6166, 33.8512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.62, 33.8565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6251, 33.8602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6338, 33.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6394, 33.8682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6421, 33.8726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6446, 33.8727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6467, 33.8727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.647, 33.8756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.651, 33.8806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.657, 33.881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6592, 33.8838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6645, 33.8853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6675, 33.8859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6715, 33.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.678, 33.897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6818, 33.9047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6824, 33.9118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6783, 33.9156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6803, 33.9183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6793, 33.9227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6766, 33.9298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.682, 33.9334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6832, 33.9384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6852, 33.9444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6874, 33.9475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.687, 33.9449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6897, 33.9493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6905, 33.9526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6936, 33.9531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6998, 33.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6996, 33.9615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7063, 33.9637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7121, 33.9604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.711, 33.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7143, 33.9537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7109, 33.9521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7148, 33.9473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7195, 33.9442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7257, 33.9439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7307, 33.9483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7363, 33.9498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7429, 33.9511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7462, 33.957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7522, 33.9543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7525, 33.9449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.741, 33.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7313, 33.9335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7248, 33.9316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7208, 33.9302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7129, 33.9233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7013, 33.9236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6934, 33.926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6839, 33.9278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6726, 33.9295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6698, 33.9353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6737, 33.9405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6809, 33.944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6855, 33.9451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6931, 33.9457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7011, 33.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7057, 33.9378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7097, 33.9346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7125, 33.9322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7168, 33.9327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7184, 33.9331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7221, 33.9358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7227, 33.9387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7261, 33.9328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7264, 33.9286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7279, 33.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7299, 33.9198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7324, 33.9157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7368, 33.9153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7431, 33.9132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7445, 33.9113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7458, 33.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7506, 33.9059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7607, 33.8961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7642, 33.8941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7668, 33.8904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7695, 33.8837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7741, 33.8713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7765, 33.8617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7756, 33.8589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7723, 33.8559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7695, 33.8533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7635, 33.8495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7562, 33.8435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7503, 33.8406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7488, 33.8354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7444, 33.8256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7439, 33.8207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7436, 33.8144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7429, 33.81 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7418, 33.8006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7411, 33.7939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74, 33.7896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.739, 33.7839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7385, 33.7802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7371, 33.7729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7352, 33.7704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7351, 33.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7329, 33.7573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.729, 33.7466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7273, 33.7428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7249, 33.7385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7229, 33.7352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7183, 33.7292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7147, 33.7254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.712, 33.7215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7091, 33.7182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.706, 33.7156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7033, 33.7123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6999, 33.7089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6977, 33.7048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6942, 33.7009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6806, 33.6925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6767, 33.6901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6711, 33.6873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.665, 33.6851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6584, 33.6843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6534, 33.6853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6459, 33.6855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6376, 33.6861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6308, 33.6867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6214, 33.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6109, 33.6876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6038, 33.6882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5921, 33.6885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5855, 33.6893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5769, 33.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5622, 33.6899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5546, 33.6904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5446, 33.694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.538, 33.6955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5286, 33.6991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5235, 33.7045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5176, 33.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5114, 33.7178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5101, 33.7243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5081, 33.7307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5028, 33.7352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4952, 33.7379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4895, 33.7433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4899, 33.7434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4952, 33.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4962, 33.7428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4904, 33.7427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4908, 33.7535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4836, 33.7629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4744, 33.7703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4624, 33.7707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4546, 33.7643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.448, 33.7575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4448, 33.7502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4448, 33.7421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4485, 33.7391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4533, 33.7427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4554, 33.7467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4505, 33.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4441, 33.7413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4395, 33.7359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4353, 33.7322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4275, 33.7275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4202, 33.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4127, 33.7168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4002, 33.7159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3944, 33.7138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3873, 33.7084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3855, 33.7093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3876, 33.7113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3814, 33.7058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3762, 33.7044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3712, 33.7036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3719, 33.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3718, 33.7031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3752, 33.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3738, 33.7034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3644, 33.7028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3653, 33.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3612, 33.7037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3639, 33.7045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3633, 33.7048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3584, 33.7012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3571, 33.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3534, 33.6981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3494, 33.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3531, 33.6975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3603, 33.7023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3608, 33.7088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3647, 33.7054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3616, 33.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3531, 33.7009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3483, 33.6963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3462, 33.6928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3445, 33.6906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3422, 33.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3429, 33.6904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3385, 33.6871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3345, 33.6854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3356, 33.6855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3327, 33.6857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3328, 33.6866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3316, 33.6863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3269, 33.6836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3223, 33.6811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3192, 33.6784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3158, 33.6757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3108, 33.6726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3063, 33.6696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3038, 33.6676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3013, 33.6647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2975, 33.6608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2946, 33.658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2892, 33.6533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2862, 33.6516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2825, 33.6478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2794, 33.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2772, 33.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2728, 33.6355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2701, 33.6323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2669, 33.6295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2642, 33.6271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.26, 33.6239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2567, 33.6208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2518, 33.6161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2488, 33.6112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2476, 33.6062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.248, 33.5963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.248, 33.5883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.246, 33.5839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2433, 33.5817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2403, 33.5794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2456, 33.5758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2474, 33.5742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2507, 33.5728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2538, 33.5728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2572, 33.5724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2611, 33.5724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2662, 33.5738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.271, 33.5743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2785, 33.5752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2835, 33.5758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2881, 33.5761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2919, 33.5773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2981, 33.5761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3035, 33.5754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3076, 33.5764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3108, 33.5769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3138, 33.5765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3169, 33.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3209, 33.5761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3228, 33.5753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3261, 33.5769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3306, 33.5774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3346, 33.5786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3365, 33.5818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3408, 33.5756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3475, 33.5761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3495, 33.5742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3491, 33.5689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3471, 33.564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3421, 33.5619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3382, 33.5613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3353, 33.5644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3302, 33.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3257, 33.5708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3237, 33.5762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3235, 33.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3217, 33.5876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3203, 33.5934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3225, 33.5985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3268, 33.6019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3341, 33.6044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3408, 33.6058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.348, 33.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3569, 33.6044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3646, 33.6016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3725, 33.5989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3788, 33.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3861, 33.5895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.392, 33.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3973, 33.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4017, 33.5702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4013, 33.5631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3946, 33.5612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3881, 33.5619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3806, 33.5618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3702, 33.5636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3616, 33.5667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3517, 33.5715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3422, 33.578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3395, 33.5844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3428, 33.5852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3431, 33.5821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3429, 33.5798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.336, 33.5841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3415, 33.5901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3484, 33.5892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3516, 33.595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3525, 33.6009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3488, 33.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3463, 33.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3442, 33.6164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3397, 33.6218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3341, 33.6251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3288, 33.6287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3206, 33.6334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3233, 33.6359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3182, 33.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3075, 33.6305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3051, 33.6417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3065, 33.6493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3176, 33.6576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3266, 33.6633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3263, 33.6684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3317, 33.6803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.338, 33.6879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.345, 33.6904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3461, 33.6926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3489, 33.6976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3561, 33.6993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3594, 33.7017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3636, 33.7026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3674, 33.7067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.372, 33.7049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3701, 33.7092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3813, 33.7087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3882, 33.7119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3923, 33.7123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3945, 33.7152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4062, 33.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4132, 33.7216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4224, 33.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4305, 33.7337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4356, 33.7411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4432, 33.7491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4472, 33.7555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4547, 33.7617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4624, 33.7672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4687, 33.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4744, 33.7801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4803, 33.7882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4839, 33.7958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.489, 33.8032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.494, 33.8091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4886, 33.8173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4926, 33.8257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4975, 33.8329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5017, 33.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5062, 33.8466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5102, 33.8524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5161, 33.8582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5212, 33.8615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5264, 33.8645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5304, 33.8671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5384, 33.8726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5435, 33.8764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5482, 33.8789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5548, 33.8837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5627, 33.8878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5671, 33.8905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5722, 33.8943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5763, 33.8981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5844, 33.9054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5908, 33.9101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5989, 33.9138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6057, 33.9162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6132, 33.9197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6214, 33.9232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6303, 33.9272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6364, 33.9286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6425, 33.9335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6499, 33.9392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6572, 33.9424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6628, 33.9465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6688, 33.9503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6749, 33.9535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6811, 33.9568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6863, 33.9612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6869, 33.9643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6885, 33.9679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6919, 33.9728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6956, 33.9771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6996, 33.9784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7024, 33.98 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7058, 33.9818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.708, 33.9832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7114, 33.9848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7152, 33.9893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7223, 33.9906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.73, 33.9906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7344, 33.9903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7408, 33.9902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7459, 33.9905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7498, 33.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7542, 33.9903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7573, 33.9891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.762, 33.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7711, 33.9863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7793, 33.9842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.789, 33.9833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7977, 33.9829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.806, 33.9843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8126, 33.9858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8218, 33.9824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.824, 33.9872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8293, 33.9874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8377, 33.9896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.848, 33.9907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8525, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8609, 33.9907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8693, 33.9949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8786, 34.0003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9023, 33.9984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9106, 33.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9192, 33.9872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9278, 33.9891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9316, 33.9926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9429, 33.9943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9487, 33.9993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9578, 34.0022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9647, 33.9988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9658, 33.9981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9682, 33.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9707, 33.9936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9727, 33.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9827, 33.9888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9986, 33.9863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9994, 33.9923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0018, 33.9914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9969, 33.9963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0029, 33.9932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0052, 33.9962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0037, 33.9985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0004, 33.9987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9955, 33.9962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9854, 33.9942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9783, 33.9947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9775, 33.9967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9751, 33.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9719, 33.9925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9707, 33.9892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9651, 33.992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9609, 33.9934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.963, 33.9926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9595, 33.9917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9616, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9564, 33.9913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9535, 33.9942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9519, 33.9915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9464, 33.9907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9401, 33.9891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9417, 33.9939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9491, 33.9895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9494, 33.9914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9567, 33.9921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9598, 33.9913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9597, 33.9928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9609, 33.9922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9641, 33.9925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9658, 33.9919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9662, 33.9964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.96, 33.9925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9664, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9617, 33.9884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9679, 33.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9746, 33.9828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.985, 33.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9868, 33.9926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9978, 33.9968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0092, 33.9923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0146, 33.9891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0224, 33.9894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0148, 33.9892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0139, 33.9945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9967, 34.0099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9854, 34.0089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9746, 34.0039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9662, 33.9976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9587, 33.9914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9418, 33.9781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.935, 33.9786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9285, 33.9762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9061, 33.9766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9058, 33.9796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9037, 33.9782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.899, 33.9716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8981, 33.966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.888, 33.9674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8851, 33.9673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8802, 33.9729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8746, 33.9693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8721, 33.9689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8679, 33.9731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8752, 33.9846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8847, 33.9907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8888, 33.9945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8908, 33.9969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8969, 33.9962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9077, 33.9932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9236, 33.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9346, 33.9829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.946, 33.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9544, 33.9809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9648, 33.9799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9686, 33.9788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9674, 33.9774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9699, 33.9775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9763, 33.9829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9797, 33.9812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9815, 33.9799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9816, 33.9774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9823, 33.9747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.985, 33.9717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9877, 33.9643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9949, 33.9611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0024, 33.9679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9996, 33.9702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9982, 33.9779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.001, 33.9816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0023, 33.9827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0054, 33.9831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0086, 33.9804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.012, 33.9798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0186, 33.9799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0239, 33.9773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0284, 33.9781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0332, 33.9796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0368, 33.981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0376, 33.9826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0418, 33.9831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0451, 33.9818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0469, 33.9814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0498, 33.9818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0509, 33.9838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.049, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0473, 33.9874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0447, 33.9851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0422, 33.9847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0376, 33.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0345, 33.9835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.036, 33.9817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0417, 33.9812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0391, 33.9826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0391, 33.9853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0439, 33.986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0552, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0672, 33.9914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0617, 33.9924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0568, 33.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0536, 33.9891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.053, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0489, 33.9886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0446, 33.9871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0436, 33.9858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0433, 33.9845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0393, 33.9843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0375, 33.9865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0367, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.038, 33.9838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0372, 33.9843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.039, 33.9844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0426, 33.9848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0491, 33.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0535, 33.9969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0568, 34.0171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0548, 34.0259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0541, 34.0342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0566, 34.0418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0704, 34.0482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0856, 34.0494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0986, 34.0493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1086, 34.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1072, 34.0521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1064, 34.0531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1058, 34.0542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1052, 34.0534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1047, 34.0551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1013, 34.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1063, 34.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1049, 34.0557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1062, 34.0583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1099, 34.0613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1157, 34.0662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1097, 34.0587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1015, 34.0575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0994, 34.0587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0966, 34.0609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0982, 34.0589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0907, 34.0597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0875, 34.0578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0974, 34.0605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0966, 34.0566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0923, 34.0609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0955, 34.0658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1009, 34.0698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1078, 34.0692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1119, 34.0685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1199, 34.0718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1295, 34.0652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1364, 34.0648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.143, 34.0722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1541, 34.073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.167, 34.0678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1754, 34.0662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1845, 34.0624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1937, 34.0596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2056, 34.0582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2149, 34.0575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2258, 34.0558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2382, 34.0555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2494, 34.0557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2634, 34.0558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2719, 34.0544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2836, 34.0504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2921, 34.0479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3026, 34.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3095, 34.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3173, 34.0395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3186, 34.0356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3147, 34.0289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3147, 34.0231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3187, 34.0188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3215, 34.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3286, 34.0018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3394, 33.9919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3457, 33.9888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3512, 33.9844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3595, 33.9857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3664, 33.9881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3713, 33.9925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3886, 33.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3937, 33.9857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3989, 33.9818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4011, 33.9785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4045, 33.9754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4074, 33.9703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4035, 33.9671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3961, 33.9597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3952, 33.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3941, 33.9484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3922, 33.9422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3894, 33.9377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3863, 33.9329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3801, 33.9294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3737, 33.9268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3544, 33.9195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3481, 33.9169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3421, 33.9149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3377, 33.9107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.334, 33.9066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3319, 33.9004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3344, 33.8947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3374, 33.8797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3354, 33.8742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.337, 33.8592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3339, 33.8546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3293, 33.8516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3307, 33.8415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3351, 33.8315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3407, 33.8205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3405, 33.8024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3382, 33.7994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3318, 33.7931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3272, 33.7905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3226, 33.7882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3187, 33.7863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3137, 33.7844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3094, 33.7822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3049, 33.7791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3027, 33.7755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2994, 33.7716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2957, 33.7681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2891, 33.762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2858, 33.7588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2804, 33.7589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2746, 33.7542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2722, 33.7497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2701, 33.7467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.266, 33.7429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2676, 33.7405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2735, 33.7329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2783, 33.7248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2887, 33.7166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2901, 33.7121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2845, 33.7108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2887, 33.7016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2922, 33.6903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2996, 33.6818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3123, 33.6742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3193, 33.6725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3295, 33.672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3362, 33.6729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3447, 33.6741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3516, 33.6744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3561, 33.6712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3656, 33.6738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3699, 33.6731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3821, 33.6724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3876, 33.6719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.392, 33.671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3982, 33.6691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4025, 33.6678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4073, 33.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4124, 33.6642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4263, 33.6668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4318, 33.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4379, 33.6666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4466, 33.6679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4531, 33.6683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4607, 33.6698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4695, 33.6718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4753, 33.6722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4818, 33.6731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.486, 33.6738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4912, 33.6756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5006, 33.6787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5074, 33.6811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5383, 33.6919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5441, 33.6951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5539, 33.6995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5572, 33.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5621, 33.7076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5743, 33.7141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5797, 33.7206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5865, 33.7299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5975, 33.7427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6027, 33.7495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6082, 33.7575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.612, 33.7644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6225, 33.7785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.628, 33.7861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6336, 33.7972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6403, 33.8062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.646, 33.8142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6526, 33.8212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6596, 33.8283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.667, 33.8354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.675, 33.8422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6839, 33.8483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6902, 33.8538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6936, 33.8618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6996, 33.8678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7086, 33.8748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.715, 33.8831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7209, 33.8923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7253, 33.8995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7347, 33.9105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7452, 33.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7599, 33.9281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7756, 33.9314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7915, 33.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8061, 33.9313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8195, 33.9319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8334, 33.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8501, 33.9355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8604, 33.9365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8831, 33.9429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8936, 33.9468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9068, 33.9468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9283, 33.9432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9346, 33.9518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9454, 33.9562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9512, 33.9554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9554, 33.9494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.955, 33.9351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9549, 33.9283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9608, 33.9206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9691, 33.9131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9758, 33.9089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9843, 33.9042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9973, 33.8998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0057, 33.8953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0148, 33.8918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0301, 33.8848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0394, 33.8801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0489, 33.8769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0591, 33.8742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0683, 33.8702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0802, 33.8667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0894, 33.8644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1017, 33.863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1118, 33.8618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1295, 33.8591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1392, 33.8581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1593, 33.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1762, 33.8567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1866, 33.8568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2001, 33.8572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2099, 33.8587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2221, 33.8597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.234, 33.8633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2521, 33.8684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2855, 33.8799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2985, 33.8852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3098, 33.8883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3217, 33.8951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3298, 33.8981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3493, 33.9054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3565, 33.9089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3658, 33.9131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3812, 33.9185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4017, 33.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4124, 33.9346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4251, 33.9445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4392, 33.9521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4461, 33.9549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4578, 33.9621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4645, 33.9647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4738, 33.9708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4792, 33.9739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4875, 33.9793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4928, 33.9842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5022, 33.9926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.507, 33.9971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5157, 34.0032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.527, 34.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5387, 34.0211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5524, 34.027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.561, 34.0319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5678, 34.0356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5785, 34.0417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59, 34.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5979, 34.0534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6075, 34.0588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6149, 34.0619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6242, 34.0674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.633, 34.0714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6427, 34.0778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6498, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6602, 34.089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6719, 34.0944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6868, 34.0994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7057, 34.1134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.716, 34.1183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7299, 34.1261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7396, 34.1348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7442, 34.1435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7478, 34.1492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7508, 34.1562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7536, 34.1623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7574, 34.1678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7667, 34.1801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7782, 34.2025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7803, 34.2073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.788, 34.2183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7994, 34.227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8054, 34.2356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8135, 34.2452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8176, 34.2492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8236, 34.2585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.828, 34.2635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8303, 34.2714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8329, 34.2757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8353, 34.2827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8392, 34.2972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.841, 34.3032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8425, 34.3112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8428, 34.3172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8439, 34.3288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8453, 34.3355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8464, 34.3447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8479, 34.3506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8493, 34.3572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.85, 34.363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8495, 34.3711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8514, 34.3857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8504, 34.3917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8466, 34.4063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8441, 34.4128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8417, 34.4194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8386, 34.4273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8386, 34.4347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8373, 34.4413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8361, 34.4502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8356, 34.4618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8348, 34.4686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8335, 34.4748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8291, 34.4836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8273, 34.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8257, 34.5016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8269, 34.5142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8265, 34.5236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8261, 34.5352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8251, 34.5503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8239, 34.5576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8239, 34.5697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8239, 34.5777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8226, 34.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8242, 34.5994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.826, 34.6069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8296, 34.6221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8311, 34.6317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8302, 34.6445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8281, 34.6597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8267, 34.6677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8236, 34.6756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8216, 34.6854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.818, 34.6996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8175, 34.7134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8159, 34.7315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8168, 34.7453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8189, 34.7537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8231, 34.7658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8319, 34.7803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8389, 34.7951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8464, 34.8098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8506, 34.8173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.857, 34.827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8611, 34.8321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8695, 34.8412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8738, 34.8467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8825, 34.8539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8891, 34.8626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8952, 34.8704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9069, 34.8837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9116, 34.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9178, 34.9042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9257, 34.9146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9327, 34.9229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9398, 34.9319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9476, 34.9423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9543, 34.9504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9587, 34.9568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9606, 34.9633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9585, 34.9703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9538, 34.9804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9523, 34.9896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9533, 34.9975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9548, 35.0064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9532, 35.0159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9475, 35.0267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9319, 35.0341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9202, 35.0398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9095, 35.0488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9032, 35.0577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8943, 35.0671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8887, 35.0753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8846, 35.0822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8811, 35.1026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.883, 35.1101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8858, 35.1217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8898, 35.1315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8959, 35.1391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9022, 35.1496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9092, 35.1577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9176, 35.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9251, 35.1743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9335, 35.1813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9426, 35.1895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9513, 35.1985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9575, 35.2078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9639, 35.2163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9701, 35.2256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9772, 35.2358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9831, 35.2466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9874, 35.2528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9912, 35.2611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9955, 35.2669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0016, 35.2754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0055, 35.2807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0129, 35.2869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0263, 35.3041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0333, 35.3123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0441, 35.3228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.053, 35.3342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0573, 35.3379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0664, 35.3472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0711, 35.3517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0791, 35.3567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0892, 35.3662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0938, 35.3707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0982, 35.3743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1018, 35.3785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1096, 35.3857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1137, 35.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1219, 35.3949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1277, 35.3994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1406, 35.4087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1562, 35.4167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1662, 35.4236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1733, 35.4288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1817, 35.4331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2039, 35.4484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2163, 35.4577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2226, 35.4622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2433, 35.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2525, 35.4827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2595, 35.4875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2654, 35.4927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2725, 35.4962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2938, 35.5083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3146, 35.5231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3269, 35.5288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3308, 35.5319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3328, 35.53 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3335, 35.5351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3411, 35.5374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3504, 35.5352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3653, 35.5376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3883, 35.5463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3975, 35.5494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4101, 35.5547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4166, 35.5567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4302, 35.5596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4379, 35.5626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4507, 35.5643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4708, 35.5677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4784, 35.5715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4884, 35.5759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5002, 35.5793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5099, 35.581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5247, 35.5857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5315, 35.5882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5452, 35.5945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5529, 35.5984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5605, 35.6064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5735, 35.6132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5845, 35.6163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5944, 35.6206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6105, 35.6289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6178, 35.6344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6304, 35.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6356, 35.6499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.642, 35.6558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6477, 35.6629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6591, 35.6702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6654, 35.6754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6757, 35.6834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6817, 35.6888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.69, 35.6966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6974, 35.6996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7028, 35.7042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7145, 35.7171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7187, 35.7218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.722, 35.7278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7266, 35.7315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7324, 35.7389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7396, 35.7448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7475, 35.7491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7561, 35.7565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7612, 35.7609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.769, 35.7635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7756, 35.7656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.782, 35.7687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7929, 35.7677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8097, 35.7699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8187, 35.7729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8268, 35.7758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8368, 35.7781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8453, 35.781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8557, 35.7829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8652, 35.7845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8745, 35.7837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8872, 35.7842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8979, 35.7839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9188, 35.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9348, 35.7857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.943, 35.7831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.96, 35.7809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9718, 35.7789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0005, 35.7757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0116, 35.7729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0209, 35.7733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0314, 35.7726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0413, 35.7741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0516, 35.7763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0721, 35.7821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0812, 35.7836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0931, 35.7866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1152, 35.7934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1223, 35.7951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1295, 35.7979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1382, 35.7999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1491, 35.8038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1544, 35.8058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1613, 35.8073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1673, 35.8096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1747, 35.8115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1864, 35.8121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1969, 35.8145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2186, 35.8193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2263, 35.8195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2502, 35.8271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.272, 35.832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2822, 35.8339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2864, 35.8344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2901, 35.8347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.304, 35.8361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.313, 35.8376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3204, 35.8396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3266, 35.8414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.336, 35.8453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3457, 35.8479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3497, 35.8497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3558, 35.8535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3604, 35.8543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3658, 35.8567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3764, 35.8608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3859, 35.8633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3931, 35.8639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4002, 35.8638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4132, 35.8629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4261, 35.862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4314, 35.8634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4402, 35.8673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4547, 35.8718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4631, 35.8755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4799, 35.8841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4847, 35.8867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4892, 35.8886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4994, 35.89 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5063, 35.8915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5113, 35.8952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5167, 35.8979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5278, 35.9019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5316, 35.9032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5406, 35.9074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5452, 35.9115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5504, 35.9146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.558, 35.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5651, 35.9239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5839, 35.9352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6041, 35.9496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6107, 35.9524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6255, 35.9642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6313, 35.9699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6376, 35.9755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6458, 35.9809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6534, 35.9867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6642, 35.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6714, 36.0004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6823, 36.0092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6902, 36.0167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6957, 36.0243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6997, 36.0316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7066, 36.0418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7165, 36.057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7243, 36.0659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7282, 36.0728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7322, 36.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7371, 36.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7403, 36.1004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7474, 36.1137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7483, 36.1211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7542, 36.1322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7601, 36.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.764, 36.1497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7746, 36.1631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7838, 36.1741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7857, 36.1888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7861, 36.1993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7876, 36.2173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7903, 36.229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7933, 36.2409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7968, 36.2492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7978, 36.2672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7992, 36.2741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8025, 36.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8074, 36.3032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8061, 36.3127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8077, 36.3293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8076, 36.3359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8083, 36.3498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8096, 36.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8098, 36.3723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8103, 36.3902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8121, 36.4019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8134, 36.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8135, 36.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.818, 36.4353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.822, 36.4429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8237, 36.4539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8323, 36.4612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8289, 36.4721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8336, 36.4801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8374, 36.4868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.838, 36.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8419, 36.4986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8277, 36.5132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8285, 36.5219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8287, 36.5321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8355, 36.5382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8351, 36.5451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8298, 36.5534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8239, 36.5607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8228, 36.5712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8213, 36.5846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8226, 36.597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8243, 36.6077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8221, 36.6217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8196, 36.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8125, 36.6365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8048, 36.6457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7626, 36.6571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7897, 36.6565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7796, 36.6639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7688, 36.6734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.767, 36.6745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7592, 36.6792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.759, 36.6783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7584, 36.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7534, 36.6792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7505, 36.6796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7446, 36.6887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.743, 36.6957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.738, 36.7055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7286, 36.7183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7199, 36.7289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7159, 36.7331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7105, 36.7404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7049, 36.7461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6986, 36.7557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6944, 36.7602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6914, 36.7661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.687, 36.7734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6711, 36.7704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6597, 36.7801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6518, 36.7908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6498, 36.7984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6485, 36.8037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6462, 36.8123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6458, 36.8176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6458, 36.8215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6447, 36.8268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.642, 36.8289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6371, 36.8341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6379, 36.8363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6396, 36.8437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6396, 36.8485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6395, 36.8513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6291, 36.8612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6272, 36.8692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6256, 36.8777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6225, 36.8888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6229, 36.8921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6235, 36.8951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6228, 36.9008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6206, 36.9101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6206, 36.9148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.622, 36.9246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6226, 36.9315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6226, 36.9363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6252, 36.9465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6276, 36.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6331, 36.9757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6357, 36.9819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6371, 36.9872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6365, 36.9963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.63, 37.0095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6282, 37.0146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6293, 37.0241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6287, 37.0332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6261, 37.0378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6249, 37.0454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6255, 37.0518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6251, 37.0565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.626, 37.0651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6264, 37.0706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6294, 37.0793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6331, 37.0884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6378, 37.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6412, 37.1062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.645, 37.1133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6527, 37.1284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6554, 37.1352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6602, 37.1437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6646, 37.1503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6713, 37.1603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6741, 37.1661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6768, 37.1732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6792, 37.1821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6848, 37.1943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6879, 37.2033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.693, 37.2127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6984, 37.2207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7029, 37.2329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7037, 37.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7046, 37.2497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7071, 37.2597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7085, 37.2704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7166, 37.2905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7246, 37.3021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7292, 37.3119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7361, 37.3209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7399, 37.3269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7454, 37.3342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7494, 37.3399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7546, 37.3458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.762, 37.3538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7672, 37.3597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7705, 37.3663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7757, 37.3755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7801, 37.3893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7847, 37.3975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7872, 37.4046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.789, 37.4102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7921, 37.4161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.796, 37.4214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8008, 37.4295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8053, 37.4366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8104, 37.4415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8157, 37.4509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8204, 37.4567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8261, 37.4658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8307, 37.4719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8396, 37.4831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8507, 37.4951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8574, 37.4993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8687, 37.5068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.875, 37.5101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8856, 37.5208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8918, 37.5267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9011, 37.5343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9126, 37.5463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9236, 37.5555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9368, 37.5662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9459, 37.5728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9521, 37.5786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9591, 37.5846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9652, 37.5907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9728, 37.5992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.978, 37.6038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9827, 37.6094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9901, 37.6178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9967, 37.6232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0035, 37.6274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0098, 37.6337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0166, 37.6412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0238, 37.6468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0335, 37.6517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0441, 37.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0507, 37.6679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.054, 37.674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0614, 37.6822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0665, 37.6877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0721, 37.6939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0775, 37.6989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0833, 37.7074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0879, 37.7126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.096, 37.7197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1016, 37.7256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1109, 37.7319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1205, 37.7391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1289, 37.7457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1398, 37.7539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.145, 37.7575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1521, 37.7634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.158, 37.7676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1638, 37.7737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1781, 37.7836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1924, 37.7934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.196, 37.7991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1995, 37.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2036, 37.8151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2084, 37.8239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2125, 37.8323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2177, 37.8406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2232, 37.8487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2304, 37.8545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2403, 37.8629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2493, 37.8715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2577, 37.8808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2672, 37.8902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2727, 37.901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.284, 37.9106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2899, 37.9216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2959, 37.9302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3017, 37.9427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3139, 37.9556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3241, 37.964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3287, 37.9738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3376, 37.9837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3425, 37.9926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3484, 38.0008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3544, 38.0094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3649, 38.0184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3749, 38.0289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3876, 38.0396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3988, 38.0474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4064, 38.0554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.415, 38.0624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4232, 38.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4324, 38.0822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4406, 38.0888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.45, 38.0961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4596, 38.1044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4667, 38.1105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4713, 38.1145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4764, 38.1188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4818, 38.1231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4869, 38.1284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4908, 38.1332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4969, 38.1414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5006, 38.1482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.503, 38.1538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5063, 38.1592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.514, 38.1733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5188, 38.1822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.522, 38.1891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5229, 38.1931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5287, 38.1956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5397, 38.2073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5519, 38.2201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5577, 38.225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5645, 38.2342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5675, 38.2385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5707, 38.2425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5748, 38.2471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5794, 38.2526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5904, 38.2698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5922, 38.2781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6059, 38.2843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6128, 38.2907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6198, 38.2957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6291, 38.3046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6331, 38.3093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6407, 38.3129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6556, 38.3185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.664, 38.3225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6673, 38.3229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6766, 38.3271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6921, 38.2496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6765, 38.3254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6828, 38.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6786, 38.3341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6718, 38.3406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6743, 38.3483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6834, 38.3498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6878, 38.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6846, 38.3574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6883, 38.3657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6986, 38.3679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7218, 38.3889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7325, 38.3943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.747, 38.3996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.76, 38.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7715, 38.4163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.78, 38.4257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7901, 38.4369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7911, 38.4438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7935, 38.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8006, 38.4633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8018, 38.4715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8087, 38.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8209, 38.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8259, 38.4793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8322, 38.4849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8379, 38.4892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8431, 38.493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8501, 38.5009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8596, 38.512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.865, 38.5181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8701, 38.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.876, 38.5292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.873, 38.5359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8751, 38.5445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8762, 38.5475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8802, 38.5482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8877, 38.5495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8851, 38.5556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8785, 38.5604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8854, 38.5675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8981, 38.5721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9089, 38.5823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.929, 38.5897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9455, 38.6034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9596, 38.6141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9687, 38.6193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9747, 38.6195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9827, 38.6229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9882, 38.6242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9944, 38.6258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.008, 38.6274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0235, 38.6317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0283, 38.6333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0321, 38.6338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0362, 38.6347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.041, 38.6365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0457, 38.6368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0496, 38.6384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0626, 38.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0664, 38.6402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0732, 38.6406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0798, 38.6402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0844, 38.6397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0967, 38.6402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1159, 38.6485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1203, 38.6398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1263, 38.6406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1393, 38.6428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1445, 38.6432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1554, 38.6448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1614, 38.6474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1754, 38.6491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1761, 38.6475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1815, 38.6482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1854, 38.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1898, 38.6426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1913, 38.6384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1944, 38.6351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1952, 38.6356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1958, 38.6357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.195, 38.6343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1998, 38.6353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2015, 38.6359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2007, 38.6315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2017, 38.6293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2082, 38.6267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.21, 38.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2079, 38.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2089, 38.6283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2103, 38.6308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2211, 38.6259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.219, 38.6199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.225, 38.6232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.228, 38.6236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2264, 38.6228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2313, 38.6214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2314, 38.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.23, 38.6256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2301, 38.6265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2269, 38.6235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2202, 38.6252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2229, 38.6304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2297, 38.6313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2354, 38.6279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2425, 38.6221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2546, 38.6196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2652, 38.6224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2753, 38.6245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.285, 38.6246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2958, 38.6255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3152, 38.6252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3219, 38.6249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3438, 38.6297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3565, 38.6333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3647, 38.6344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3793, 38.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3933, 38.6427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3963, 38.6443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4006, 38.6471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.412, 38.6527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4329, 38.6624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4403, 38.6653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4395, 38.6648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4437, 38.6626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4458, 38.6602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4511, 38.6582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4547, 38.6614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4625, 38.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4734, 38.6625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4835, 38.6702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4958, 38.6768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5024, 38.6797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5155, 38.6794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5292, 38.6781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5318, 38.6784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5419, 38.6758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5447, 38.6738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5498, 38.6791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5592, 38.6777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5696, 38.6764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5653, 38.6739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.56, 38.6811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5621, 38.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5732, 38.6931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5807, 38.6987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5866, 38.7041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5958, 38.7111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5992, 38.7159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6015, 38.7194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6113, 38.7327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6156, 38.7371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6243, 38.7439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6331, 38.7535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6461, 38.7649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6505, 38.7701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6561, 38.7747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6612, 38.7781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6675, 38.7864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6719, 38.7895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6759, 38.7927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6813, 38.7977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6859, 38.8022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6893, 38.8057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6911, 38.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.694, 38.8141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6983, 38.8216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7002, 38.8255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7025, 38.8292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.704, 38.8329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7056, 38.8362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7083, 38.8401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7102, 38.8444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7114, 38.8467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7129, 38.8508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7146, 38.8568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7162, 38.8601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7175, 38.8632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7198, 38.8657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.721, 38.8675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7226, 38.8699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7239, 38.8748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7241, 38.8774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7253, 38.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7265, 38.8839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.727, 38.8879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7268, 38.8915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7292, 38.8945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7304, 38.8992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7337, 38.9019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7368, 38.9059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7412, 38.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7477, 38.9125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7519, 38.9174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7579, 38.9242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7618, 38.9265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7684, 38.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7739, 38.9315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7803, 38.9366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7859, 38.9394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7906, 38.9423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7945, 38.9438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.803, 38.9472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8039, 38.9504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8088, 38.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8137, 38.9536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.817, 38.9559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8236, 38.9586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8303, 38.9623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8396, 38.9717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8428, 38.976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8469, 38.979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8513, 38.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8614, 38.9918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8684, 39.0016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8722, 39.0038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8756, 39.0065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8924, 39.0179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9054, 39.0258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9089, 39.0301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9132, 39.0324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9163, 39.0388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9197, 39.0459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9232, 39.0493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.926, 39.0532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9301, 39.0572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9333, 39.0622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9408, 39.0729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9487, 39.0828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9506, 39.0875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9521, 39.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9586, 39.1112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9573, 39.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9564, 39.1257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9573, 39.1329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9578, 39.1373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9574, 39.1424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9552, 39.1506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9545, 39.1628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9549, 39.1676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9541, 39.1724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9538, 39.1772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9512, 39.1853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9487, 39.1919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.947, 39.1971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9465, 39.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9466, 39.2093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.946, 39.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9448, 39.2244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9436, 39.2321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9452, 39.2374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9449, 39.2446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9469, 39.2511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9499, 39.2631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9465, 39.2669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9413, 39.2715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9346, 39.2769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9342, 39.286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9357, 39.2943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9352, 39.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9318, 39.3223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9291, 39.3321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9259, 39.3454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9273, 39.3508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9272, 39.3568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9238, 39.3638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9172, 39.3778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9166, 39.3867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9144, 39.3937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9155, 39.3992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9165, 39.4054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.9058, 39.4188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.899, 39.4297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8932, 39.4401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8937, 39.4493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8904, 39.4552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8857, 39.4613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8834, 39.4713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8806, 39.4776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8788, 39.4836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8744, 39.4998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8711, 39.5075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8657, 39.5183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8633, 39.5263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8602, 39.5378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8589, 39.5426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8552, 39.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8534, 39.5549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8527, 39.5594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8504, 39.5664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8504, 39.5769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8496, 39.5865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8508, 39.5981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8484, 39.6071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8483, 39.6131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8405, 39.6242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.853, 39.6288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8584, 39.6347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8546, 39.6419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8521, 39.6531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8541, 39.6604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8548, 39.6671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8553, 39.6731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8571, 39.6782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8576, 39.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8566, 39.6895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8608, 39.7045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8602, 39.7093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8628, 39.7182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8614, 39.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8623, 39.7351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8637, 39.7405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8639, 39.7489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8651, 39.7573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8666, 39.7616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8658, 39.7725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8656, 39.7855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8695, 39.7947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8721, 39.8055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8776, 39.8203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8775, 39.8295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8787, 39.8386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8773, 39.8453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8764, 39.8526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8748, 39.8585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8731, 39.8637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8724, 39.8684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8705, 39.8765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.87, 39.8825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8716, 39.8875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8732, 39.8967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8735, 39.9001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8702, 39.9063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.87, 39.9151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8704, 39.9186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8695, 39.9244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8675, 39.9306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8658, 39.9371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8656, 39.9515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8676, 39.9666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8664, 39.9746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8664, 39.9809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8674, 39.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8673, 39.997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8666, 40.0037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8673, 40.0115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8674, 40.0191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8696, 40.0261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8687, 40.0316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8679, 40.0372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8667, 40.0419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8656, 40.0469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8636, 40.0515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8637, 40.0585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8635, 40.0658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8679, 40.0859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8683, 40.0936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8685, 40.0998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8693, 40.1068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8664, 40.1144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8669, 40.1203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8667, 40.1281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8653, 40.1359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.864, 40.1462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8647, 40.1553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8641, 40.1823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8641, 40.1987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8626, 40.2057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8611, 40.2141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8593, 40.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8573, 40.2291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8545, 40.2405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8505, 40.2576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8483, 40.265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8417, 40.2753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.837, 40.2832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8306, 40.2924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8243, 40.3029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8174, 40.3117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.8108, 40.3197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7982, 40.3351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7904, 40.3425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7813, 40.3502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7755, 40.3577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.762, 40.3631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7497, 40.3671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7418, 40.3669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7295, 40.3711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7151, 40.3729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7042, 40.3776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.695, 40.3797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6864, 40.3803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6691, 40.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6572, 40.3853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6446, 40.3921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6329, 40.3976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.623, 40.4033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6152, 40.4157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.606, 40.4233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5984, 40.426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5923, 40.4289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5967, 40.4378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5945, 40.445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.593, 40.4442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.592, 40.4432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5916, 40.4429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5939, 40.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5925, 40.4463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5878, 40.4425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5865, 40.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5843, 40.4416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5821, 40.4447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5897, 40.4461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5893, 40.4482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5917, 40.4456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5879, 40.4429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.59, 40.4336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5913, 40.4241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5866, 40.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5771, 40.4138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5664, 40.4139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5588, 40.4132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5527, 40.4135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5529, 40.4126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5544, 40.4102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5509, 40.4134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.553, 40.4122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5467, 40.4121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.548, 40.4056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5462, 40.3993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5373, 40.3997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5405, 40.3992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5445, 40.4035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5455, 40.4055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5474, 40.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5449, 40.4164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5481, 40.4197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5472, 40.4217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5446, 40.4221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5459, 40.4228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5397, 40.4175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5396, 40.414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.536, 40.4097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5334, 40.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5301, 40.404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5287, 40.4044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5248, 40.4046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5212, 40.4056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5229, 40.4015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5212, 40.3954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5173, 40.3922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5168, 40.3837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.515, 40.3856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5119, 40.3915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5118, 40.3929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5175, 40.4011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5219, 40.4053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5246, 40.4129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5258, 40.4195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5272, 40.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5296, 40.4256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.526, 40.428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5235, 40.4309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5226, 40.4334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5212, 40.4359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5263, 40.442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5308, 40.4399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5332, 40.4381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5336, 40.4344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.533, 40.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5353, 40.4376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5376, 40.4429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5387, 40.4448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5406, 40.4476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5425, 40.4486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.545, 40.4488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5481, 40.4473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5475, 40.4489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5455, 40.45 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5421, 40.4511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5403, 40.4449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5406, 40.4416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5413, 40.4388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5399, 40.4341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5404, 40.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5419, 40.4263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5366, 40.4248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5294, 40.4241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5342, 40.4192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.533, 40.4185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5322, 40.4139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5353, 40.4092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5331, 40.4042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5272, 40.3948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5263, 40.3921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5307, 40.3908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5319, 40.3895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5356, 40.3879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5371, 40.3883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5342, 40.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5313, 40.3895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5291, 40.3924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5333, 40.3943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5349, 40.3948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5371, 40.3958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5391, 40.3959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5408, 40.3951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5379, 40.3951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5363, 40.3945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.533, 40.3957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5332, 40.3934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5338, 40.3943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5396, 40.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5435, 40.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5415, 40.3955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.54, 40.3964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5399, 40.3969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5428, 40.3961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5506, 40.3988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.557, 40.4029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5593, 40.4026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5523, 40.4001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5465, 40.3969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5373, 40.3948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5339, 40.3937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5309, 40.391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5318, 40.3897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5208, 40.3904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5174, 40.3892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5108, 40.3877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5023, 40.3894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4921, 40.3921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4938, 40.3907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4888, 40.3831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4807, 40.3796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4723, 40.3733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4611, 40.3706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4512, 40.3658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4414, 40.3666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4334, 40.3644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4343, 40.3593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4401, 40.3589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4467, 40.3652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4517, 40.3698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4561, 40.3744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4619, 40.3825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4672, 40.3899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4727, 40.3969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4814, 40.4019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4939, 40.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5122, 40.4192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5289, 40.4202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5422, 40.4176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5493, 40.4107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5554, 40.4062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5632, 40.4042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5811, 40.4116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5846, 40.4135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5858, 40.4163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5842, 40.4162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5821, 40.4169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5822, 40.4154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5842, 40.4091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5924, 40.3886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5953, 40.3782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.596, 40.3688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5873, 40.3636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5786, 40.3577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5676, 40.3504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5605, 40.3434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5504, 40.3365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5405, 40.3268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5334, 40.3202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5337, 40.3138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.528, 40.3093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5247, 40.3033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5218, 40.2982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5188, 40.2918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5164, 40.2873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5133, 40.283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.51, 40.2793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5072, 40.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5009, 40.2688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4992, 40.2656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4973, 40.2626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4922, 40.2592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4854, 40.2559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4821, 40.2528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4797, 40.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4787, 40.2471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4767, 40.2439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4746, 40.2425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4721, 40.2398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.467, 40.2385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4659, 40.2293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4606, 40.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4562, 40.214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4502, 40.2098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4445, 40.2068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4397, 40.2025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.435, 40.2002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4286, 40.191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4261, 40.1886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.419, 40.1871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4173, 40.1893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4099, 40.1958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4034, 40.2014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4034, 40.2223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3986, 40.2102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.396, 40.2131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3897, 40.2195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3835, 40.2231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3831, 40.2284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3842, 40.2335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.395, 40.2327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3972, 40.2222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3958, 40.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3941, 40.2139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3928, 40.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.392, 40.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3904, 40.2035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3884, 40.2018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3863, 40.1987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3847, 40.1972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.382, 40.1955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3784, 40.1944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.376, 40.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3742, 40.1914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3691, 40.1861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.368, 40.1821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3662, 40.1793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3634, 40.1758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3572, 40.1702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3525, 40.1647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3441, 40.158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3389, 40.1556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3345, 40.1525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3274, 40.1494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.323, 40.1464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3184, 40.1432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3136, 40.139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3085, 40.1353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3049, 40.1315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3011, 40.1257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2934, 40.1168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2847, 40.1069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2805, 40.1021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2765, 40.0973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2737, 40.0919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2682, 40.0872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2632, 40.0827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2587, 40.0782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.253, 40.0738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2483, 40.0695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2427, 40.0674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2366, 40.0656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2307, 40.0636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2251, 40.0601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2195, 40.0538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2142, 40.0511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2085, 40.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2027, 40.0448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1954, 40.0412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1898, 40.0381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.184, 40.0352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.179, 40.0311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1743, 40.0244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1648, 40.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1601, 40.0095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1545, 40.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1491, 40.0018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.149, 39.9958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1432, 39.9913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1383, 39.9871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1364, 39.9826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1322, 39.9779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1286, 39.9734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1114, 39.9571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1069, 39.9508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1013, 39.9452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.097, 39.9389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0947, 39.9318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0928, 39.9261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0899, 39.9193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0858, 39.9141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0821, 39.9077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0812, 39.9028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0704, 39.9015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0801, 39.8907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0789, 39.8846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0788, 39.8773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0762, 39.8701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0726, 39.8633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0703, 39.8571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0688, 39.8495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0667, 39.8417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0656, 39.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0632, 39.8275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0632, 39.8202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0565, 39.8064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0559, 39.7962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0519, 39.7889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0506, 39.7816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0519, 39.7754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0543, 39.7678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0545, 39.7606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0555, 39.7518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0571, 39.7451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0553, 39.7358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0541, 39.7282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.055, 39.7197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0556, 39.7082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0547, 39.6976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0529, 39.6898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0528, 39.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0545, 39.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.051, 39.6585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0497, 39.6492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0483, 39.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0475, 39.6346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0449, 39.6273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.047, 39.6112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0477, 39.6038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0432, 39.5952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0407, 39.5876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0409, 39.5801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0396, 39.5743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0342, 39.5602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0235, 39.5456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5948, 34.0271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2097, 34.0176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.29, 33.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2428, 34.0634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1395, 34.0658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1394, 34.0616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1429, 34.0545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1435, 34.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1453, 34.0502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1436, 34.0531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1455, 34.0564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1451, 34.0591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1434, 34.0531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1399, 34.0585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1395, 34.0602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1401, 34.0622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1413, 34.0617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1416, 34.0663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1389, 34.0656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.134, 34.0623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1344, 34.0682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1391, 34.0699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1385, 34.0661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.142, 34.0602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1392, 34.0609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1425, 34.0608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1383, 34.0606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1376, 34.0629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1368, 34.0626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1346, 34.0632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1353, 34.0645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1351, 34.0651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1347, 34.0638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1381, 34.0648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1403, 34.0654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1419, 34.0671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1429, 34.0686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.145, 34.0704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1443, 34.0727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1448, 34.0743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.146, 34.0758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1474, 34.0775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1465, 34.0779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1481, 34.0803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1455, 34.0783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1467, 34.0817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1487, 34.0834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1465, 34.0842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1485, 34.0872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1511, 34.0879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1454, 34.0856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1427, 34.0861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1434, 34.0842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1459, 34.0867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1514, 34.0872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1532, 34.0871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.154, 34.0875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1563, 34.0872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.157, 34.0863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1568, 34.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1573, 34.0846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1648, 34.0854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1676, 34.0865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1724, 34.0881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1747, 34.0912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.174, 34.0937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.174, 34.0895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.176, 34.0865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1791, 34.0871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1874, 34.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1845, 34.0853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1984, 34.0852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2015, 34.0841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2043, 34.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2067, 34.0826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2106, 34.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2155, 34.0843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2252, 34.0813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2239, 34.0784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2184, 34.0824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2126, 34.0846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2128, 34.0821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2069, 34.0839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2063, 34.0861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2077, 34.0862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2012, 34.0856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2038, 34.0816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2037, 34.0788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2031, 34.0785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2004, 34.0747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2021, 34.0709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1986, 34.0749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2041, 34.0787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.213, 34.0782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2226, 34.0772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2295, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2327, 34.0769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2347, 34.0768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2351, 34.0763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2383, 34.0781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2401, 34.0759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.24, 34.074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2413, 34.0733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2427, 34.0705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2438, 34.0703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2453, 34.0695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.245, 34.068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2432, 34.0685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2414, 34.0691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2397, 34.0675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2408, 34.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2405, 34.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2373, 34.0628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2356, 34.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2322, 34.0604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2295, 34.0589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2269, 34.0576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2299, 34.0605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.232, 34.0613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2333, 34.0622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2377, 34.0614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2404, 34.0635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2404, 34.0668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2447, 34.0684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2503, 34.0696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2503, 34.0719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2531, 34.0716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2551, 34.0724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.257, 34.0734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.259, 34.0743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2581, 34.0752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2564, 34.0756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2604, 34.0782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2606, 34.0789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2628, 34.0807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2664, 34.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2686, 34.0827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.271, 34.0852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2754, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.273, 34.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2683, 34.0833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2628, 34.0822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2622, 34.0755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2701, 34.0795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2799, 34.0902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2932, 34.0933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2972, 34.1011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2855, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2746, 34.0996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2694, 34.0946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2638, 34.0898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2601, 34.0837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.253, 34.0777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2436, 34.0779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2338, 34.0765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2256, 34.0745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.222, 34.0693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2189, 34.0642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2192, 34.0585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2157, 34.0543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2182, 34.0488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2132, 34.0563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2235, 34.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2263, 34.0589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2304, 34.0592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2286, 34.0604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2304, 34.0626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.229, 34.0604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2297, 34.0601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2304, 34.0603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2314, 34.0608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2334, 34.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2344, 34.0626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.231, 34.0602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2288, 34.0623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.234, 34.0681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2372, 34.0676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2343, 34.0604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2323, 34.0582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2307, 34.0572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2316, 34.0567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2318, 34.0566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2336, 34.0592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2338, 34.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2413, 34.0654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.242, 34.0687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2421, 34.0689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2418, 34.064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2422, 34.0633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.242, 34.0621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2397, 34.0615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2421, 34.0632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2435, 34.0626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2462, 34.0622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2465, 34.0621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2481, 34.0652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2481, 34.0608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2432, 34.0612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2422, 34.0634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2471, 34.0678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2491, 34.0697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2479, 34.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2561, 34.0751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2559, 34.0767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.256, 34.0795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2593, 34.0806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2597, 34.0773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.258, 34.0757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2616, 34.0737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2672, 34.0701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2659, 34.0677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2655, 34.0661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2693, 34.0676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2739, 34.0704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2771, 34.0716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2804, 34.0727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2825, 34.0747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2822, 34.0777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2787, 34.0799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2756, 34.0804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2719, 34.0821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2697, 34.0855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2695, 34.0892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2728, 34.0942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2804, 34.1002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2847, 34.1028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2899, 34.1054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2947, 34.1059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3001, 34.1056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3134, 34.1044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3159, 34.1023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3121, 34.0999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3087, 34.0965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3065, 34.0952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3038, 34.0934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3014, 34.0922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3004, 34.0905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3069, 34.0881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3097, 34.0845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3056, 34.0817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3002, 34.0868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2998, 34.0934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3019, 34.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2981, 34.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3011, 34.0929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2992, 34.0914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2926, 34.0892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.285, 34.0862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.28, 34.0834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2726, 34.0813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2704, 34.0764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2716, 34.0806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2711, 34.0841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2807, 34.0832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2845, 34.0833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2863, 34.0859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2945, 34.0859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.301, 34.09 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3067, 34.0899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3125, 34.093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3146, 34.0969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3181, 34.0982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3186, 34.1002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3196, 34.1047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3314, 34.1032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3263, 34.0963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3187, 34.0972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3116, 34.0947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3079, 34.0904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2981, 34.0915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2859, 34.0851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2724, 34.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2623, 34.0842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2504, 34.0812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2474, 34.0752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2523, 34.0745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2539, 34.0727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2565, 34.0733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2542, 34.0725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2495, 34.0737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2501, 34.0734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2446, 34.0767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2497, 34.0777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2546, 34.0761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2568, 34.0736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2457, 34.0721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2343, 34.0801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2315, 34.0813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2311, 34.0818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2312, 34.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2298, 34.0864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2333, 34.0845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2338, 34.0845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.229, 34.0855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2308, 34.0787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2291, 34.0755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2273, 34.0731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2297, 34.0747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.232, 34.0761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2334, 34.0747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2276, 34.0747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2313, 34.0795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2366, 34.0784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2403, 34.0755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2409, 34.0706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2364, 34.0691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2371, 34.0721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2328, 34.0668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2295, 34.0701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2303, 34.0792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2275, 34.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2258, 34.0803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2248, 34.0814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2255, 34.0805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2229, 34.0828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2256, 34.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.219, 34.0781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2177, 34.083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2186, 34.0847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.213, 34.0812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2084, 34.0748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2038, 34.0708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1987, 34.0672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1918, 34.0608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1833, 34.0559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1776, 34.0557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1747, 34.0565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1725, 34.0602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1705, 34.0591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1718, 34.0564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1716, 34.0564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.174, 34.0567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1763, 34.0565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1763, 34.0536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1703, 34.0563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1727, 34.0604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.174, 34.0631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1718, 34.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1659, 34.0595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.159, 34.0536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1533, 34.0503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1394, 34.0463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1311, 34.0442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1266, 34.0423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1217, 34.0411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1168, 34.0399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1119, 34.0395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1075, 34.0403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1072, 34.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1091, 34.0462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1111, 34.0478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1158, 34.0521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1185, 34.0534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1215, 34.0555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1244, 34.0569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1282, 34.0584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.131, 34.0588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1338, 34.0593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1368, 34.0599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1404, 34.0609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1449, 34.0605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1494, 34.0606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1537, 34.0614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1571, 34.0625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1605, 34.063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1635, 34.0636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1678, 34.0642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1724, 34.0628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1775, 34.0616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1841, 34.0599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1874, 34.0573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1913, 34.0592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1951, 34.0649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2006, 34.0681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2039, 34.0669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2077, 34.0649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2117, 34.0612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2113, 34.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2076, 34.0602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2127, 34.0568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2181, 34.0536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2176, 34.0523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2129, 34.0516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2097, 34.0516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.208, 34.0557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2054, 34.0588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2039, 34.0617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2004, 34.0633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.202, 34.0683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2048, 34.0604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2036, 34.0557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2076, 34.0488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2129, 34.0508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.222, 34.0512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2273, 34.0562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2366, 34.0603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2365, 34.0681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2347, 34.0692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2316, 34.0691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2293, 34.0622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2236, 34.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2271, 34.0521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2203, 34.0513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2132, 34.0485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2049, 34.0503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1977, 34.0485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1894, 34.0431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1963, 34.0462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2033, 34.0462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2096, 34.0465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2149, 34.0479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2187, 34.0498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2285, 34.0535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2337, 34.0551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2403, 34.0554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2411, 34.0608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2308, 34.0578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2199, 34.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2065, 34.0425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1955, 34.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1845, 34.0427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1741, 34.0428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1624, 34.0428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1444, 34.0393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1296, 34.0389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1249, 34.0351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1178, 34.0328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1107, 34.0304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1076, 34.0271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0978, 34.0286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0848, 34.0309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0732, 34.0324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0567, 34.0304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0456, 34.0262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0387, 34.0214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0265, 34.0261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0185, 34.0303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0141, 34.036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0143, 34.0381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0133, 34.0363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0154, 34.0358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0107, 34.0331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0105, 34.0294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0132, 34.0289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0105, 34.0265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9981, 34.0144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9971, 34.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9993, 34.0159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0063, 34.0156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0118, 34.0174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0115, 34.0176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.016, 34.0224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0119, 34.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0051, 34.0172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9966, 34.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9929, 34.0142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9844, 34.0125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9735, 34.0086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.962, 34.0047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9558, 34.0033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.949, 34.0014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9306, 33.9965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9229, 33.9948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9151, 33.9937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9062, 33.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8952, 33.9882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8859, 33.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8685, 33.9813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8594, 33.9785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8504, 33.9759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.84, 33.9729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8151, 33.9655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8028, 33.9618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7897, 33.9589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7819, 33.9571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7703, 33.9539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7621, 33.9518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7483, 33.9495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.733, 33.9469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7247, 33.9459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7161, 33.9451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7034, 33.9433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.694, 33.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6854, 33.9405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6748, 33.9392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6637, 33.9377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6516, 33.9364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6378, 33.9337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6289, 33.932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6053, 33.9287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5955, 33.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5825, 33.9281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5694, 33.9263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5616, 33.9235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5513, 33.9197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5429, 33.9145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5321, 33.9077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5239, 33.9025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.515, 33.8943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5068, 33.8857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5055, 33.8809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4995, 33.8723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4939, 33.8646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.489, 33.8592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4838, 33.8519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4796, 33.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4729, 33.8375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4694, 33.8314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4657, 33.8251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4596, 33.8148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4555, 33.8087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4503, 33.8003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4473, 33.7929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4453, 33.7862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4468, 33.7785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.45, 33.7716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4527, 33.7646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4552, 33.7583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4593, 33.7481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.456, 33.7413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4504, 33.7332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4446, 33.7272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4361, 33.7187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4307, 33.7141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4217, 33.7076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4135, 33.7023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4074, 33.6982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3994, 33.6921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3923, 33.6874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3858, 33.6826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3789, 33.6775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3731, 33.673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3674, 33.6689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3555, 33.6627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.344, 33.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3305, 33.6508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3219, 33.645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3124, 33.6422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3025, 33.6465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.303, 33.6525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2995, 33.6545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2914, 33.6526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2852, 33.6532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2812, 33.6512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2773, 33.6504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2753, 33.6485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2795, 33.6437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.271, 33.6387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2664, 33.6367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2631, 33.6369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2677, 33.6309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2629, 33.6287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2616, 33.6376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2672, 33.6431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2709, 33.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2783, 33.6505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2842, 33.6532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2912, 33.6495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2905, 33.6461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2899, 33.6442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2871, 33.6414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2862, 33.6344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2848, 33.6279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2829, 33.6235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2812, 33.6157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2779, 33.6112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2726, 33.6182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2731, 33.6286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2663, 33.6327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2624, 33.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2644, 33.6345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2637, 33.6337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2622, 33.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2643, 33.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2666, 33.6372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2683, 33.6398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2698, 33.6409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2704, 33.6408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2723, 33.6451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2747, 33.6466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.276, 33.6509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2746, 33.6455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2735, 33.6422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2734, 33.6417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2718, 33.6412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2696, 33.6397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2699, 33.6392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2707, 33.6417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2686, 33.6395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.267, 33.6388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2701, 33.6411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2746, 33.6437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2746, 33.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2757, 33.6438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2742, 33.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2763, 33.6469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2775, 33.6488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2785, 33.6493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2801, 33.6492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2814, 33.6493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2812, 33.6502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2807, 33.6503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2791, 33.6496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2866, 33.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2839, 33.6486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2794, 33.6468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2801, 33.6448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2781, 33.6474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2812, 33.6492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2821, 33.6489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2845, 33.6526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.287, 33.6506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2897, 33.6486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2916, 33.6457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2901, 33.6431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2878, 33.6405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.285, 33.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2827, 33.6375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2804, 33.6367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2753, 33.6389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2746, 33.6432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2757, 33.6462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.277, 33.6488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2788, 33.6513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2826, 33.6527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2877, 33.6533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2909, 33.6552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2928, 33.6578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2959, 33.6599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2999, 33.6625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3021, 33.6617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3014, 33.6612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3001, 33.6616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3001, 33.6656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2986, 33.6648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2973, 33.6641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2963, 33.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.294, 33.6603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2913, 33.6576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2887, 33.6571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2896, 33.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2879, 33.6548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2858, 33.6535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2798, 33.6522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.275, 33.6503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2687, 33.6487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2695, 33.6512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2712, 33.655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2732, 33.6575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2762, 33.6612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2778, 33.6633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2806, 33.6619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2838, 33.6616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2873, 33.6608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2899, 33.6601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2931, 33.6623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.298, 33.6633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2955, 33.6622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2934, 33.6601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2951, 33.6575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2959, 33.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2978, 33.6615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3004, 33.6597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.303, 33.6608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3047, 33.659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3038, 33.6584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3057, 33.6565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3027, 33.6549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3033, 33.6543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3031, 33.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3068, 33.6534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.307, 33.6494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3028, 33.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3023, 33.6559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3, 33.6559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2997, 33.6581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2951, 33.6556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3026, 33.6543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3043, 33.6605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3021, 33.6618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3174, 33.6615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3201, 33.6541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.313, 33.6546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3063, 33.6523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3057, 33.6504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3109, 33.6489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3047, 33.6455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3006, 33.6433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2986, 33.6442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3027, 33.6474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2996, 33.6514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2963, 33.6583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2917, 33.6572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2865, 33.6516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2782, 33.6458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2718, 33.6408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2705, 33.6403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2646, 33.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.268, 33.6402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.273, 33.6436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2774, 33.6377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2722, 33.6386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2705, 33.6452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2794, 33.6514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2809, 33.6531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2808, 33.6617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2915, 33.6614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3015, 33.6609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3056, 33.6639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3087, 33.6696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3139, 33.6708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3168, 33.6783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3191, 33.6818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3286, 33.6877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3319, 33.6901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3349, 33.6916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3411, 33.6932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3467, 33.6925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.353, 33.6919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3511, 33.7005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3453, 33.6945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3438, 33.6883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3404, 33.6802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3317, 33.6808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3231, 33.6832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3174, 33.6828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3114, 33.6717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3096, 33.6672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3117, 33.6667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3144, 33.6682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3161, 33.6673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3114, 33.6657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3064, 33.6646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3035, 33.663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2999, 33.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2981, 33.6599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2964, 33.6585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2942, 33.6596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2933, 33.6575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2922, 33.6545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2904, 33.6558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2853, 33.6537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2932, 33.6543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2903, 33.6508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2838, 33.6473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2828, 33.6491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2786, 33.644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2741, 33.6419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.27, 33.6386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2689, 33.6425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2671, 33.6388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2629, 33.6399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2681, 33.6423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2606, 33.6341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.256, 33.6309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2543, 33.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2585, 33.6263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2625, 33.6256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2525, 33.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2466, 33.6225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2399, 33.6211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.235, 33.6174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.231, 33.6133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.227, 33.6087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2254, 33.5995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2182, 33.6015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2161, 33.5989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1986, 33.5904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1996, 33.5853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1928, 33.5803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1799, 33.5719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.179, 33.5669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1742, 33.5621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1617, 33.5576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1541, 33.5527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1445, 33.5487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1367, 33.5444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1266, 33.5403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1143, 33.5367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1049, 33.5338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0977, 33.5306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.092, 33.5284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0862, 33.5255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0809, 33.5217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0738, 33.5173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0664, 33.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0606, 33.5119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0542, 33.5092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0476, 33.5067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.04, 33.5042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0319, 33.5023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.023, 33.4995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.012, 33.4967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0022, 33.4953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9942, 33.4948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9838, 33.4941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9756, 33.4938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9668, 33.4935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9559, 33.4926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9472, 33.4924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9407, 33.4922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9319, 33.4925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9309, 33.4947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9285, 33.494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9252, 33.4929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9173, 33.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9121, 33.4923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9095, 33.4944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9072, 33.5014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9046, 33.5032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9045, 33.4964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9086, 33.4986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9096, 33.4937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9014, 33.492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8942, 33.4984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8957, 33.5033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9054, 33.5077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9122, 33.5028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9131, 33.4967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9066, 33.4887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8948, 33.4863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8873, 33.486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8779, 33.4874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8708, 33.4903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.87, 33.4943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8709, 33.4973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8741, 33.5003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8721, 33.5029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8662, 33.506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.861, 33.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8588, 33.5123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8509, 33.5194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8496, 33.5217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8528, 33.5229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8504, 33.5246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8488, 33.5237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8488, 33.5261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8527, 33.5284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8545, 33.5316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8598, 33.5345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8601, 33.5357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8606, 33.5371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8603, 33.5377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8611, 33.5392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8653, 33.5406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.869, 33.5419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8739, 33.542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.877, 33.5423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8782, 33.5445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8795, 33.5458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8841, 33.548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8884, 33.5491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8919, 33.5509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8992, 33.5497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9032, 33.5488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9088, 33.5514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9136, 33.5506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9155, 33.5521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9179, 33.5546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9192, 33.5566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.916, 33.5604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9103, 33.5605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.894, 33.5531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8867, 33.5466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8773, 33.5493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8715, 33.551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8821, 33.5521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8943, 33.5541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9028, 33.5517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9166, 33.5515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9359, 33.5557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9439, 33.5578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9515, 33.5565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9498, 33.5574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9544, 33.5595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9591, 33.5573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9609, 33.5544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9588, 33.5539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9617, 33.5537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9685, 33.5524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9688, 33.5439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9617, 33.5427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9519, 33.5486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9495, 33.5514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9419, 33.547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9381, 33.5463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9334, 33.5512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9259, 33.5561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9254, 33.5577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9241, 33.5643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9282, 33.5699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9281, 33.5711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9266, 33.5727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9279, 33.5733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9317, 33.5705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9276, 33.5704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9276, 33.5734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9345, 33.5722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9402, 33.5687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.933, 33.5707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9217, 33.5667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9127, 33.5643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.906, 33.5602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8991, 33.5559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8902, 33.5516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8843, 33.5468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8786, 33.5454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8711, 33.5429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8641, 33.538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8599, 33.5322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8581, 33.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8572, 33.5239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8555, 33.5195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8534, 33.5135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8505, 33.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8457, 33.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8424, 33.4971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.841, 33.4934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.839, 33.4901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8361, 33.4868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8308, 33.4809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8279, 33.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8256, 33.4736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8225, 33.4697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8202, 33.4661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8144, 33.4619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8101, 33.4578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8062, 33.4541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8009, 33.4501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7938, 33.4438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7888, 33.4402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7856, 33.4383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7833, 33.4358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.78, 33.4302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7727, 33.424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7696, 33.4206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.764, 33.4136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7608, 33.409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7577, 33.4062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7541, 33.4036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7491, 33.3923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7469, 33.388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.745, 33.3831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7431, 33.3779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7397, 33.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7363, 33.3682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7326, 33.3632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7288, 33.3575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7237, 33.3472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7193, 33.3405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7152, 33.3363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.711, 33.3321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7028, 33.3239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6855, 33.3071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.678, 33.3028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6705, 33.2956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6647, 33.2891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6573, 33.2823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6525, 33.2786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6444, 33.2717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6384, 33.2674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.629, 33.2597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6223, 33.2567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6157, 33.2567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6068, 33.2534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5965, 33.2501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5811, 33.2422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5668, 33.2363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5558, 33.2335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5402, 33.2261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5295, 33.2226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5221, 33.2199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5145, 33.2142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5016, 33.204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4967, 33.1957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4937, 33.1877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4887, 33.1817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4822, 33.1732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4801, 33.1688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4738, 33.1633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.468, 33.1543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4643, 33.1494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.46, 33.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4541, 33.1332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4476, 33.1276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45, 33.1257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4478, 33.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4459, 33.1282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4434, 33.1297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.448, 33.1265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.451, 33.1258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4538, 33.1228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4585, 33.1252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4595, 33.1255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4467, 33.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4361, 33.1252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.424, 33.1215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4121, 33.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4034, 33.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3944, 33.0945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3877, 33.0871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3816, 33.0751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3734, 33.0604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3708, 33.0534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3691, 33.0524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3693, 33.0544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.375, 33.0541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3785, 33.0534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3702, 33.0524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3671, 33.0578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.373, 33.0603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3819, 33.0623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.384, 33.0663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3882, 33.0651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3939, 33.0654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3937, 33.0757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3999, 33.0795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4016, 33.0779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4008, 33.0732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3918, 33.0726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3805, 33.0702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.375, 33.0677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3732, 33.0658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3725, 33.0631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3668, 33.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.37, 33.0593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3694, 33.0586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3677, 33.0525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3674, 33.0518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.369, 33.0512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.366, 33.0532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3633, 33.0548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3672, 33.0496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3606, 33.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3603, 33.0493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3605, 33.0452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.356, 33.0462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3567, 33.0471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3563, 33.0455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3587, 33.0502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3541, 33.0478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3584, 33.0446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3611, 33.0445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3618, 33.0419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3642, 33.0429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3648, 33.0406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3648, 33.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3666, 33.0423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3643, 33.0412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3666, 33.0382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3714, 33.0363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3739, 33.0342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3764, 33.0324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3796, 33.0304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3827, 33.0314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3823, 33.0306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3792, 33.0297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3785, 33.0288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3778, 33.0277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3771, 33.0253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3778, 33.0248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3745, 33.0259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3717, 33.0277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3685, 33.0285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3673, 33.0297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3668, 33.0323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3708, 33.0328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3711, 33.0352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3693, 33.0371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3712, 33.0385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3746, 33.0405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3768, 33.0432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.379, 33.0446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3819, 33.0458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3793, 33.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3804, 33.0517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3832, 33.0545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3837, 33.0563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.38, 33.0548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3812, 33.0524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3796, 33.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3769, 33.0487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3754, 33.0482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3755, 33.047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3728, 33.0472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3691, 33.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3671, 33.0504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3654, 33.0491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3648, 33.0479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3656, 33.0467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3648, 33.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3657, 33.0446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3662, 33.0435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3683, 33.0422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3723, 33.0412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3748, 33.0407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3794, 33.0418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3827, 33.0411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3841, 33.0399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3811, 33.0389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3783, 33.0385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3748, 33.0379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3727, 33.0388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3701, 33.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3659, 33.0438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3643, 33.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3633, 33.049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3622, 33.0511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3626, 33.0531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3609, 33.0577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3628, 33.0592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3633, 33.0616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3639, 33.0642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3646, 33.0664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3671, 33.0679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3732, 33.0697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3803, 33.0699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3869, 33.0678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.394, 33.0686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3963, 33.0704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3947, 33.0741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3922, 33.0814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.39, 33.0863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3866, 33.0864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3822, 33.0833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3799, 33.0794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.379, 33.0711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3815, 33.066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.386, 33.0618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3881, 33.0568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.386, 33.0548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3757, 33.0531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3689, 33.053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.364, 33.0538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3636, 33.0509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3661, 33.051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3693, 33.0511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3693, 33.0471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3659, 33.0444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3644, 33.0413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3631, 33.0324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3659, 33.0271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3656, 33.0234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3669, 33.021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3683, 33.0194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3668, 33.015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3612, 33.0119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3573, 33.0078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3498, 33.0064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.349, 33.0031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3469, 32.9994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3434, 32.9954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3369, 32.9914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3292, 32.9867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3303, 32.9813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3331, 32.977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3363, 32.9702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3351, 32.9644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3399, 32.9592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3453, 32.9574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3491, 32.9538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3534, 32.9509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3504, 32.9469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3481, 32.9429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3513, 32.9423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3492, 32.9397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3485, 32.9375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3442, 32.9327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3434, 32.9322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3402, 32.9325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3375, 32.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3424, 32.9273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3472, 32.9286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3554, 32.9298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3607, 32.9277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3687, 32.9211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3682, 32.9145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3676, 32.9135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3656, 32.9066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3656, 32.8985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3643, 32.8942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3625, 32.8912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3622, 32.8885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3573, 32.8858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3508, 32.8866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.342, 32.8881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3461, 32.8824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.345, 32.8786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3444, 32.8725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3492, 32.8702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3499, 32.8698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3527, 32.8692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3533, 32.8689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3548, 32.8679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3564, 32.8664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3577, 32.8649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3519, 32.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3531, 32.8749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3564, 32.8759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3597, 32.8726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3636, 32.8734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3635, 32.8716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3604, 32.8728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3606, 32.8764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3585, 32.8778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3555, 32.8776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3548, 32.8844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3586, 32.8851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3591, 32.8853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3627, 32.8802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3605, 32.8785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3596, 32.8705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3575, 32.8721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3536, 32.8737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3552, 32.8713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3601, 32.87 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3648, 32.8672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3718, 32.8658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3748, 32.8676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3778, 32.8673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.372, 32.8711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3721, 32.8742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3678, 32.8776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3635, 32.8784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3609, 32.8766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3606, 32.8741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3606, 32.8706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3624, 32.8661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3639, 32.8625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3649, 32.8594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3659, 32.8561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3665, 32.8522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3662, 32.8487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3654, 32.8455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3647, 32.8429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.363, 32.8389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3632, 32.8357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3648, 32.8326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3659, 32.8296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3663, 32.8267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3672, 32.8234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3683, 32.82 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3695, 32.8166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3711, 32.8137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.373, 32.8113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3742, 32.8078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3746, 32.8048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3748, 32.8001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3754, 32.7961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3762, 32.793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3766, 32.7893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3769, 32.7853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3778, 32.7812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.379, 32.7761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3784, 32.7703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3778, 32.7554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3777, 32.7463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3778, 32.7414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3774, 32.7361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3772, 32.7294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3775, 32.7236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.378, 32.7148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3786, 32.7066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3795, 32.6988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3814, 32.6896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3799, 32.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3792, 32.6796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3777, 32.6744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3755, 32.6655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3717, 32.6599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3673, 32.6564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3614, 32.6529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3556, 32.6476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3502, 32.6448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3462, 32.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3428, 32.6318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3455, 32.6214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3462, 32.6166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3468, 32.6096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3496, 32.6004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3552, 32.5936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3602, 32.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3625, 32.5746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3656, 32.5658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3681, 32.5587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3757, 32.5513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3843, 32.5471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3915, 32.5457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3918, 32.5391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3908, 32.5338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3877, 32.5288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3773, 32.5296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3719, 32.524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3675, 32.5205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.364, 32.5152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3585, 32.5074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3564, 32.5007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3461, 32.4966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3384, 32.4948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3324, 32.4916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3269, 32.4889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3243, 32.4886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3141, 32.4859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3096, 32.4786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2999, 32.4744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2916, 32.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.285, 32.4701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2867, 32.4641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2888, 32.4605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2886, 32.4542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2885, 32.4505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2898, 32.4463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2954, 32.4517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3042, 32.4525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3097, 32.4507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3137, 32.446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.317, 32.4391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3208, 32.4336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3236, 32.4263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.321, 32.4201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3135, 32.4156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3081, 32.4102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2955, 32.3933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2874, 32.3871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2773, 32.3806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2678, 32.3734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2612, 32.3864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2615, 32.3958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2652, 32.4046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2689, 32.4104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2723, 32.4186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2773, 32.4265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2759, 32.4356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2735, 32.4447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2719, 32.4536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2698, 32.4606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.268, 32.4729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2692, 32.4843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.272, 32.4936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2763, 32.5039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2788, 32.5138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2815, 32.5202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.285, 32.5278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2887, 32.5358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2943, 32.5452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3016, 32.5556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3081, 32.5605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3272, 32.5748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3362, 32.5847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34, 32.5914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3435, 32.5951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3447, 32.5953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.346, 32.6006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3449, 32.6036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3491, 32.6102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3614, 32.6114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3657, 32.6194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3659, 32.6296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3661, 32.6399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3651, 32.6474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3629, 32.6523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3634, 32.6585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3611, 32.6612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3584, 32.6684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3596, 32.6801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3523, 32.6779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3509, 32.6769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3497, 32.6762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3478, 32.676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3474, 32.6743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3477, 32.6796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3482, 32.688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3482, 32.6936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3503, 32.6992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3534, 32.7093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3559, 32.7152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3583, 32.7213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3603, 32.7269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3628, 32.7336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3654, 32.7378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3684, 32.7429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3716, 32.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3742, 32.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3764, 32.7581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3802, 32.7613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3841, 32.765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.385, 32.7698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3842, 32.7751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3822, 32.7792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3822, 32.7835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3823, 32.7889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3826, 32.7922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3826, 32.7963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3827, 32.8002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3833, 32.8043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3832, 32.8093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3845, 32.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3844, 32.8177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3843, 32.8222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3838, 32.8257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3828, 32.8312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3819, 32.8378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3818, 32.8419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3813, 32.8462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3805, 32.8515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3801, 32.8563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3806, 32.8609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3806, 32.8642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3802, 32.8699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3824, 32.8836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3837, 32.8926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3838, 32.8971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3838, 32.9039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3844, 32.9112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3863, 32.9187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3865, 32.9294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3856, 32.935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3842, 32.9424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3827, 32.9483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3817, 32.9533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3808, 32.9597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3794, 32.9669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3787, 32.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3782, 32.9796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3741, 32.9922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3711, 33.0001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3689, 33.0062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3671, 33.0152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3652, 33.0227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3631, 33.0315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3603, 33.0408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3568, 33.0507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3572, 33.0569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3624, 33.0617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3716, 33.065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3758, 33.0719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3777, 33.0832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3818, 33.0881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3904, 33.0979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3995, 33.1037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4127, 33.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4213, 33.1199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4321, 33.1348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4402, 33.141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4424, 33.1472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4501, 33.1547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4622, 33.1591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4759, 33.1637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4822, 33.166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4946, 33.1715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5059, 33.1707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.509, 33.1814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5095, 33.195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5117, 33.2026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.518, 33.2128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5281, 33.2197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5434, 33.2302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5512, 33.2386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5592, 33.2476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.568, 33.2565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.575, 33.2622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5842, 33.2678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5958, 33.2745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.608, 33.2822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6215, 33.2918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6335, 33.2991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6388, 33.3 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6432, 33.2992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6451, 33.3021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6421, 33.3042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6447, 33.3073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6461, 33.3112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6463, 33.3167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6506, 33.3196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6545, 33.3198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6583, 33.3175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6617, 33.3198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6619, 33.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6655, 33.3279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6637, 33.3352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6615, 33.3375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6594, 33.3412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6613, 33.3461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6645, 33.3475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6701, 33.3498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6759, 33.3516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6767, 33.3566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6775, 33.3604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6776, 33.3626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6711, 33.3596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6697, 33.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.672, 33.3549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6806, 33.3554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6843, 33.357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6905, 33.3579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6961, 33.3604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7029, 33.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7073, 33.3632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7112, 33.3648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7234, 33.3696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7281, 33.3708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.724, 33.3656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7237, 33.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7181, 33.3636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7131, 33.3699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7135, 33.3714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7157, 33.3726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7213, 33.3748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7105, 33.3703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7026, 33.3656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6909, 33.3769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7135, 33.3741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7359, 33.3796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7449, 33.3847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7486, 33.3858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7495, 33.3862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7558, 33.3864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7521, 33.3857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7613, 33.3871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7653, 33.3873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.768, 33.3898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7695, 33.3883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7756, 33.3875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7818, 33.3876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7881, 33.3898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7936, 33.3924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7969, 33.3916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8005, 33.3929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.805, 33.3918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8099, 33.3916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.815, 33.3917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8223, 33.3927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8269, 33.3949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8296, 33.4028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8299, 33.4075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.834, 33.4161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8355, 33.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.837, 33.4231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8383, 33.4291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8385, 33.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8374, 33.4403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8411, 33.4446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8463, 33.4484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8502, 33.452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8549, 33.4553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8601, 33.4583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8664, 33.4593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8668, 33.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8652, 33.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8537, 33.4588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8477, 33.4585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8437, 33.4583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8401, 33.4591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8364, 33.4588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.833, 33.4587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8238, 33.4569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.82, 33.4562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8125, 33.4548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8084, 33.4541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8041, 33.4531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8003, 33.4523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8009, 33.4496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8034, 33.4464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8014, 33.4432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8003, 33.4389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7961, 33.434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7937, 33.431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7923, 33.4281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.788, 33.4232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7816, 33.4175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7792, 33.4089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7762, 33.4034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7749, 33.3989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7766, 33.3958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7824, 33.3948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7895, 33.3947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7957, 33.3944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8058, 33.3928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8073, 33.3864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8034, 33.3847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.794, 33.3881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7859, 33.3925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7865, 33.3957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7891, 33.4012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.795, 33.4035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7899, 33.4069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7844, 33.402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.776, 33.406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7709, 33.4178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7647, 33.4086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7656, 33.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.767, 33.3865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7678, 33.3826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7699, 33.3793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7723, 33.3792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7742, 33.3813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7788, 33.3762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.77, 33.3766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7676, 33.3739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7633, 33.3675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7624, 33.3602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7609, 33.3557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7602, 33.3493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7679, 33.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7721, 33.3505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7742, 33.3494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7784, 33.3494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7887, 33.3467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7887, 33.3436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7859, 33.3373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7841, 33.3341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7914, 33.3365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7943, 33.3356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7932, 33.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7977, 33.3313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8032, 33.3265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8067, 33.3224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8098, 33.3216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8155, 33.3183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8213, 33.3213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.825, 33.3208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.831, 33.3191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8332, 33.3144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8234, 33.3177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8207, 33.3239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8188, 33.3283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8217, 33.3322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.822, 33.3357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8187, 33.3389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.816, 33.3439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8174, 33.3476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8205, 33.3546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8145, 33.3505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8116, 33.3437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8181, 33.3363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8238, 33.3339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8283, 33.3289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8234, 33.3211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8172, 33.3171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8134, 33.3196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.813, 33.3151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8166, 33.3103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8096, 33.3044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8006, 33.3007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7967, 33.3053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8019, 33.3142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8094, 33.3218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8149, 33.3262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8164, 33.3288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8146, 33.3315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8195, 33.3335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8226, 33.3356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8251, 33.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8249, 33.3365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8255, 33.3326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8276, 33.3344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8245, 33.3366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8233, 33.338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8241, 33.3379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8229, 33.3347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8208, 33.3338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8221, 33.3315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8259, 33.3307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8246, 33.3289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8252, 33.3309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8257, 33.3303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8267, 33.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8278, 33.3367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8318, 33.3387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8359, 33.3407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8402, 33.3415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8467, 33.3427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8516, 33.3409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8571, 33.3388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.863, 33.3362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8674, 33.3314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8697, 33.3294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8726, 33.3261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.872, 33.3229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8701, 33.3209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.867, 33.3185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8638, 33.3165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8608, 33.3147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8574, 33.3131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8533, 33.3133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8486, 33.3141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8445, 33.3153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8406, 33.3154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8368, 33.3158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.835, 33.3172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8317, 33.3184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8292, 33.3209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8281, 33.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8279, 33.3267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8299, 33.3332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8327, 33.3366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8377, 33.3385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8404, 33.3402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8426, 33.3415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8447, 33.3431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.847, 33.3473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8425, 33.3474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8398, 33.3453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.838, 33.3432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8401, 33.3413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8439, 33.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8489, 33.3372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8524, 33.3372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8583, 33.3363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8619, 33.3361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.87, 33.3361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8841, 33.3354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8911, 33.3342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8998, 33.3352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9055, 33.3378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9111, 33.3402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9179, 33.3379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9261, 33.3364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9329, 33.3334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9368, 33.3354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9377, 33.3425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9391, 33.3494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9436, 33.3552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9515, 33.364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9598, 33.3684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9672, 33.3736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9768, 33.3809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9854, 33.3886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9911, 33.3927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9992, 33.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9999, 33.4001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9889, 33.3924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9853, 33.3956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9819, 33.4032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9828, 33.4136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9761, 33.4208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9699, 33.4154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9628, 33.4063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9497, 33.3935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9423, 33.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9368, 33.3811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9373, 33.3728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9337, 33.3746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9406, 33.3704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9437, 33.3671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9471, 33.3671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9537, 33.3667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9618, 33.3643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9654, 33.3683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.956, 33.3683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9513, 33.3596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9516, 33.3526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9557, 33.3451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.94, 33.3398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9243, 33.3319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9142, 33.3289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9011, 33.3228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.892, 33.3173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.882, 33.3106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8813, 33.3057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8878, 33.3031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8913, 33.299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8951, 33.3033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.903, 33.3035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9036, 33.3042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9062, 33.3062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9086, 33.3057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9124, 33.3042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9164, 33.306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.913, 33.307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9148, 33.3093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9145, 33.3084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9172, 33.3098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9199, 33.3095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9215, 33.3054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9194, 33.3002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9093, 33.3007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9068, 33.3063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9064, 33.3103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9042, 33.3136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9086, 33.3136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9132, 33.3072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9125, 33.3007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9143, 33.2921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.914, 33.2852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9135, 33.2823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9087, 33.2829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9089, 33.2776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.904, 33.2711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9038, 33.2665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9064, 33.2645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9008, 33.2624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8993, 33.2572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8967, 33.2543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.898, 33.2511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8997, 33.2566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9001, 33.2634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9053, 33.2625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9085, 33.2603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9027, 33.2589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9019, 33.2573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9045, 33.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8996, 33.2536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8993, 33.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9008, 33.2543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9004, 33.2529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8985, 33.2547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9001, 33.2513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8966, 33.2448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8946, 33.2405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8871, 33.2256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8843, 33.2217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8802, 33.2194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8774, 33.2218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8742, 33.2226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8713, 33.2243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8683, 33.2249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8643, 33.2239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8597, 33.2234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8584, 33.2297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8593, 33.2356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8604, 33.2398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8615, 33.2426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8628, 33.2463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8633, 33.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8643, 33.2505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.867, 33.2519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8732, 33.2524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.88, 33.2526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8822, 33.2521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8858, 33.2514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8888, 33.25 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8913, 33.249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8961, 33.2483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8991, 33.2475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9012, 33.2475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9034, 33.2475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9078, 33.2456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9093, 33.2479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.913, 33.2495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.916, 33.2495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9195, 33.2494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9224, 33.2488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9256, 33.2491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9286, 33.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9326, 33.2473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9359, 33.2457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9403, 33.2442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9439, 33.2438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9484, 33.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9528, 33.2425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9605, 33.2414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9661, 33.2415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9705, 33.2435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9679, 33.247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9577, 33.2516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9548, 33.2596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9498, 33.2719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9474, 33.2788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9439, 33.2885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9342, 33.2918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9227, 33.2938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9119, 33.2981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8951, 33.3048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8861, 33.3081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8752, 33.3109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8621, 33.3146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8455, 33.3168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8294, 33.3172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8167, 33.3134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8033, 33.3082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7899, 33.3005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7827, 33.2975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7705, 33.2946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7682, 33.2905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7583, 33.2861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7482, 33.2829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7376, 33.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.727, 33.2676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7192, 33.2576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7112, 33.2513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7141, 33.2451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7184, 33.2388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7123, 33.2312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6986, 33.2255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6913, 33.2243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6841, 33.2242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6865, 33.2175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6822, 33.2124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6737, 33.2073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6639, 33.2032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6538, 33.2029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6427, 33.2068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6289, 33.21 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6168, 33.2121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6054, 33.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5978, 33.2147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5901, 33.219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5852, 33.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5811, 33.2212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5787, 33.2176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5729, 33.2214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5697, 33.2257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5641, 33.2279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5624, 33.2259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5559, 33.2294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5602, 33.2355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5658, 33.2356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5755, 33.2368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5861, 33.2352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5943, 33.2309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5971, 33.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5999, 33.2236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5932, 33.2185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5815, 33.2169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5739, 33.2208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5653, 33.2206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5556, 33.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5477, 33.2186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.542, 33.2147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5372, 33.2092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5277, 33.2052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5199, 33.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5119, 33.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5076, 33.1988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5017, 33.1931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4959, 33.1907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.489, 33.1875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4845, 33.1835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4795, 33.1799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4769, 33.1769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4735, 33.1744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4704, 33.1685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.471, 33.1649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4692, 33.1613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4652, 33.1598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4643, 33.1583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4639, 33.1559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4661, 33.1541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.47, 33.1555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4705, 33.1514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4685, 33.1495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4656, 33.1474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4639, 33.1466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4657, 33.1453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4598, 33.1466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4499, 33.1465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4479, 33.1421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4492, 33.1375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.45, 33.1339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4525, 33.1321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4538, 33.132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4534, 33.1316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.454, 33.1303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4521, 33.1306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4525, 33.1298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4511, 33.1334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4499, 33.1314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4476, 33.1318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4471, 33.1329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4457, 33.1313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4445, 33.1367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.443, 33.1386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4401, 33.1396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4379, 33.144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4424, 33.1446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4445, 33.14 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4432, 33.1393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.442, 33.1412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4415, 33.1406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4393, 33.1404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.438, 33.1401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4435, 33.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4484, 33.1452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.452, 33.1469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4533, 33.1442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4517, 33.1456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.452, 33.1501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4584, 33.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4565, 33.1491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4537, 33.1482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4538, 33.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4491, 33.1417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4496, 33.1396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4446, 33.1396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4385, 33.1409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4355, 33.1384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4334, 33.1341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4293, 33.1287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4264, 33.1266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4265, 33.1204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4262, 33.1165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4277, 33.1179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4284, 33.1164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4303, 33.1162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4307, 33.1154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4288, 33.1146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4286, 33.1145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4311, 33.1138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4318, 33.1127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4325, 33.1127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4311, 33.1134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4319, 33.113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4322, 33.1124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.432, 33.1123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4324, 33.1119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4325, 33.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4285, 33.1123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4374, 33.117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4368, 33.1122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4326, 33.1103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4277, 33.1075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.422, 33.1078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4212, 33.1149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4292, 33.1218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4404, 33.1234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.448, 33.1223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4512, 33.1203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4558, 33.1197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4568, 33.1228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4575, 33.1264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4573, 33.1297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4598, 33.1341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4617, 33.1343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4642, 33.1343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4649, 33.1388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4677, 33.1399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4705, 33.1425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4757, 33.1447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4757, 33.1423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4789, 33.1446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4763, 33.1516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4746, 33.1456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.472, 33.1397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4644, 33.1351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4608, 33.1331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4535, 33.134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4482, 33.1318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4403, 33.1295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4343, 33.1252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4296, 33.1218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4254, 33.1172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4227, 33.1117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4193, 33.1077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4171, 33.1033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4127, 33.0983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4086, 33.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4035, 33.0958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3926, 33.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3881, 33.0941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.381, 33.0914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3757, 33.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3776, 33.0861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3754, 33.0803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3763, 33.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3796, 33.0746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3794, 33.0714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3779, 33.0698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3805, 33.0675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3692, 33.0606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3663, 33.0576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3706, 33.0521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3691, 33.0495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3637, 33.0484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3685, 33.0413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3716, 33.0372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3742, 33.0349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3718, 33.0319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3678, 33.0306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3635, 33.0293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3576, 33.0293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3557, 33.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3559, 33.0263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.359, 33.0265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3533, 33.0267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3522, 33.0259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3496, 33.0258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3475, 33.0289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3488, 33.0324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3529, 33.0328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3496, 33.0365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.353, 33.0372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3491, 33.0364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3459, 33.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3478, 33.0295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3457, 33.0279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3441, 33.0266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.348, 33.0232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3403, 33.0226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3393, 33.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3374, 33.0117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3309, 33.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3321, 33.0017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3364, 32.9959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3414, 32.9934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.347, 32.9923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3512, 32.9904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3542, 32.988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3594, 32.9869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3631, 32.9836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3659, 32.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3696, 32.9773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3714, 32.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3727, 32.9704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3737, 32.9633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3735, 32.9616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.374, 32.9602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3739, 32.9579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3739, 32.9553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3732, 32.9514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3721, 32.9497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.373, 32.9469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3725, 32.9453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.373, 32.943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3739, 32.9406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3739, 32.9391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3746, 32.9371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.375, 32.9348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3719, 32.9335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3689, 32.9328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3644, 32.9322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3606, 32.9321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3566, 32.9317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3534, 32.9311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3504, 32.9303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3475, 32.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.344, 32.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3411, 32.9272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.336, 32.9237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3314, 32.9208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.328, 32.9188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3241, 32.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3236, 32.9169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3212, 32.9136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3214, 32.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.32, 32.9072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3215, 32.9045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3208, 32.9025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3199, 32.8994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.318, 32.8959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3156, 32.8934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3145, 32.8919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3159, 32.8894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3177, 32.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3188, 32.8841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3198, 32.8802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3211, 32.8776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3228, 32.8747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3244, 32.8697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3249, 32.8672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3267, 32.8623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3281, 32.8589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3295, 32.8538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.33, 32.8506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3302, 32.8455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3304, 32.841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3304, 32.8362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.333, 32.8303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3334, 32.8276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3355, 32.8238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3364, 32.8183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3382, 32.8101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3398, 32.805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3423, 32.7994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3454, 32.7928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3488, 32.7874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3547, 32.7782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3567, 32.774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3617, 32.7651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3652, 32.7584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3741, 32.7475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3799, 32.7396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3838, 32.7333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3855, 32.7294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3883, 32.7321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3918, 32.7308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3936, 32.7261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3942, 32.7221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3962, 32.7161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4026, 32.7101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4074, 32.7042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4092, 32.6975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4175, 32.6901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4232, 32.6785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4292, 32.6699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4302, 32.6706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.433, 32.6694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4389, 32.6697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4363, 32.6617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4385, 32.6549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.442, 32.6445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4454, 32.6342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.444, 32.6251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4424, 32.6148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4411, 32.6082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4428, 32.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4407, 32.5898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4365, 32.5818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4348, 32.5732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4325, 32.5644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4277, 32.5554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4223, 32.5464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4162, 32.5405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4078, 32.5361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4117, 32.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4136, 32.5327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4157, 32.5313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4197, 32.5298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4189, 32.5262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4205, 32.5241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4244, 32.5222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4268, 32.5187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4221, 32.5221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4178, 32.527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4149, 32.5304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4122, 32.5351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4094, 32.5376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4057, 32.5382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4063, 32.5383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4017, 32.5396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3983, 32.5408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3978, 32.5392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3955, 32.5422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3952, 32.5489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3904, 32.5561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3893, 32.5628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3854, 32.5654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3824, 32.5615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3836, 32.5591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3842, 32.5575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3824, 32.5579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3839, 32.5532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3883, 32.5521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3894, 32.5485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3913, 32.5444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.383, 32.5469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3845, 32.5537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3865, 32.5607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3873, 32.5645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3936, 32.5661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3926, 32.5666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3962, 32.5695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3965, 32.5676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3985, 32.5656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3983, 32.5724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3971, 32.5787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4022, 32.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4055, 32.5774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4105, 32.5747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4138, 32.5715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4175, 32.5678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4204, 32.5637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4244, 32.5588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4288, 32.5549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4325, 32.5503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4386, 32.5456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4412, 32.5415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.444, 32.5374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4465, 32.5331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4487, 32.529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4494, 32.5263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4511, 32.5225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4533, 32.5181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4588, 32.5119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4613, 32.509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4626, 32.5048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4641, 32.5021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4668, 32.4984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4697, 32.4941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4717, 32.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4729, 32.4855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4729, 32.4825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.474, 32.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4748, 32.475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4753, 32.4706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4768, 32.4664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4781, 32.463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4794, 32.4598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4813, 32.4551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4826, 32.4494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4838, 32.4453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4822, 32.4411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4809, 32.4364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4799, 32.4308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4789, 32.4273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.478, 32.4236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4771, 32.4182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4769, 32.4114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.476, 32.4071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4755, 32.4029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4745, 32.3975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4739, 32.3908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4726, 32.3847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4709, 32.3801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4667, 32.3716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4642, 32.3664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4622, 32.3622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4615, 32.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4605, 32.3458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4586, 32.3389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4513, 32.3284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4482, 32.3218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4443, 32.3157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4403, 32.3079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4368, 32.3008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4326, 32.2956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4253, 32.2911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4165, 32.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4028, 32.2831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3914, 32.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3736, 32.2793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3557, 32.2794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.346, 32.2804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.334, 32.2831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3225, 32.2853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3105, 32.2912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2989, 32.2946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2846, 32.2962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.281, 32.3019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2743, 32.3072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2724, 32.3085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2714, 32.3115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2732, 32.3156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2716, 32.3111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2744, 32.3106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2767, 32.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2773, 32.3113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2717, 32.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2694, 32.3083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2724, 32.313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2732, 32.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2735, 32.3057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2645, 32.3094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2575, 32.3034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2577, 32.2937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2601, 32.2864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2717, 32.2829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2853, 32.2841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2841, 32.2941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2807, 32.3068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2762, 32.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2745, 32.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2805, 32.3356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2823, 32.3454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2807, 32.3443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2818, 32.3442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2823, 32.3441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2814, 32.3445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.283, 32.3428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2827, 32.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2824, 32.3525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2831, 32.3545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2834, 32.3567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2849, 32.3575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2899, 32.3552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2839, 32.3541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2863, 32.3533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2874, 32.3517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2839, 32.3477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2877, 32.3584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2876, 32.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2914, 32.3608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2868, 32.3639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2905, 32.3613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2917, 32.3613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2985, 32.3605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3045, 32.3641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3024, 32.3738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2987, 32.3826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2913, 32.3878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2921, 32.3824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2901, 32.3778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.293, 32.3722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2932, 32.3683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2926, 32.3658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.292, 32.3626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2907, 32.3578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2918, 32.3535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2886, 32.3511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2864, 32.3488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2888, 32.3465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2853, 32.3453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2843, 32.3465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.283, 32.3423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2815, 32.3402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2786, 32.3389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2829, 32.3451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.286, 32.3484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2896, 32.3504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2919, 32.3535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2922, 32.3576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2961, 32.3609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2954, 32.3645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2916, 32.3647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.291, 32.367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2871, 32.3644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2829, 32.365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2825, 32.3626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2807, 32.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2787, 32.3589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2786, 32.3594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2776, 32.3576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2802, 32.3578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2807, 32.3573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2854, 32.3568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2899, 32.3563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2921, 32.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2948, 32.3541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2961, 32.3508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2969, 32.3487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3015, 32.3473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2979, 32.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2961, 32.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.299, 32.3568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2995, 32.3619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2979, 32.3654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2951, 32.3675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2997, 32.3702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2985, 32.3731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3014, 32.3745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3025, 32.3787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3031, 32.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3016, 32.3885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.297, 32.3933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2977, 32.3914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3013, 32.3892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3044, 32.3895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3042, 32.3887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3003, 32.3887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2977, 32.3886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2952, 32.3895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2904, 32.3921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2864, 32.3919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2841, 32.3907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.282, 32.3889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.281, 32.3878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2787, 32.3866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2793, 32.3853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2739, 32.3815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2755, 32.3795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2747, 32.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2763, 32.3765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2781, 32.3738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2786, 32.3718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.276, 32.3704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2731, 32.3682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2708, 32.3683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2718, 32.3651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2758, 32.3609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2743, 32.3599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2716, 32.3626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2725, 32.3671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2756, 32.3667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2804, 32.3666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2833, 32.3641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2864, 32.3611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2864, 32.3559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2906, 32.3597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2906, 32.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2901, 32.3824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2957, 32.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2918, 32.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2945, 32.3873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2984, 32.3901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2976, 32.3922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.299, 32.3919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.301, 32.3984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3036, 32.4006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.306, 32.4012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3074, 32.4023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3095, 32.3998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3123, 32.4017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3138, 32.4023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3168, 32.4048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3134, 32.4075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3178, 32.4131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3121, 32.4079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3089, 32.4042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3001, 32.3974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3033, 32.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2989, 32.3895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.295, 32.3842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2935, 32.3787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3009, 32.383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.293, 32.3872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2942, 32.3812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2916, 32.3752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2942, 32.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2933, 32.3682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2995, 32.3691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3027, 32.3702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3018, 32.3677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3056, 32.3682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.306, 32.3667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3072, 32.3634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3036, 32.3606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.303, 32.3602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3009, 32.3614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3026, 32.3601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2988, 32.3602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2982, 32.3565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2988, 32.3529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2959, 32.3513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2956, 32.3494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2927, 32.3474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2904, 32.3448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2862, 32.346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2844, 32.3443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2827, 32.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2802, 32.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2813, 32.3367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2828, 32.3436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.287, 32.3469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2942, 32.3515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2967, 32.3538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2971, 32.3552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3006, 32.3539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2903, 32.3486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2854, 32.3455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2868, 32.3421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2816, 32.3386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2791, 32.3352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.276, 32.3334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2705, 32.3264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2688, 32.3249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2671, 32.3251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.264, 32.3246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2626, 32.3257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2638, 32.324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2625, 32.3227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.263, 32.3196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2626, 32.3186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2635, 32.3173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2637, 32.3172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2639, 32.3162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2655, 32.32 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2654, 32.3169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2602, 32.3126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.262, 32.3122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2634, 32.3156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2675, 32.3174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2674, 32.3205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2669, 32.3232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.27, 32.3233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2691, 32.3186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2673, 32.3159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2638, 32.3158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2626, 32.3175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2627, 32.3192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2644, 32.3215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2678, 32.3217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2705, 32.3215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2694, 32.3238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2732, 32.3251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2746, 32.3251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2771, 32.3262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2778, 32.3287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2812, 32.3301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2839, 32.3319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2863, 32.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2934, 32.3386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2962, 32.3403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.298, 32.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2981, 32.3438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3, 32.3443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3009, 32.3445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3013, 32.3457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.303, 32.3447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3031, 32.347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3046, 32.3464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3049, 32.3473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3053, 32.3477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3059, 32.3477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3065, 32.3482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3078, 32.3502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3079, 32.3523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.309, 32.3536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3099, 32.3545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3104, 32.3542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3127, 32.3541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3129, 32.3562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.314, 32.3552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3135, 32.3535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3149, 32.3546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3159, 32.3557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3183, 32.3556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3112, 32.3468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3101, 32.3457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3075, 32.3444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3058, 32.3407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3032, 32.3396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3018, 32.3366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2975, 32.3385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2975, 32.3396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2995, 32.3417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3008, 32.3423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3024, 32.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3029, 32.3434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3019, 32.3433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3045, 32.3463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3062, 32.3485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3047, 32.3455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3016, 32.3421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2957, 32.3442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2919, 32.3463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2936, 32.3495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2945, 32.3501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2963, 32.3544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2976, 32.3589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3058, 32.3607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3111, 32.3575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3146, 32.3501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3192, 32.3439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3154, 32.3376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3107, 32.3347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3033, 32.3346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2977, 32.3337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2896, 32.3342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2799, 32.336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2777, 32.3307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2789, 32.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2719, 32.3263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2697, 32.3204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2697, 32.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2712, 32.3146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2625, 32.3142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2583, 32.3073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2513, 32.3036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2521, 32.3069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2551, 32.3097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2639, 32.3143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2668, 32.3211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2707, 32.3205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2735, 32.3201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2729, 32.3273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2774, 32.3279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2783, 32.3299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.281, 32.3334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2812, 32.3353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.285, 32.3367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2868, 32.3387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2832, 32.3434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2895, 32.3468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2933, 32.3518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2994, 32.354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3047, 32.3616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3069, 32.3686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3052, 32.3688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3043, 32.3716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3029, 32.3772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3032, 32.3812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3064, 32.3837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3126, 32.3834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3138, 32.3866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3133, 32.3857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3118, 32.3929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3168, 32.3942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3184, 32.3944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3221, 32.3976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3267, 32.3983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3319, 32.3986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3291, 32.4048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3291, 32.4139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3179, 32.4172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.311, 32.4135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3115, 32.4042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3137, 32.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3107, 32.3905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3038, 32.3863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2955, 32.3822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.294, 32.3782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2958, 32.3747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2935, 32.3701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2989, 32.3661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2976, 32.3613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3019, 32.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2947, 32.356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2941, 32.3506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2873, 32.3475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2853, 32.3439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2832, 32.3406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2785, 32.3353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.273, 32.329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2756, 32.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2796, 32.3356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2829, 32.3389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2863, 32.3387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2899, 32.3358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.294, 32.3318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2965, 32.3315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2981, 32.3259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2983, 32.3201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2977, 32.3171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2952, 32.3157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2913, 32.3147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2886, 32.3124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2856, 32.3104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2826, 32.3074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2815, 32.3043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2793, 32.3031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2756, 32.3011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2704, 32.2979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2639, 32.2962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2666, 32.297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2628, 32.3007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2631, 32.3038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2684, 32.3036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2688, 32.3008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2682, 32.2973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2666, 32.2929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2695, 32.2915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2632, 32.2949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2581, 32.2922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2554, 32.2879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2495, 32.2881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2504, 32.2891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2468, 32.2869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2439, 32.2855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2461, 32.2831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2427, 32.2814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2396, 32.2764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2314, 32.2744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2244, 32.2717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2226, 32.2666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2239, 32.2642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2265, 32.2622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2334, 32.2656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.242, 32.2669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2425, 32.2694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2447, 32.2701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2488, 32.2735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2466, 32.2763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2511, 32.2756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2537, 32.2774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2596, 32.2788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2575, 32.2811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2593, 32.2853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2592, 32.2896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2578, 32.2885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2556, 32.2873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2607, 32.2917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2624, 32.2912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2629, 32.2934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2585, 32.2984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2616, 32.302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.262, 32.3071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2575, 32.3099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2571, 32.319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2576, 32.3243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2594, 32.3286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2656, 32.3319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2754, 32.3356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2849, 32.3391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2848, 32.344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2845, 32.3488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2889, 32.3553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2955, 32.3629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2979, 32.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2958, 32.3806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2962, 32.39 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3023, 32.3996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3122, 32.4083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3163, 32.4103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3192, 32.4118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3176, 32.4145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3205, 32.416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3255, 32.4156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3222, 32.4175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3236, 32.4245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3291, 32.4276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3313, 32.4301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3355, 32.4346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3332, 32.4371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3331, 32.4306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3328, 32.4258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3299, 32.4232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3297, 32.4312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3357, 32.4387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3408, 32.4456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3496, 32.4495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3507, 32.4521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3477, 32.4559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3473, 32.4623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3499, 32.4697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3508, 32.4784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3525, 32.4833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3618, 32.4791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3702, 32.4774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3715, 32.4733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3671, 32.4655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3703, 32.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3708, 32.4592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3695, 32.4562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.367, 32.453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3621, 32.4513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3652, 32.4468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3543, 32.4437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3458, 32.4496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3456, 32.4526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3411, 32.4583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3392, 32.4649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3409, 32.4668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3449, 32.4686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3437, 32.4792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3577, 32.4851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3651, 32.4729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3636, 32.4653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3624, 32.4594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3601, 32.4552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3604, 32.4529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3491, 32.4471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3397, 32.4446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3342, 32.4393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3324, 32.4358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3281, 32.4318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3244, 32.4299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3201, 32.423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3168, 32.4157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3158, 32.4118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3145, 32.4097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3109, 32.4088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3115, 32.4059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.306, 32.4039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3, 32.4013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3001, 32.3984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2988, 32.396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3005, 32.3946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3002, 32.3922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3001, 32.3893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2969, 32.3881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2953, 32.3872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2965, 32.3806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.299, 32.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2976, 32.3734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.296, 32.3692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2983, 32.371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2997, 32.3725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3027, 32.3716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2944, 32.3701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2956, 32.3652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2994, 32.3642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2962, 32.3677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2942, 32.3715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.297, 32.3734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2974, 32.3754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2956, 32.3765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2953, 32.3777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2922, 32.3728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2898, 32.3673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2884, 32.3637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2879, 32.3606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2874, 32.3573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2887, 32.35 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2901, 32.3424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2905, 32.3378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2888, 32.3343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2856, 32.3319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2868, 32.3301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2844, 32.3245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2807, 32.3237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2846, 32.3262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2865, 32.3295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2862, 32.3299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2875, 32.3322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2896, 32.3336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2931, 32.3352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2908, 32.3322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2831, 32.3259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2827, 32.3229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2808, 32.3208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2753, 32.3201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2739, 32.3157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2737, 32.3114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2767, 32.3101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2725, 32.3071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2706, 32.3064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2706, 32.3035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2675, 32.3018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2631, 32.2978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2617, 32.2913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2592, 32.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2589, 32.2831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2576, 32.2804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2538, 32.2775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2515, 32.2753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2488, 32.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2493, 32.2802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2543, 32.2826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2571, 32.2848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.253, 32.2851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2509, 32.2854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2478, 32.2825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2399, 32.2798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2258, 32.2773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2186, 32.2751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2126, 32.2708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2053, 32.2638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.198, 32.2605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.194, 32.2519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1964, 32.2464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1911, 32.2409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1869, 32.2342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1777, 32.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1699, 32.2164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1646, 32.2137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1613, 32.2138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1609, 32.2083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1539, 32.2053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1479, 32.1975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1476, 32.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1366, 32.1901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1407, 32.1829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1466, 32.1806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1459, 32.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1437, 32.1687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.136, 32.1607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1269, 32.1519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1182, 32.1474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1141, 32.1553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.112, 32.1641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1072, 32.1731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1023, 32.1829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.099, 32.1936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0985, 32.1998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0911, 32.2045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0779, 32.2075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0608, 32.2104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0441, 32.2133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0312, 32.2125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0169, 32.2127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0071, 32.2122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9925, 32.2169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9911, 32.2042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.98, 32.1966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9707, 32.1866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9666, 32.1743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9572, 32.1622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9539, 32.1519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9578, 32.1374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9588, 32.1277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9677, 32.1174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.979, 32.1014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9805, 32.0884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9757, 32.0765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.974, 32.0686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.972, 32.0574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9703, 32.0448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9804, 32.0347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9892, 32.0359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9877, 32.0395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9934, 32.0382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9998, 32.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0028, 32.0344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0059, 32.0319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0083, 32.0303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.009, 32.0413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.011, 32.0418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0104, 32.0459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0022, 32.0458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0007, 32.0387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0126, 32.0399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0249, 32.0405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0314, 32.0405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0405, 32.0422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0439, 32.0396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0435, 32.0369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0455, 32.0367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.045, 32.0335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0419, 32.031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0424, 32.0275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0456, 32.0231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0447, 32.0219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0456, 32.0201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0526, 32.0135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0541, 32.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0553, 32.0001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0552, 31.9929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0505, 31.9885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0465, 31.9857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0414, 31.983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0327, 31.9809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0257, 31.9769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0266, 31.9794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.028, 31.9812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0269, 31.9823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0289, 31.9843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0295, 31.9864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0295, 31.9885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0262, 31.9889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0192, 31.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0111, 31.9886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0046, 31.9854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9981, 31.9835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9928, 31.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9862, 31.9763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9817, 31.9733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9785, 31.971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9747, 31.9688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.971, 31.9662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9635, 31.96 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9597, 31.9572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9525, 31.9523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9464, 31.9517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9415, 31.9472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9394, 31.9444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9366, 31.9439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9361, 31.9408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9332, 31.9362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9298, 31.9381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9306, 31.9404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9301, 31.9385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9331, 31.9403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9351, 31.9354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9346, 31.9321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9386, 31.9307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9383, 31.9314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.941, 31.9312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.938, 31.9309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9376, 31.9313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9386, 31.9313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9381, 31.9326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9413, 31.9314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9426, 31.9304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9446, 31.9304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9468, 31.9319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9451, 31.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9424, 31.9267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9341, 31.9244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9311, 31.9216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9245, 31.9162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9159, 31.9175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9126, 31.915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9063, 31.9141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9043, 31.9093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9031, 31.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9063, 31.8984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9086, 31.8957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9107, 31.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9071, 31.8948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9083, 31.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9086, 31.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9109, 31.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9114, 31.9158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9097, 31.9226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9035, 31.9281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8955, 31.9339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8976, 31.9363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.895, 31.9367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8955, 31.9363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8951, 31.9366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8982, 31.9394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9004, 31.9452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9013, 31.9481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9007, 31.9518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9029, 31.9463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9076, 31.9449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9141, 31.9514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9253, 31.9548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9259, 31.9482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9203, 31.9441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9111, 31.9395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9049, 31.9365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9009, 31.9346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8958, 31.9347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8912, 31.9284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8848, 31.9243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8835, 31.922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.875, 31.9194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8691, 31.9156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8674, 31.9134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8673, 31.9095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8651, 31.9096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8627, 31.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8625, 31.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.857, 31.9019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8576, 31.9112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8629, 31.9104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8659, 31.9097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8676, 31.9095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8614, 31.9082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8754, 31.9157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8751, 31.9123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8686, 31.9082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8695, 31.9012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8665, 31.9001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8672, 31.899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8699, 31.8938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8701, 31.8948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8749, 31.8988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8662, 31.8906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8586, 31.8872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8585, 31.8873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.859, 31.8844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8574, 31.8827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8547, 31.8814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8568, 31.8837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8587, 31.8827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8581, 31.8794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8538, 31.8767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8537, 31.8798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8538, 31.8782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8516, 31.8759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8533, 31.8745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8506, 31.8733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8522, 31.8793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8577, 31.8857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8638, 31.8888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8621, 31.8817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8554, 31.8768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8547, 31.8751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8542, 31.8735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8543, 31.8716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8537, 31.8687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8523, 31.8657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8502, 31.8614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.853, 31.8608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8498, 31.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8486, 31.8579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8472, 31.8561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8483, 31.8539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8462, 31.8504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8479, 31.8458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8465, 31.8436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8444, 31.8429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8471, 31.8401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8426, 31.8369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8424, 31.8405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8453, 31.8393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8504, 31.8364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8551, 31.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8562, 31.8284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8536, 31.828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8491, 31.8222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8476, 31.8165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8503, 31.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8542, 31.8128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8579, 31.8138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8602, 31.8159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8603, 31.8168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8587, 31.8178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8563, 31.8177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8529, 31.8183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8476, 31.8187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8434, 31.8176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8404, 31.8059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8389, 31.8002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8374, 31.7968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8354, 31.7893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8333, 31.7831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.832, 31.7782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8289, 31.7738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8261, 31.7695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8244, 31.7655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8217, 31.7614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8173, 31.7558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.815, 31.7512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8151, 31.7511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8173, 31.7444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8184, 31.7382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8162, 31.7384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8129, 31.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8152, 31.7449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8142, 31.7462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8123, 31.7473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8114, 31.7515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.809, 31.7565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8084, 31.7603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8125, 31.7502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8133, 31.7478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8139, 31.7465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8154, 31.7438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8141, 31.7401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8161, 31.7418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8145, 31.7437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8151, 31.747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8174, 31.7474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8167, 31.7468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8171, 31.7483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8143, 31.7446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8196, 31.7402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8121, 31.7355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8029, 31.7329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8029, 31.7295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8018, 31.7286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8036, 31.7243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8033, 31.7193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7956, 31.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7873, 31.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7795, 31.7053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7793, 31.6977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7826, 31.6934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7866, 31.6899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7874, 31.6891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7845, 31.6841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7824, 31.6772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7805, 31.6699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7788, 31.6631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.774, 31.6549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7683, 31.6467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7658, 31.6384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7608, 31.6265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7546, 31.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.752, 31.6108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7543, 31.6036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7597, 31.5992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7663, 31.5988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.769, 31.5967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7732, 31.5899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7803, 31.5858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7837, 31.5882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7871, 31.5943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7888, 31.5977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7915, 31.6051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7917, 31.6097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7912, 31.6136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7903, 31.6172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7925, 31.6234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7955, 31.6317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7959, 31.638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7966, 31.6442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7969, 31.6501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7976, 31.6588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7977, 31.6643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7971, 31.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7957, 31.6838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7917, 31.6973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7876, 31.7068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7828, 31.7125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7897, 31.7193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7912, 31.7237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7963, 31.7335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7968, 31.7458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7995, 31.7558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8046, 31.7673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8143, 31.7755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8196, 31.7794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8261, 31.7856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8331, 31.7885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8368, 31.7919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8413, 31.7923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8498, 31.7955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.849, 31.8001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8512, 31.8088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8464, 31.8209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.844, 31.8329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8432, 31.8425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8463, 31.85 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8478, 31.8579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8486, 31.8689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8544, 31.8742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8552, 31.8808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8615, 31.8897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8662, 31.9001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8682, 31.9103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8682, 31.9234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8707, 31.9336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8811, 31.9357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8943, 31.9394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8976, 31.9406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8992, 31.9466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8981, 31.9517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9016, 31.9562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9068, 31.9503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9132, 31.9487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9136, 31.9447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9061, 31.9429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9007, 31.9474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9001, 31.9534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.902, 31.9555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9023, 31.9553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9033, 31.9583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9124, 31.9613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9206, 31.9627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9271, 31.9643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9312, 31.9636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9276, 31.9651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9258, 31.9716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9276, 31.9735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9314, 31.9737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9354, 31.9765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9433, 31.9772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.945, 31.9773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9471, 31.9776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9508, 31.9749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9542, 31.9751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9589, 31.9744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9611, 31.9729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9633, 31.9721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9667, 31.9711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9686, 31.9679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9733, 31.9651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9721, 31.9695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9703, 31.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9647, 31.9765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9592, 31.9786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9649, 31.9713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9706, 31.9641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9689, 31.9563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9643, 31.9579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9623, 31.9608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9555, 31.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9592, 31.9646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9682, 31.9657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9763, 31.9706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9775, 31.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9776, 31.9737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9809, 31.9711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.984, 31.9673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9852, 31.9649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9899, 31.9659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9872, 31.9678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9861, 31.9714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9836, 31.9746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9873, 31.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9932, 31.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9957, 31.9917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0, 31.9924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0011, 31.9893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0042, 31.9862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0045, 31.9862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0011, 31.9918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0018, 31.9948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9997, 31.9949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9975, 31.9979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9995, 31.9977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9969, 32.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9965, 32.0083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9939, 32.0118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9939, 32.0181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9961, 32.0242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9976, 32.0294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0036, 32.037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0199, 32.0512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0228, 32.0565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0252, 32.0613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0327, 32.0675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.042, 32.075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0431, 32.0807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0435, 32.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0445, 32.0933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0476, 32.1038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0494, 32.1112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0515, 32.1221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0531, 32.1317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0551, 32.1419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0572, 32.1471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0644, 32.154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0697, 32.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0738, 32.164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0805, 32.1693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0876, 32.1725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.096, 32.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1013, 32.1842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1057, 32.1874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1116, 32.1912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1167, 32.1946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1267, 32.2017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1378, 32.2088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1446, 32.2132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1528, 32.2181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1623, 32.2228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1729, 32.2254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1772, 32.2275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1845, 32.2302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1929, 32.2354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1958, 32.2365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1949, 32.2406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2039, 32.2433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1973, 32.2494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.203, 32.2522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2101, 32.2539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2032, 32.2576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2022, 32.2619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2044, 32.2648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2109, 32.2661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2185, 32.2693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2221, 32.2757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2229, 32.2684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2286, 32.2833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2319, 32.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2351, 32.2884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2405, 32.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2404, 32.2937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2488, 32.3015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2571, 32.3043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2636, 32.3115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.274, 32.3203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2762, 32.3276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.284, 32.3389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2844, 32.3457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2936, 32.3526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2999, 32.3577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3031, 32.3652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2955, 32.3702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2905, 32.3742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2925, 32.3803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2929, 32.3853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2871, 32.3911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2897, 32.4007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2971, 32.4037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3046, 32.4057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3097, 32.4121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3135, 32.4181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3177, 32.4212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3194, 32.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3223, 32.4392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3253, 32.4453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3286, 32.4535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3302, 32.4606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3317, 32.4675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3336, 32.4744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3353, 32.4816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3384, 32.489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.34, 32.4979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3422, 32.5053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3455, 32.5108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3491, 32.5171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3526, 32.5237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3569, 32.5305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3595, 32.5378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3627, 32.5442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3664, 32.5496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3708, 32.5556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3736, 32.5614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3756, 32.5658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3783, 32.5735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3823, 32.5802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3883, 32.5887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.392, 32.5951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3961, 32.6016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4008, 32.6077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4057, 32.6139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4098, 32.6185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4162, 32.6249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4207, 32.6306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4254, 32.6373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4302, 32.6446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4342, 32.6533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4379, 32.6604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4398, 32.6676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4412, 32.6734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4435, 32.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4482, 32.6861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4539, 32.6929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4599, 32.6977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4679, 32.7029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4772, 32.7088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4841, 32.714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4899, 32.7188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4963, 32.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5029, 32.7285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5078, 32.7331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5137, 32.7402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.52, 32.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5247, 32.7553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5288, 32.7629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5323, 32.7684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5379, 32.7771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5435, 32.7839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5496, 32.7921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5565, 32.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5642, 32.8039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5725, 32.8101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.578, 32.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5858, 32.8247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5972, 32.8365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6051, 32.8448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.615, 32.8559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6211, 32.8635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6271, 32.8727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6326, 32.8824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6377, 32.8955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6413, 32.9093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6445, 32.9192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6484, 32.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6524, 32.9407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6554, 32.953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6571, 32.9651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6605, 32.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6651, 32.9926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6682, 33.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6738, 33.0171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6804, 33.0297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.684, 33.0394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6911, 33.0552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6966, 33.0679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6994, 33.0787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7049, 33.0935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7081, 33.1031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7155, 33.1035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7154, 33.1062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7181, 33.1074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7199, 33.1078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7214, 33.1051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7246, 33.1151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7309, 33.1245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7408, 33.1362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7449, 33.1433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7539, 33.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7586, 33.1731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7642, 33.188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7683, 33.1988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7723, 33.2085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7803, 33.2168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7846, 33.2227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7939, 33.2329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7986, 33.2431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8066, 33.2529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8119, 33.2618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8205, 33.2727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8257, 33.2885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8302, 33.2937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8364, 33.3064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8405, 33.3127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8511, 33.3249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8562, 33.3303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8673, 33.3413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.876, 33.3494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8826, 33.3572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8892, 33.3663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9021, 33.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9154, 33.3845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9255, 33.3936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9319, 33.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.943, 33.4043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9544, 33.4076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9714, 33.4152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9929, 33.4231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0019, 33.4271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0161, 33.4344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0269, 33.4422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0342, 33.4477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0454, 33.4564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0539, 33.462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0653, 33.4713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0709, 33.476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0795, 33.4824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.09, 33.4899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1029, 33.5016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1157, 33.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1282, 33.5155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1389, 33.5227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1493, 33.5289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1601, 33.5348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1658, 33.5375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1765, 33.5462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1926, 33.5601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1998, 33.5651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2105, 33.5724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2178, 33.5781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2289, 33.587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2367, 33.5918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2487, 33.5993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2575, 33.6039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2652, 33.6082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2743, 33.6137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2831, 33.6152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2942, 33.6169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3046, 33.6205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3169, 33.6275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3281, 33.6331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3356, 33.6367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3454, 33.6398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.353, 33.6439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3636, 33.6493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3732, 33.654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3828, 33.6595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3902, 33.6626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4006, 33.6672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4093, 33.6714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4203, 33.6775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4287, 33.6831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4382, 33.6897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4522, 33.6986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4585, 33.7027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4697, 33.7099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4752, 33.7133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4889, 33.7203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4955, 33.7241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5021, 33.7272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5128, 33.7328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5251, 33.7419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.531, 33.7467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5421, 33.7539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5478, 33.7581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5565, 33.7635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.567, 33.771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5719, 33.7759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5815, 33.7866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5879, 33.7952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5938, 33.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.61, 33.8535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6519, 33.9077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7039, 33.9383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7635, 33.9696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8006, 33.9792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7961, 33.9764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.847, 33.9896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9259, 34.0108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.998, 34.0289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0716, 34.0418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1477, 34.046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2152, 34.0429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2881, 34.0391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3373, 34.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4734, 34.0439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5054, 34.0271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5189, 33.9759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.571, 33.9394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6228, 33.9125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6906, 33.8844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7492, 33.8638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7962, 33.8339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8192, 33.7812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7931, 33.7627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8067, 33.7615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8154, 33.7261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8754, 33.6862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6185, 34.1041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6127, 34.1049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6118, 34.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6135, 34.1046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6203, 34.1089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6137, 34.1043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6108, 34.0993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6139, 34.101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6072, 34.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6043, 34.1001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6052, 34.1002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6025, 34.0972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5954, 34.0792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5826, 34.0657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5762, 34.0601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5691, 34.0571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5584, 34.0658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5699, 34.0653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5817, 34.059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5789, 34.0518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5774, 34.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.572, 34.0357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5666, 34.0296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5531, 34.0238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.541, 34.0224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5304, 34.0206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5233, 34.0222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5122, 34.0167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5086, 34.0145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5029, 34.0073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5004, 34.0056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4971, 34.0038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4935, 34.0018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4902, 33.9997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4876, 33.9988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4846, 33.9966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4758, 33.9948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4742, 33.9929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4728, 33.99 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4711, 33.9874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4692, 33.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4666, 33.9824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4622, 33.9779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.459, 33.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4625, 33.9646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4617, 33.9615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4614, 33.9588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4682, 33.9537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4692, 33.9528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4698, 33.9511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4681, 33.9508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4645, 33.9485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4606, 33.9452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4669, 33.9454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4708, 33.9431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4752, 33.9535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4808, 33.9804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.491, 33.9863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.527, 34.0006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5343, 33.9995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5395, 34.0085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5524, 34.0284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.57, 34.0415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5836, 34.0474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5908, 34.056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5911, 34.0672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5934, 34.0712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5926, 34.0759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5991, 34.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5997, 34.0838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5994, 34.0855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5954, 34.0795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5962, 34.0766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5932, 34.0742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5908, 34.0712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.59, 34.0714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5977, 34.078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5998, 34.0834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5973, 34.0814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5992, 34.0803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.594, 34.0804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5925, 34.0802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5939, 34.0787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5941, 34.0809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5942, 34.0816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5942, 34.0785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5956, 34.0793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5947, 34.0787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5917, 34.0753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5887, 34.0759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5872, 34.0739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5881, 34.0732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5884, 34.0726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5923, 34.0695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5987, 34.0791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6007, 34.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6051, 34.0968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6085, 34.1036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6076, 34.1019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6072, 34.1023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6063, 34.1017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6065, 34.1065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6035, 34.1129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6116, 34.1157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6276, 34.1066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6166, 34.1149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6071, 34.1136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6039, 34.1095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6063, 34.1086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6022, 34.1062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6015, 34.1076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5998, 34.1086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5991, 34.1083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5998, 34.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5999, 34.1048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5996, 34.1079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6012, 34.1055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5991, 34.1047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6029, 34.1017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6008, 34.0953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6023, 34.0998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5983, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5886, 34.1085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5875, 34.1067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5906, 34.1018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5885, 34.1036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5941, 34.1068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5987, 34.1062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5994, 34.1054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5964, 34.1027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5908, 34.0997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5885, 34.0985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5859, 34.0965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5736, 34.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.572, 34.0956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5785, 34.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.576, 34.0869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5967, 34.091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5991, 34.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5978, 34.087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5976, 34.0865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5962, 34.0925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.597, 34.0886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5974, 34.0889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6027, 34.0916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6048, 34.092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6101, 34.0991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6127, 34.1017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.612, 34.1003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6157, 34.1055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.609, 34.1033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.614, 34.1053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6115, 34.1013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6176, 34.1066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6156, 34.1054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6134, 34.1047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6108, 34.1034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.612, 34.1055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6148, 34.1077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6136, 34.1056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6147, 34.1044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6131, 34.1052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6153, 34.1052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.617, 34.1076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6132, 34.1047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6124, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6119, 34.1068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6113, 34.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6114, 34.1063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6098, 34.1051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6079, 34.1071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6109, 34.1074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6106, 34.1074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6146, 34.1062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6143, 34.1053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6192, 34.1051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6177, 34.0974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6073, 34.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6017, 34.1107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6058, 34.1193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6124, 34.1188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6053, 34.1129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6039, 34.1093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6012, 34.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6028, 34.1048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5999, 34.1029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5944, 34.1067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6114, 34.0966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6165, 34.103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6164, 34.1063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6209, 34.1094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6207, 34.1082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6164, 34.1073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6174, 34.1055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6195, 34.1046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6186, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6235, 34.1027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6242, 34.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6247, 34.1029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6306, 34.0972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6415, 34.0981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6498, 34.0972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.654, 34.0963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6589, 34.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6647, 34.0958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6713, 34.0961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6721, 34.0931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6789, 34.0948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6772, 34.0966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6666, 34.0953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6623, 34.0982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6536, 34.1063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6547, 34.1097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6524, 34.1111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6532, 34.1135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.654, 34.1157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6525, 34.1218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6512, 34.1225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6481, 34.1231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6436, 34.1245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.643, 34.1263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.642, 34.1249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.642, 34.1227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6374, 34.1249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.637, 34.1248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6392, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6392, 34.1341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6367, 34.1317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6326, 34.1249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6292, 34.1235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6189, 34.1223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.612, 34.111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6077, 34.1029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6051, 34.0922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6024, 34.0887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6173, 34.0888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6183, 34.0922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6227, 34.1075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.622, 34.1186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6273, 34.1252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.638, 34.1359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6366, 34.1411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6372, 34.1451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6337, 34.1544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6303, 34.1689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6256, 34.177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6228, 34.1767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6312, 34.1722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6347, 34.1707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6383, 34.1732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6367, 34.1741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6319, 34.1761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6369, 34.1824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6385, 34.1823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6392, 34.1832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6443, 34.1878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.648, 34.1849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.643, 34.1836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6265, 34.1852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6217, 34.1847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6206, 34.1823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6248, 34.1789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6267, 34.1758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6217, 34.1713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6218, 34.1743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6194, 34.1814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6251, 34.1825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6159, 34.1755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6085, 34.1749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6169, 34.1757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6198, 34.1715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6297, 34.1638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6311, 34.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6256, 34.1697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6395, 34.1746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6658, 34.2045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6716, 34.2089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6879, 34.2237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7194, 34.2691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7262, 34.2761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7396, 34.2872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7438, 34.2919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7541, 34.3024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7838, 34.3223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7964, 34.3367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8082, 34.3598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8112, 34.3694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8142, 34.427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8144, 34.4349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8166, 34.4612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.827, 34.5508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8277, 34.5697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.828, 34.5751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8297, 34.6055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8284, 34.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8248, 34.6348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8211, 34.6484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8207, 34.6547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8247, 34.6691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8262, 34.6733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8363, 34.6902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8436, 34.7007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8478, 34.7065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8519, 34.7128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8541, 34.7173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.857, 34.7214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8606, 34.7272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8651, 34.733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8687, 34.7419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.879, 34.7728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9098, 34.8195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9128, 34.837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9086, 34.8401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8951, 34.8524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9123, 34.8679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9267, 34.8785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9559, 34.9062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9646, 34.9111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.987, 34.9212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0405, 34.9333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0461, 34.9265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0508, 34.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0609, 34.9013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0616, 34.8967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0632, 34.8911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0654, 34.8837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0687, 34.8754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0715, 34.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0719, 34.8482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0738, 34.8406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0813, 34.8311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0814, 34.8294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0846, 34.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0844, 34.8123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0846, 34.8049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0849, 34.7975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0861, 34.7933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0877, 34.7902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.089, 34.7857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0903, 34.7722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0853, 34.7353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0853, 34.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0842, 34.7208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0845, 34.7123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0821, 34.6989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0804, 34.6914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0766, 34.6878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.057, 34.661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.047, 34.6492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0311, 34.6225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0284, 34.6157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0204, 34.6048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0053, 34.5896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0042, 34.5983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.988, 34.6095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9895, 34.6048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9829, 34.5885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9572, 34.519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9527, 34.5064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9437, 34.4858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9256, 34.4245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9238, 34.419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9129, 34.3909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9048, 34.3877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8942, 34.3644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.887, 34.3503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8747, 34.3395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8507, 34.3218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8447, 34.3087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8383, 34.2854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8427, 34.2738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.846, 34.262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8509, 34.2537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8576, 34.2339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8538, 34.2235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8545, 34.2113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8563, 34.205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8577, 34.1989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.857, 34.1971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8571, 34.1929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8531, 34.1767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8511, 34.1583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8507, 34.1535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8494, 34.1491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8484, 34.1404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8437, 34.1395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8499, 34.1313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8498, 34.1262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8415, 34.0931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8379, 34.0864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8362, 34.0829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8331, 34.0701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8317, 34.0663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83, 34.0586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8278, 34.0506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8261, 34.0467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8222, 34.0322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.82, 34.0285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8178, 34.0236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8135, 34.0153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.81, 34.0093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8043, 33.9967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8013, 33.9919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7991, 33.9868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7975, 33.9798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7955, 33.9744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.794, 33.9697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7925, 33.9648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.79, 33.9597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7832, 33.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.779, 33.9177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7708, 33.8985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7687, 33.8935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7564, 33.8844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7378, 33.8641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7333, 33.8539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7315, 33.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7319, 33.8449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7282, 33.8325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7259, 33.8285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7207, 33.8232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7159, 33.8181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6742, 33.7844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6665, 33.7795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6574, 33.7741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6508, 33.7707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6155, 33.7519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.592, 33.7426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.549, 33.7278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.536, 33.7233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5264, 33.7185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5216, 33.7164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5145, 33.7147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5081, 33.7129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4847, 33.7051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4174, 33.6907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3913, 33.6777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3681, 33.6713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3636, 33.6687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3502, 33.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3367, 33.6604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2992, 33.6525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2929, 33.6496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2553, 33.6364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2443, 33.6332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2394, 33.6313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2249, 33.6328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2143, 33.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2016, 33.6269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1939, 33.6228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1869, 33.6228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1772, 33.6207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1713, 33.6192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1673, 33.6178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1579, 33.6156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1522, 33.6142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1465, 33.6125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1182, 33.6028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.109, 33.6012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0937, 33.6077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0887, 33.6084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0793, 33.6083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0752, 33.6098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0723, 33.6111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0693, 33.6125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0557, 33.6177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0531, 33.6191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0488, 33.6213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0428, 33.6242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0342, 33.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0313, 33.6299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0286, 33.6321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0262, 33.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0236, 33.6382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0159, 33.6377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0016, 33.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9972, 33.6424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9933, 33.6454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9905, 33.6485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9857, 33.6529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9834, 33.6526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9697, 33.6601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9656, 33.6635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9567, 33.6696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9474, 33.6746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9262, 33.6882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.913, 33.7017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9061, 33.712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.906, 33.7323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8999, 33.7388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9076, 33.7717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9253, 33.7941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9331, 33.7965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.929, 33.7991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9475, 33.7898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9559, 33.7896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9671, 33.7921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9788, 33.7912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0366, 33.7614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0691, 33.7546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0738, 33.7516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.106, 33.7458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.128, 33.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1654, 33.7304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1768, 33.7271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1984, 33.7212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2126, 33.7173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2238, 33.7143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2564, 33.6948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2592, 33.6915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2641, 33.6806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2626, 33.6785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2615, 33.6745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2592, 33.6717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2581, 33.6706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2519, 33.6656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2497, 33.6643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2459, 33.6616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2404, 33.6598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2268, 33.6587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.223, 33.6574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2106, 33.6573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2065, 33.6568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2038, 33.6547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1999, 33.6489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1949, 33.6449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.192, 33.6388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1959, 33.6311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1983, 33.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2015, 33.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2053, 33.6139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2119, 33.5956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2169, 33.5845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2161, 33.5786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2146, 33.577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2095, 33.5743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2048, 33.5709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1975, 33.5672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1942, 33.5651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1924, 33.5631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1829, 33.5569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1791, 33.5548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1721, 33.5373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1699, 33.533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1633, 33.516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.161, 33.5112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1602, 33.4959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1602, 33.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1615, 33.4832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1629, 33.4775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.168, 33.4629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1781, 33.4385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1944, 33.4281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1951, 33.4155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1915, 33.4133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1878, 33.4092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1751, 33.4076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1638, 33.4042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1574, 33.398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1562, 33.3957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1535, 33.3865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1512, 33.3758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1494, 33.3728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1458, 33.3665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1439, 33.3632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1424, 33.3597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1432, 33.3545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1413, 33.3452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1395, 33.3407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1365, 33.337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1343, 33.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1337, 33.3282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1347, 33.3255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1408, 33.3151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1413, 33.3001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.14, 33.2967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1414, 33.2942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.141, 33.2912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1473, 33.287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1505, 33.2868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1532, 33.2857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1683, 33.2786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1713, 33.2763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1722, 33.2733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1762, 33.2712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1788, 33.2701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1857, 33.2613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1852, 33.2606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1887, 33.2596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1922, 33.2578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1937, 33.2559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1963, 33.2552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1995, 33.2537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.202, 33.2514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2028, 33.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2122, 33.2446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2212, 33.2455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2291, 33.2447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.236, 33.2458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.242, 33.2439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2458, 33.2443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2462, 33.2411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2451, 33.2417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2447, 33.2392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2441, 33.2368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2409, 33.2364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2388, 33.2379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2399, 33.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.234, 33.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2349, 33.2449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2379, 33.2464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2413, 33.246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2461, 33.2467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2481, 33.2458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2534, 33.2407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2551, 33.2379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2627, 33.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2653, 33.234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2675, 33.2328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2715, 33.2317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2717, 33.2318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2766, 33.2308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2791, 33.2298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.28, 33.2283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2845, 33.2237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2882, 33.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.29, 33.2204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.29, 33.2173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2916, 33.2133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2956, 33.2059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3043, 33.1954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3104, 33.1923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3184, 33.1878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3205, 33.1867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3212, 33.1855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3251, 33.1803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3271, 33.1796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3345, 33.1763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3391, 33.1773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3433, 33.1798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3469, 33.1839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3529, 33.1899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3538, 33.19 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3558, 33.1908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3569, 33.1892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3578, 33.1902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3608, 33.1879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3615, 33.1862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3606, 33.1842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3619, 33.1837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3626, 33.1848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3615, 33.1833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3643, 33.1828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3647, 33.1817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3683, 33.1813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3698, 33.1809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3705, 33.1791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3731, 33.1776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3744, 33.1771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3763, 33.1771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.375, 33.1779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3788, 33.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3825, 33.1839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3877, 33.179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3885, 33.1764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3916, 33.1697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3908, 33.1671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3917, 33.1607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3932, 33.1574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3978, 33.1551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4032, 33.1519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4102, 33.1488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4127, 33.1466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4167, 33.1459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4389, 33.1508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4437, 33.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4462, 33.1527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4503, 33.1534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4532, 33.1545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.457, 33.1546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4656, 33.1647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4745, 33.1795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4825, 33.1831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4859, 33.1832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4975, 33.1826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4984, 33.1818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5017, 33.1812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.507, 33.1808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5106, 33.1828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5208, 33.1796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5359, 33.1762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5459, 33.174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.557, 33.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5603, 33.1754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5638, 33.1755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5731, 33.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5725, 33.1749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5745, 33.1754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5771, 33.1776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5839, 33.1783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5856, 33.1776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6015, 33.1719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6054, 33.1694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6162, 33.1647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6282, 33.1646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6306, 33.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6387, 33.1685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6439, 33.1701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.646, 33.1701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6529, 33.1744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6558, 33.1762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.659, 33.1769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6604, 33.1773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6558, 33.1711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6552, 33.1699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6558, 33.1676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6567, 33.1649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6559, 33.1621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.655, 33.1567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6555, 33.1565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6578, 33.1559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6637, 33.1511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6653, 33.1475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6683, 33.1442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.67, 33.1411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6715, 33.1399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6729, 33.1382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6748, 33.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6787, 33.1346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6813, 33.1324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6847, 33.1293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6904, 33.1233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6962, 33.1198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6986, 33.1181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7077, 33.1121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7075, 33.1034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7096, 33.0985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7107, 33.0947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.717, 33.0891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7237, 33.086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7251, 33.0833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7293, 33.079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7308, 33.0779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7414, 33.0891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7437, 33.0892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7471, 33.0877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7495, 33.0852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7456, 33.0857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7454, 33.0843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7483, 33.0818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7501, 33.0827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7526, 33.0826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7547, 33.0843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7642, 33.0836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7652, 33.0829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7614, 33.0813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7583, 33.0872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7616, 33.0903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7634, 33.0923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.768, 33.0958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.768, 33.0933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7714, 33.0909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.773, 33.0904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7786, 33.0869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7797, 33.0843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7823, 33.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7843, 33.0815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7943, 33.0775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8019, 33.077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8036, 33.0693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8034, 33.0637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8058, 33.0591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8085, 33.0567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8079, 33.0472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7955, 33.0333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7853, 33.0284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7764, 33.0101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7765, 33.0059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7683, 32.9954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7611, 32.9916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7572, 32.9844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.757, 32.9724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7324, 32.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7355, 32.9892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.735, 32.995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.745, 32.9943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7488, 32.9956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7528, 32.9974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.759, 32.9989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7717, 32.9943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7858, 32.9886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7933, 32.9846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7979, 32.9825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8031, 32.9798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8102, 32.9744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8139, 32.9711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8173, 32.9716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8196, 32.9705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8221, 32.9691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8256, 32.9662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8309, 32.9651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8432, 32.9596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8486, 32.9566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8512, 32.9546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8574, 32.9512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8598, 32.9455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8618, 32.9351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8626, 32.9285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8613, 32.9233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8597, 32.9234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8571, 32.9214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8529, 32.9164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8613, 32.9085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.858, 32.9141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8631, 32.9197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.869, 32.9204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8819, 32.9204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8852, 32.9199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8892, 32.9355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8949, 32.9382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9166, 32.9401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9192, 32.9415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9268, 32.9461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9277, 32.9454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9324, 32.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9394, 32.9572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9449, 32.9587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9526, 32.9555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9876, 32.9503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9912, 32.9494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9949, 32.9484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.999, 32.9471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0049, 32.9466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0089, 32.9471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0109, 32.9469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0126, 32.9463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0172, 32.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0381, 32.951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.046, 32.9527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0506, 32.9545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0543, 32.9627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0635, 32.9838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0706, 32.9883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0781, 32.9912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1029, 33.0126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1101, 33.0194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1126, 33.023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1156, 33.038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1481, 33.045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1647, 33.0476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1697, 33.0473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1791, 33.0488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1863, 33.0503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1921, 33.0531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1946, 33.0537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1994, 33.0509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2028, 33.05 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2058, 33.0548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2128, 33.0584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2193, 33.0591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2317, 33.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2383, 33.0651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2417, 33.0667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2471, 33.0667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2512, 33.0602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2558, 33.0522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2565, 33.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2555, 33.0446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2552, 33.042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.257, 33.0328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2588, 33.0266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2594, 33.0199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2622, 33.0144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2663, 33.006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2663, 33.0067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2678, 33.0056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2681, 33.0119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2716, 33.0188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2816, 33.0252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2833, 33.0237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2846, 33.0237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2867, 33.0219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2896, 33.0197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2964, 33.0258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.297, 33.026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.297, 33.0263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2988, 33.0254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3004, 33.0231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3023, 33.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3017, 33.0107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3171, 32.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3238, 32.9851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3492, 32.9907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3524, 32.9914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.353, 32.9933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3482, 33.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3405, 33.0215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3427, 33.014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3827, 33.0316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3956, 33.0459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4, 33.0514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4025, 33.0546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4051, 33.0574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4103, 33.0635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4139, 33.0716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4202, 33.0745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.43, 33.0822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4327, 33.085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4371, 33.0753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4406, 33.0955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4412, 33.0982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4385, 33.0963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4424, 33.1028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4437, 33.1143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4565, 33.1302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4621, 33.1376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4652, 33.1436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4779, 33.1796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4673, 33.2135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4629, 33.2175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4577, 33.2402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4525, 33.2463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4473, 33.2505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4407, 33.2379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4403, 33.2369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4387, 33.2368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.439, 33.2353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4176, 33.2396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4159, 33.2446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4148, 33.2418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4155, 33.2372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4161, 33.2309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4156, 33.2305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4149, 33.2302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4116, 33.2297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4112, 33.2301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.411, 33.2303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4101, 33.2317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4107, 33.2323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4107, 33.2327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3978, 33.24 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3949, 33.2403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3854, 33.2496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3885, 33.2831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3831, 33.2978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3941, 33.3087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3953, 33.3133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4053, 33.3209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4199, 33.3359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4309, 33.3514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4364, 33.3622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4493, 33.3671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4648, 33.3867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4442, 33.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4594, 33.4029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4684, 33.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4692, 33.4305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.466, 33.4364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4649, 33.4315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4749, 33.4342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4721, 33.432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4717, 33.4306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4701, 33.4364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.473, 33.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4738, 33.4303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4682, 33.4312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4655, 33.4245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4745, 33.4346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4713, 33.4385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4712, 33.4548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4625, 33.4587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4633, 33.4582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4656, 33.4622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.461, 33.4707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4551, 33.4727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4552, 33.4725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.455, 33.4753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.456, 33.478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4503, 33.481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4538, 33.4814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4554, 33.4751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4561, 33.4718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4581, 33.4692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4622, 33.4652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4643, 33.4635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4649, 33.4606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4619, 33.4525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4569, 33.4509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4566, 33.4499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4541, 33.4534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.453, 33.4522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4572, 33.4456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4558, 33.4438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4609, 33.4377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4653, 33.4353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4638, 33.438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4647, 33.4392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4711, 33.437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4768, 33.4396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4779, 33.441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4643, 33.4454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4527, 33.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4638, 33.4593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4633, 33.4648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4763, 33.4663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4818, 33.4927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4855, 33.4975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4912, 33.4945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4931, 33.5049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5248, 33.5342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5178, 33.5486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5321, 33.5566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5355, 33.5622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5247, 33.5727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5314, 33.5768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5308, 33.5774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5238, 33.5832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5116, 33.5846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5073, 33.5985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4983, 33.5826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5069, 33.5804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.472, 33.567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4746, 33.5636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4722, 33.5689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.468, 33.569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4648, 33.5664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4622, 33.5781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4522, 33.5864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4575, 33.5921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4537, 33.5876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4534, 33.5875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4448, 33.5937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4548, 33.5952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4496, 33.5961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4497, 33.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4462, 33.6028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4447, 33.5991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4419, 33.5993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4271, 33.5928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4234, 33.5909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.402, 33.5594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4041, 33.5575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4059, 33.5526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4123, 33.5377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4223, 33.5281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4279, 33.5234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4346, 33.5181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4299, 33.5039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4273, 33.4985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4253, 33.4937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4225, 33.4825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4199, 33.4772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4163, 33.4701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4146, 33.4656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4123, 33.4605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4092, 33.4506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.413, 33.4599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4144, 33.4641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4222, 33.4634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.408, 33.4509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4037, 33.4468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4026, 33.4425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3972, 33.4352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3974, 33.4311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3802, 33.3949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3822, 33.3918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3608, 33.3862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.367, 33.372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3674, 33.3632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3677, 33.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3698, 33.3548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.362, 33.3545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3583, 33.3504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3587, 33.3486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.348, 33.3387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3424, 33.3381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3423, 33.3315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.342, 33.3296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3432, 33.3314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3408, 33.3345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3388, 33.3319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3223, 33.3257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3134, 33.3212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3089, 33.3183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3057, 33.3163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3011, 33.3135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2963, 33.3151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2931, 33.3147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2921, 33.3152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2929, 33.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2942, 33.3167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2962, 33.3177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2975, 33.3189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3011, 33.3249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3004, 33.3293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.304, 33.3314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3113, 33.3345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3123, 33.3368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.314, 33.3414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3165, 33.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3167, 33.3454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3141, 33.351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.313, 33.3492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3118, 33.3452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3198, 33.3436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3225, 33.3442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3263, 33.3444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3304, 33.3436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.333, 33.3422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3366, 33.3446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.338, 33.3464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3524, 33.343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3543, 33.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3535, 33.3344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3387, 33.3243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3288, 33.3194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3241, 33.3177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3036, 33.3105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.296, 33.3032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2955, 33.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.299, 33.3014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.299, 33.3002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2959, 33.2953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2874, 33.2836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2822, 33.2764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2812, 33.2708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.269, 33.2628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2733, 33.2598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2742, 33.2569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2776, 33.255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.268, 33.2368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2839, 33.2466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2894, 33.2446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.287, 33.2387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2739, 33.2336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2656, 33.2364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2611, 33.2342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2561, 33.2316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2543, 33.2359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2516, 33.232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2561, 33.2261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2568, 33.2196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2563, 33.2184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2566, 33.216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2564, 33.2108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2562, 33.2085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2612, 33.2142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2495, 33.2059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2557, 33.2029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2527, 33.2122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2504, 33.2215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2536, 33.2241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.247, 33.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2308, 33.2274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2266, 33.2289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2299, 33.2316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2329, 33.2352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.233, 33.2375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2379, 33.2361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2416, 33.2359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2432, 33.2357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2445, 33.2359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2481, 33.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2498, 33.2359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2514, 33.2352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2545, 33.235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2563, 33.2351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2599, 33.2335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2626, 33.2317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2646, 33.2319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2658, 33.2323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2585, 33.2341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.256, 33.2359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.253, 33.2363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2501, 33.237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2457, 33.2362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2421, 33.242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2435, 33.2459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2451, 33.2473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2502, 33.2494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2518, 33.2503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2539, 33.2528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2553, 33.2532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2577, 33.2546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2475, 33.2527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2506, 33.2433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2476, 33.2469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2417, 33.2457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2397, 33.2466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2359, 33.2451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2354, 33.2425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2373, 33.2392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2324, 33.2378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2339, 33.2594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2287, 33.2728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2228, 33.2745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2259, 33.2784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.227, 33.2789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2271, 33.2802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2275, 33.2817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.235, 33.2919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2381, 33.2868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2197, 33.2827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2199, 33.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2129, 33.2704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2083, 33.2688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2049, 33.268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2037, 33.2706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1964, 33.2733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1931, 33.2777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2144, 33.2799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2196, 33.2719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2148, 33.2677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2055, 33.2632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2057, 33.2589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2033, 33.2593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2047, 33.2576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2059, 33.2517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1997, 33.2569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2014, 33.2539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1956, 33.2544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1944, 33.2553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1981, 33.2535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.195, 33.251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1925, 33.2497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.194, 33.2493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1933, 33.2494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1879, 33.2532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1911, 33.2493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1905, 33.2474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1887, 33.2466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1855, 33.2472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1707, 33.2495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1687, 33.2502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1392, 33.2419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1353, 33.2419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1214, 33.2353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1057, 33.2302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1029, 33.2295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0996, 33.2288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0952, 33.2278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0906, 33.2256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0877, 33.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0777, 33.2213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0815, 33.2207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1209, 33.2158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.137, 33.2116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1396, 33.2104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.146, 33.2064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1509, 33.2002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1543, 33.2001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1561, 33.2017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1552, 33.2038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1558, 33.2054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.155, 33.2063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1545, 33.2078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1568, 33.2097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1604, 33.2101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1644, 33.2079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1665, 33.2031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1675, 33.2078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1494, 33.2156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1435, 33.2071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1442, 33.198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1493, 33.1878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.151, 33.1714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1505, 33.1674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1509, 33.163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1482, 33.1596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1476, 33.1521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1493, 33.1432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1421, 33.1382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1332, 33.1352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1339, 33.1257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1326, 33.1206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.13, 33.1201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1271, 33.1101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1278, 33.1054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1284, 33.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1152, 33.0826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1107, 33.0787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.109, 33.0734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.105, 33.0703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1016, 33.0666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1012, 33.0603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0985, 33.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0933, 33.054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0927, 33.0534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0916, 33.0454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0837, 33.0454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0818, 33.0451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0699, 33.0445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0634, 33.0366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0613, 33.0359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0588, 33.0352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0559, 33.0354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0545, 33.0384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0477, 33.0343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0473, 33.0263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0467, 33.0265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0476, 33.0302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0469, 33.0337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0574, 33.0319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0559, 33.0323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.062, 33.0294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0538, 33.0304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0353, 33.0202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0311, 33.0189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0287, 33.0189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0263, 33.0184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0222, 33.0178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0196, 33.0177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.016, 33.0177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0122, 33.0184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0086, 33.0192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0029, 33.0223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9971, 33.0233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9926, 33.0106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9916, 33.0072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9902, 33.0049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9905, 33.0039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9918, 33.003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9929, 33.0024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9925, 33.0038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9847, 33.0024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9796, 33.0003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9631, 33.0016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9612, 32.9873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9653, 32.9683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9655, 32.9676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9674, 32.9687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9757, 32.9624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9766, 32.9602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9768, 32.9565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9777, 32.9558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9782, 32.9565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9781, 32.9556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9755, 32.9531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9712, 32.9458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.974, 32.9366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9758, 32.9332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.982, 32.9303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9811, 32.9231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9803, 32.9193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9802, 32.9188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9774, 32.9148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9754, 32.9116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9695, 32.9112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9613, 32.9103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9362, 32.9119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9513, 32.8966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9463, 32.8929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9388, 32.8868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.939, 32.8917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9455, 32.8879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9469, 32.8824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.946, 32.8765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9468, 32.8758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9467, 32.8672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9389, 32.8626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9264, 32.8521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9234, 32.849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9191, 32.846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9173, 32.8406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9125, 32.8372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9076, 32.8378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9066, 32.8436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9197, 32.8388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9211, 32.8312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9138, 32.8206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9054, 32.8152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8943, 32.8134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.866, 32.8122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8461, 32.8131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8378, 32.817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8267, 32.8128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8174, 32.8053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8157, 32.7974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8058, 32.7947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8013, 32.7834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8045, 32.7836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7916, 32.7995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7827, 32.8144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7825, 32.8185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7789, 32.8212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7759, 32.8225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7733, 32.8271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7732, 32.8268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7708, 32.8289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7687, 32.8309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7683, 32.8326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7662, 32.8389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7654, 32.8475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7693, 32.8633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7725, 32.8659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7739, 32.8761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.774, 32.8812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7778, 32.8825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.784, 32.8845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7868, 32.8854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7895, 32.8831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7921, 32.9081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.821, 32.9352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.83, 32.9561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8307, 32.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8301, 32.9557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8303, 32.9539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8312, 32.9528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8333, 32.9532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8366, 32.9594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8413, 32.9595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8411, 32.9679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.844, 32.9644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8392, 32.9616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8377, 32.9665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8453, 32.9699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8476, 32.974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8485, 32.9682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8449, 32.9594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8383, 32.9559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8286, 32.9553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8306, 32.9728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.842, 32.9826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8483, 32.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8604, 32.9841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8833, 32.9774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8962, 32.9786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9124, 32.9825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9121, 32.9865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9117, 32.9922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9156, 33.0008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.919, 33.0129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9218, 33.02 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9298, 33.0252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9271, 33.0359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9301, 33.0427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9286, 33.0468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9231, 33.0453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9207, 33.0464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9195, 33.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9167, 33.0748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9217, 33.0842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9336, 33.0931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9369, 33.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9421, 33.0997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9443, 33.1011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9516, 33.1072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9668, 33.1385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9693, 33.1445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9682, 33.1509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9662, 33.1532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9649, 33.1546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9633, 33.1568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9601, 33.167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9584, 33.1736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9604, 33.1771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9632, 33.1838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9623, 33.1854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9656, 33.1885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9641, 33.1916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9616, 33.1946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9625, 33.1978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.961, 33.201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9623, 33.2013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9635, 33.2036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9671, 33.2059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9743, 33.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9769, 33.2136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9811, 33.2182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9816, 33.2207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9825, 33.226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9906, 33.2323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0392, 33.2548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0441, 33.2558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.051, 33.2595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0541, 33.2643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0606, 33.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0772, 33.2902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0784, 33.2939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0836, 33.2927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0834, 33.2903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0845, 33.2858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0845, 33.2835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0862, 33.2813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0925, 33.282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0993, 33.2963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0904, 33.2958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0829, 33.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.073, 33.2905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0666, 33.2885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0674, 33.2852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0665, 33.2825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0678, 33.2802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.068, 33.2787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0642, 33.2793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.063, 33.2788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0611, 33.2809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0499, 33.2823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0656, 33.2705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0692, 33.2733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0539, 33.2762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0482, 33.281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0347, 33.2936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0247, 33.2936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0224, 33.2913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0235, 33.2924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0188, 33.2971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0312, 33.3136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0397, 33.3196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0444, 33.3229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0432, 33.3278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0423, 33.3345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0355, 33.3427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.041, 33.3668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0404, 33.3886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0409, 33.3935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0461, 33.4013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0502, 33.4126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0507, 33.4172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0542, 33.4402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0581, 33.4464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.065, 33.4574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0673, 33.4594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0727, 33.4653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0817, 33.4764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0858, 33.4814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0876, 33.4837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0893, 33.4859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0912, 33.4879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0953, 33.4902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0999, 33.4911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.103, 33.4922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1056, 33.4929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1119, 33.4947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1154, 33.4962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1211, 33.5006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.14, 33.5097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1475, 33.5144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1483, 33.5163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1502, 33.5183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1545, 33.5251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1553, 33.5304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1561, 33.5323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1584, 33.5331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1661, 33.5398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1661, 33.544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1871, 33.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2002, 33.5805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1946, 33.5891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3016, 33.6281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3302, 33.6455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3377, 33.6453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3376, 33.6453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3404, 33.6451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.341, 33.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3496, 33.6533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3436, 33.6473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3359, 33.6418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3359, 33.634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3326, 33.6312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4016, 33.6341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4137, 33.626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4439, 33.6219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4768, 33.6203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5416, 33.6534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5456, 33.6573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5565, 33.6659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5747, 33.6786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5795, 33.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6039, 33.7068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6116, 33.717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6472, 33.7604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6488, 33.7725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6463, 33.777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6448, 33.7809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6417, 33.7823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6413, 33.7828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6404, 33.784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6396, 33.7865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.639, 33.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6386, 33.7921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6379, 33.7928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6387, 33.7927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6382, 33.7934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6384, 33.7945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6422, 33.7971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6423, 33.7986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6426, 33.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6459, 33.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6475, 33.8026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6498, 33.8047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6509, 33.8067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.652, 33.8094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6573, 33.8177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6608, 33.8222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6607, 33.8243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6613, 33.8384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6592, 33.8616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6587, 33.8697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6652, 33.8831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6675, 33.8866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.653, 33.8938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6452, 33.8955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6307, 33.9007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6061, 33.8991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6265, 33.8997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6275, 33.8771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6296, 33.8837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6429, 33.8878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6595, 33.8858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7163, 33.8853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7331, 33.9176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7412, 33.9401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7337, 33.9559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.716, 33.9623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6991, 33.9529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6905, 33.9562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6558, 33.9291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6278, 33.9324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6533, 33.9416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.652, 33.9379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6215, 34.1074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6204, 34.116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.625, 34.1152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6252, 34.1151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6233, 34.1142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6245, 34.1155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6242, 34.1149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6252, 34.1154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6199, 34.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6246, 34.1134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6289, 34.1245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6354, 34.1271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6372, 34.1311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6368, 34.1337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6363, 34.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6377, 34.1404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6388, 34.1355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6355, 34.1365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6343, 34.1416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6361, 34.1429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6404, 34.1437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6446, 34.1477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6446, 34.1514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6487, 34.1535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6471, 34.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6417, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6395, 34.1502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6386, 34.1493 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6342, 34.1499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6344, 34.1487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6312, 34.1506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6379, 34.153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6331, 34.1556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6397, 34.1607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6365, 34.1637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.631, 34.1601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6309, 34.1548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6373, 34.1479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6425, 34.1483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6377, 34.1499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6324, 34.1465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6287, 34.1422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6302, 34.1385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6377, 34.142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6404, 34.1487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6447, 34.1562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6511, 34.1636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6505, 34.1696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6557, 34.1764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6624, 34.1815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6687, 34.1866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6738, 34.1938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6776, 34.1994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6809, 34.206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6755, 34.2124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.665, 34.2155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6556, 34.2195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6512, 34.2189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6448, 34.222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6471, 34.2257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6454, 34.2245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6438, 34.2246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6412, 34.2237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6367, 34.2262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6363, 34.2274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6371, 34.2301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6309, 34.2318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6259, 34.2347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6277, 34.2393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6248, 34.2424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6254, 34.2353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6248, 34.2383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6196, 34.2388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6153, 34.2423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6151, 34.2478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6163, 34.253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6235, 34.2617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6279, 34.2623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6308, 34.2615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6272, 34.2602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6296, 34.2633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6341, 34.2678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6359, 34.275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6377, 34.2835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6429, 34.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.633, 34.2979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6306, 34.3032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6293, 34.3087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6279, 34.3163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6284, 34.3192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6265, 34.318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6269, 34.3138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6262, 34.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6321, 34.3063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6295, 34.3026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6295, 34.2999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6291, 34.296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6315, 34.2915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6333, 34.2865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6302, 34.2825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.63, 34.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6294, 34.2838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6316, 34.2826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6348, 34.2807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6363, 34.2786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6391, 34.2839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6337, 34.2873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6343, 34.2865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6354, 34.2922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6365, 34.2951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6384, 34.2864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6398, 34.2886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6446, 34.2941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6446, 34.2998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6429, 34.3039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6395, 34.3112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6471, 34.3175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6481, 34.3206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6477, 34.3226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6487, 34.3206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6499, 34.3254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6506, 34.3184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6445, 34.3145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6457, 34.3084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6552, 34.2984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6657, 34.2995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6739, 34.295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6698, 34.2921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6637, 34.2897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6644, 34.2871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.657, 34.2857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6576, 34.2896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6648, 34.2934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6689, 34.3005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6671, 34.3106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6662, 34.3205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6612, 34.3311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6495, 34.3344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6465, 34.3277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6524, 34.3235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6584, 34.3194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6602, 34.315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6598, 34.3077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6603, 34.3037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.656, 34.293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.656, 34.2884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6547, 34.2874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6574, 34.2836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6606, 34.2797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6618, 34.2743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6587, 34.2696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.662, 34.2661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6668, 34.2655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6884, 34.2684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6968, 34.2696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7292, 34.2772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7364, 34.2806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7415, 34.2831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7471, 34.285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7659, 34.2974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7722, 34.3009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7868, 34.3129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8337, 34.3679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.838, 34.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8455, 34.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8703, 34.3937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8968, 34.408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9217, 34.4132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.939, 34.417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.949, 34.4176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9781, 34.4209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0108, 34.4221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0216, 34.4208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0287, 34.4207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.039, 34.4211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0474, 34.421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0566, 34.4203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0651, 34.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0743, 34.4205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0854, 34.42 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0945, 34.4206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1141, 34.4201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.124, 34.4201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1358, 34.4216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1867, 34.4222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2164, 34.4278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2342, 34.4292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2447, 34.4296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2559, 34.4264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2698, 34.4206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2782, 34.4193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2878, 34.4202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2966, 34.4225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3072, 34.4201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3234, 34.4132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3229, 34.4064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3309, 34.4045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3392, 34.3997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3452, 34.3821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3393, 34.379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3438, 34.377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3477, 34.373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3526, 34.3708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3601, 34.3683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3688, 34.358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3716, 34.3549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.378, 34.3448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3812, 34.3409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3877, 34.331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3943, 34.3133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3962, 34.3103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4012, 34.2982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.404, 34.2885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.403, 34.2776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3846, 34.2645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3804, 34.2578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3765, 34.2533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3787, 34.2446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3723, 34.2434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.372, 34.2325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3802, 34.2152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3842, 34.2056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3833, 34.2012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3831, 34.1936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3827, 34.1897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3819, 34.1851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3763, 34.1751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3638, 34.1603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3603, 34.156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3578, 34.1537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3291, 34.1263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3363, 34.1214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.339, 34.1187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.362, 34.1058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3683, 34.1011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3751, 34.0924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3773, 34.0891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3846, 34.0624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3852, 34.0557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3881, 34.052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4217, 34.0145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4538, 33.9778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4573, 33.9725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.459, 33.9693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4582, 33.9668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4491, 33.9601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.448, 33.9561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4467, 33.95 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.437, 33.9427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4291, 33.9402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4228, 33.9384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4165, 33.9355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4108, 33.9339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3977, 33.9305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3566, 33.8964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3498, 33.8895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3472, 33.8875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3438, 33.8832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3389, 33.8809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.334, 33.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3217, 33.8741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3111, 33.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3079, 33.8641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3054, 33.8623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2824, 33.8526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2609, 33.857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.256, 33.8585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2397, 33.8612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2332, 33.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2036, 33.8747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1956, 33.8774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1859, 33.8785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1676, 33.8727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1604, 33.8698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1412, 33.8644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1174, 33.8663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1154, 33.8651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1047, 33.8581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1062, 33.8654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1025, 33.8741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0531, 33.8895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0189, 33.8895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0078, 33.8851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0042, 33.8851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9994, 33.8844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9935, 33.8839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9728, 33.8845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9685, 33.8857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9611, 33.8867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9564, 33.8877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9453, 33.8887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9377, 33.8892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9314, 33.8895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9182, 33.8927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9129, 33.8949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8945, 33.9018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8836, 33.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8784, 33.9048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8691, 33.9072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8636, 33.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7789, 33.9296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7743, 33.9302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7469, 33.9419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7393, 33.9442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7296, 33.9459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7137, 33.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7051, 33.9515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6926, 33.9546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6841, 33.9557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6364, 33.9675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6145, 33.9745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6078, 33.9765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5925, 33.9837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5837, 33.9865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.567, 33.9899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5527, 33.991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5435, 33.9916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5277, 33.9962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5125, 34.0001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5128, 33.9947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5106, 33.9996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5017, 34.0108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.485, 34.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4764, 33.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4779, 33.9943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4868, 33.9883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4798, 33.9926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4727, 33.9928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4664, 33.9882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4528, 33.9841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4418, 33.9801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4231, 33.9648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4186, 33.9598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4114, 33.9556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3665, 33.9567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3593, 33.9539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.351, 33.9401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3412, 33.9369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3301, 33.9348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3066, 33.9281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2887, 33.9167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2852, 33.9144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2775, 33.9112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2706, 33.9095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2655, 33.9077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2601, 33.9054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2564, 33.9035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2515, 33.9035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2343, 33.8977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2147, 33.8893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1985, 33.8867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2078, 33.8736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2076, 33.8688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2033, 33.8621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1887, 33.8487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1833, 33.8418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.177, 33.835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1676, 33.8293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1566, 33.8184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1391, 33.7867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1357, 33.7806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1304, 33.7739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1192, 33.7643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.113, 33.7607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0865, 33.7524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0745, 33.7423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0569, 33.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0524, 33.7197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0474, 33.7135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.043, 33.7082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0384, 33.7033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0336, 33.6987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0289, 33.6935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0231, 33.6851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0226, 33.6794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0191, 33.6722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0151, 33.6665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.998, 33.6435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9919, 33.6372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9874, 33.6321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9832, 33.6272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9803, 33.6228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9744, 33.6205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9809, 33.6211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9838, 33.623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9768, 33.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9747, 33.6198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9727, 33.6163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9668, 33.619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.963, 33.6192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9586, 33.6222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9583, 33.6192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9576, 33.6204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.952, 33.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9466, 33.6191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9024, 33.6333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8924, 33.6249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8895, 33.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8713, 33.6062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8633, 33.5989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8559, 33.5934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8519, 33.5901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8094, 33.5502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8004, 33.5434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7844, 33.5349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7806, 33.5313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7677, 33.5168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.764, 33.5092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7538, 33.4939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7244, 33.4552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7193, 33.4506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7094, 33.4401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.705, 33.4355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6824, 33.412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6737, 33.4041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6662, 33.3978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6485, 33.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.621, 33.3625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6033, 33.3484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5981, 33.3439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5909, 33.3383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5676, 33.3239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5523, 33.3155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5438, 33.3115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5366, 33.3076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5108, 33.2991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5033, 33.2961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4926, 33.2914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4628, 33.2766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4457, 33.2657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4378, 33.2617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4258, 33.2556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4177, 33.2512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4103, 33.2466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3935, 33.2359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3862, 33.2289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3754, 33.2173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.369, 33.2098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3437, 33.1846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3361, 33.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3243, 33.1716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3211, 33.1669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.313, 33.155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3072, 33.1469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3009, 33.1381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2908, 33.1283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2801, 33.1209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2744, 33.1173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2658, 33.1123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2476, 33.1021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2411, 33.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2348, 33.0959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2214, 33.0885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2032, 33.0748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1908, 33.0654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1758, 33.0527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1701, 33.048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1538, 33.0329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1308, 33.0135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1242, 33.0087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1136, 32.9976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1082, 32.9932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.096, 32.9829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.09, 32.9784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0124, 32.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9817, 32.9004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9579, 32.8859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9522, 32.8822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.946, 32.8779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9274, 32.8643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9107, 32.8503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9025, 32.8455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8896, 32.8387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8826, 32.8348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8736, 32.8303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8645, 32.8258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7669, 32.7816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7554, 32.7804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.739, 32.7813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7209, 32.7814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7095, 32.7821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7016, 32.7823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.688, 32.7841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6753, 32.7775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6703, 32.775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6419, 32.7706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.619, 32.7654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6114, 32.7635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5949, 32.7607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5543, 32.7359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5255, 32.7316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5027, 32.7314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4905, 32.7294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4786, 32.7275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4667, 32.7241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4567, 32.7201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4446, 32.7158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4324, 32.7099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4178, 32.7083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4104, 32.7068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4012, 32.7025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3846, 32.6914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3702, 32.6825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3647, 32.6785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3436, 32.6678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3316, 32.6635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2981, 32.6544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2803, 32.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2731, 32.649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2596, 32.643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2447, 32.6367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2415, 32.6336 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2414, 32.6269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2361, 32.6213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2329, 32.6166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.232, 32.6067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2102, 32.5939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1972, 32.5931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1921, 32.5891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1796, 32.5841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1694, 32.5846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1381, 32.5857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1283, 32.5859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1044, 32.5878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0932, 32.5904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0844, 32.5914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.076, 32.5915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0616, 32.5935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0493, 32.5953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.032, 32.5962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9918, 32.5903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9842, 32.5874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9759, 32.5847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9659, 32.5834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9515, 32.5853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9175, 32.6008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9014, 32.6028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8942, 32.6018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8843, 32.5999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8783, 32.5987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8662, 32.5965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8525, 32.5913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.822, 32.5756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8158, 32.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8066, 32.575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7942, 32.5803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7889, 32.589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7847, 32.5925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7606, 32.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7584, 32.6035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.752, 32.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7362, 32.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7313, 32.6143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7128, 32.6203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.695, 32.6239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.665, 32.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6435, 32.6165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6369, 32.6181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6311, 32.6188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6245, 32.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5841, 32.6113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5715, 32.6088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5627, 32.6079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5249, 32.6064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5034, 32.6089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4934, 32.6095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4866, 32.6101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.481, 32.6115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4693, 32.6146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4595, 32.6161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4528, 32.6189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4422, 32.6304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4356, 32.6343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4341, 32.6311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4311, 32.6606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4178, 32.6628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4156, 32.6575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4067, 32.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4088, 32.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4143, 32.6441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4088, 32.6489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3949, 32.6522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.378, 32.6656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3893, 32.6758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4202, 32.6708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4209, 32.6797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4265, 32.6753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4204, 32.6704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3819, 32.6835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3804, 32.6869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3586, 32.6715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3514, 32.6713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3463, 32.6767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3408, 32.6827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3346, 32.6768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3318, 32.6726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3283, 32.6644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3254, 32.6549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3222, 32.6448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3233, 32.6367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3269, 32.6257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3278, 32.6292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3325, 32.6363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3318, 32.635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3307, 32.6257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3241, 32.6199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3073, 32.5799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.299, 32.562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2772, 32.5475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2717, 32.5436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2702, 32.5398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2656, 32.5372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2616, 32.5352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2593, 32.532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2607, 32.5175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2625, 32.5086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2623, 32.5041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2587, 32.5028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2517, 32.4898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2482, 32.4791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2408, 32.4719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.231, 32.4661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2245, 32.4601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2195, 32.4618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.221, 32.4684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2274, 32.4632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2353, 32.4552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2363, 32.4491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2353, 32.4437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2297, 32.4437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2251, 32.4499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2204, 32.4507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.219, 32.444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2188, 32.439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2173, 32.4344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2139, 32.4155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2073, 32.4046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2058, 32.3998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1942, 32.3665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1923, 32.3599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1892, 32.3428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1904, 32.3383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1909, 32.3329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1924, 32.3197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1937, 32.3129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1941, 32.3063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1996, 32.2942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2035, 32.2906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2043, 32.2865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2018, 32.2811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1954, 32.2753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1768, 32.2652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1698, 32.2619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1616, 32.2583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.129, 32.2255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1228, 32.2202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1031, 32.2031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0949, 32.1998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.088, 32.1948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0787, 32.1922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0716, 32.1928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0527, 32.1807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.047, 32.1804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0221, 32.1782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0175, 32.1796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0003, 32.1765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9956, 32.1742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9908, 32.1728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9819, 32.1649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9689, 32.1644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9283, 32.1192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9278, 32.1155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9319, 32.1138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9391, 32.1115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9424, 32.106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9392, 32.1023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9291, 32.0915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9221, 32.0879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9195, 32.0831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9159, 32.0776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.915, 32.0781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9129, 32.0757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9109, 32.0778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9243, 32.1 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9346, 32.1015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9337, 32.1013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9347, 32.0856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9332, 32.0742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9375, 32.0687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.937, 32.0717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9366, 32.0751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9363, 32.0879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9313, 32.0942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9202, 32.0925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.91, 32.0749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.906, 32.0646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9086, 32.0614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9139, 32.0588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9185, 32.0276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9184, 32.0235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9229, 32.016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9178, 32.0079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9219, 32.004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9224, 32.0057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.918, 32.0057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9098, 32.0024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8816, 31.9971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8742, 31.9912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8422, 31.9599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.844, 31.9439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8482, 31.9392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8525, 31.9372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.869, 31.9417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8423, 31.9547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8355, 31.9598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8176, 31.9353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8152, 31.9283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.862, 31.9576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8826, 31.9777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8856, 31.9821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8949, 31.9831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9204, 31.9768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9265, 31.9767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9358, 31.9762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9409, 31.9779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.945, 31.973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9499, 31.97 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9582, 31.9721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9657, 31.9655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9752, 31.961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9832, 31.9593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0007, 31.9598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0515, 31.9384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0559, 31.9161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0495, 31.9012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0177, 31.8857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0123, 31.8823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0091, 31.8837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9979, 31.8813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.994, 31.8787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9601, 31.8513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9561, 31.8506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9509, 31.8497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.942, 31.8483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9393, 31.8484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9342, 31.8472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9272, 31.8453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8951, 31.8453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8643, 31.8472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8593, 31.8481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8498, 31.8479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8322, 31.8438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8189, 31.8365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8151, 31.8314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8237, 31.8206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8234, 31.8145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8218, 31.8094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.82, 31.8021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8136, 31.7823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8051, 31.7787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7985, 31.7743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7922, 31.7704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7847, 31.7655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7759, 31.7578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7655, 31.7507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7629, 31.7426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7621, 31.7392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7628, 31.7328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7591, 31.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7596, 31.7172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7481, 31.71 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7354, 31.7033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7308, 31.6975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7285, 31.6806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.749, 31.6562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7671, 31.6433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7783, 31.6309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.791, 31.6178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8093, 31.6161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8177, 31.6116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8021, 31.6038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7839, 31.6008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7616, 31.5959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7392, 31.5942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7205, 31.5912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7036, 31.5862 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.687, 31.5799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6815, 31.5834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6741, 31.5879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6763, 31.6005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6795, 31.6063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.677, 31.6096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6833, 31.6093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6799, 31.603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6852, 31.5936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.694, 31.5821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6984, 31.5777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7042, 31.5767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7068, 31.5715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.707, 31.5657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7081, 31.5603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6995, 31.5038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7011, 31.4948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7068, 31.4871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7113, 31.4767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7145, 31.4683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7222, 31.4507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7195, 31.4359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7223, 31.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7217, 31.3821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.711, 31.366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7076, 31.3586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6957, 31.3173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6922, 31.3056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6899, 31.2801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6879, 31.2205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.6936, 31.2023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7014, 31.1794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7126, 31.1677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7178, 31.1633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7282, 31.1514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.739, 31.1398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7423, 31.1385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7466, 31.1299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7516, 31.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7571, 31.1168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.7999, 31.0952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8124, 31.0882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8211, 31.084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8313, 31.08 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8385, 31.0756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8566, 31.0673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8673, 31.0628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.8988, 31.0611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9085, 31.062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9191, 31.0658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -116.9375, 31.0702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.023, 31.0695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0535, 31.0672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0653, 31.0654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.0908, 31.0645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1009, 31.0648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1502, 31.0654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1678, 31.0631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1811, 31.0615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.1898, 31.0619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2304, 31.0589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2413, 31.0583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2791, 31.058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.2926, 31.0561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3179, 31.0545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3609, 31.0524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3716, 31.0522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3854, 31.0558 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.3989, 31.0568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4004, 31.0572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4003, 31.0596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4022, 31.061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4053, 31.0655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4086, 31.0662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4278, 31.0709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4389, 31.0737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4427, 31.0758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4485, 31.0694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4543, 31.0691 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.46, 31.0683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4714, 31.072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4759, 31.0725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5048, 31.0802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5164, 31.0806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5233, 31.0804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5264, 31.0788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5446, 31.0817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.555, 31.0819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5702, 31.0807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.5827, 31.0811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6098, 31.0831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6226, 31.0845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6323, 31.0886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6574, 31.0936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.6934, 31.099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7157, 31.1024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7528, 31.1066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7657, 31.1075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7776, 31.108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7919, 31.1072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8061, 31.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8195, 31.1051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8326, 31.1032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8457, 31.1022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.857, 31.1022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8926, 31.0995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9024, 31.0978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9126, 31.096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9232, 31.097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9831, 31.1065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0215, 31.1089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0529, 31.1163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0741, 31.1178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0971, 31.1201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1267, 31.1193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1402, 31.1198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.172, 31.1198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.1904, 31.1182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2184, 31.1208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2449, 31.1254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2911, 31.1299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3026, 31.1323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3456, 31.1473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3618, 31.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4131, 31.1712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4195, 31.1718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4258, 31.1746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.456, 31.1877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4617, 31.1947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4683, 31.2074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4714, 31.2118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4777, 31.2129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4818, 31.2131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.485, 31.2162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4863, 31.2196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4879, 31.2271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4972, 31.2408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5027, 31.2416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5112, 31.2527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5146, 31.2602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5226, 31.2788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5239, 31.2823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5305, 31.2827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5491, 31.2904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5877, 31.3219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6287, 31.3403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.641, 31.3449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.65, 31.3463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6769, 31.3569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6872, 31.3614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6959, 31.3656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7138, 31.3777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7631, 31.389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7675, 31.3925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7819, 31.3972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7889, 31.4001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8004, 31.4042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8636, 31.4167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9302, 31.447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.964, 31.4595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9726, 31.4641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0221, 31.4871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0387, 31.502 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0453, 31.5046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0539, 31.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.061, 31.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0674, 31.521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0937, 31.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1226, 31.5053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.132, 31.5073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1354, 31.5138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1483, 31.5225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1453, 31.5311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1506, 31.5412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1543, 31.5414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1608, 31.5447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1737, 31.5447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1776, 31.5495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1852, 31.5653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1837, 31.572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1855, 31.5853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.177, 31.5918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1584, 31.5942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1536, 31.5938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1488, 31.5968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1429, 31.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1168, 31.6274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1178, 31.6314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.122, 31.6384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1289, 31.6444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1327, 31.648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1354, 31.6511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1398, 31.657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1413, 31.6603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1476, 31.6659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1592, 31.6716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1642, 31.6745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1736, 31.682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.1772, 31.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2046, 31.6979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2198, 31.7042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.232, 31.711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2533, 31.7342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2547, 31.7409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2567, 31.7456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2595, 31.7495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3053, 31.7827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3094, 31.7811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3198, 31.7787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3393, 31.7757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3516, 31.7783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3661, 31.7794 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3707, 31.7778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3765, 31.7765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3801, 31.7764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3913, 31.7749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4357, 31.7629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4447, 31.7589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.448, 31.7592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4543, 31.7583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4592, 31.7601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4886, 31.7507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.496, 31.7435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4992, 31.7445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5093, 31.7181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5029, 31.7076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5018, 31.6957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5055, 31.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5097, 31.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5157, 31.6889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5196, 31.6839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5284, 31.6777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5575, 31.6679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5623, 31.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5835, 31.6719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5917, 31.6771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5945, 31.6791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6034, 31.6848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6292, 31.6855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6322, 31.6885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6369, 31.6899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6428, 31.6918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6461, 31.6909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6516, 31.6899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6541, 31.6902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6662, 31.6903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6708, 31.6898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6796, 31.6929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6855, 31.6965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6886, 31.6949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6985, 31.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7304, 31.6839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.733, 31.6902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7393, 31.6992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7472, 31.6982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7478, 31.7024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7548, 31.7115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7578, 31.7147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7602, 31.7141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7713, 31.7007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7728, 31.6953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7779, 31.6814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7834, 31.6758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.788, 31.6716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8166, 31.6282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8217, 31.6238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8268, 31.6191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8519, 31.6101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8755, 31.6094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8836, 31.6164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9194, 31.6384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9197, 31.6474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9021, 31.6739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9044, 31.6736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9082, 31.6731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9138, 31.6751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9224, 31.6729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9243, 31.6723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9286, 31.6763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9321, 31.6804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9352, 31.6899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9425, 31.6915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9493, 31.704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9568, 31.7045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9564, 31.7062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9506, 31.709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9488, 31.7116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9429, 31.7165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9497, 31.7394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9502, 31.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9506, 31.7477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9503, 31.7517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9454, 31.7682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9411, 31.7722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9248, 31.7804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.923, 31.7841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9233, 31.7923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9242, 31.7963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9236, 31.8054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9231, 31.8098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9237, 31.8242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9343, 31.8368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9478, 31.8538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.955, 31.8617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9622, 31.8709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9655, 31.8752 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9769, 31.9021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9849, 31.9151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9891, 31.9189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9922, 31.9227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.996, 31.942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9978, 31.9457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0032, 31.9521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0448, 31.9577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0496, 31.9618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0619, 31.9715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0646, 31.9765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0676, 31.9807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0717, 31.9852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.079, 31.9901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1236, 32.0218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1285, 32.0227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1356, 32.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1581, 32.0415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1742, 32.0578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1818, 32.0676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1854, 32.0672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1921, 32.0633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1977, 32.0665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2004, 32.0683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2069, 32.0645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2113, 32.0644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2212, 32.0689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.225, 32.0694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2435, 32.0723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2468, 32.0728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2773, 32.0905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2892, 32.0929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2951, 32.0988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2975, 32.1005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2996, 32.1029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.303, 32.1052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3074, 32.1139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.336, 32.1315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3493, 32.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3579, 32.1263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3977, 32.1353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4037, 32.1497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4083, 32.1598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4278, 32.2012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4314, 32.2096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.434, 32.2147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4373, 32.223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4413, 32.2312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.458, 32.2645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4649, 32.2751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.477, 32.2876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4887, 32.3014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5001, 32.3173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.51, 32.34 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.54, 32.3903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5462, 32.4028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5513, 32.4097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5617, 32.4235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5724, 32.4393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5815, 32.4528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5868, 32.4593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5978, 32.4837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5986, 32.4918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6013, 32.4994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6245, 32.5447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6255, 32.5516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6324, 32.5663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6378, 32.5808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6776, 32.6131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6823, 32.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6814, 32.6589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6854, 32.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6865, 32.6682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6902, 32.6758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6945, 32.6748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7017, 32.6784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7039, 32.6822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7128, 32.6887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7168, 32.6893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7192, 32.693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7196, 32.6978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7241, 32.7009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7287, 32.7026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.734, 32.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.736, 32.7259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7395, 32.725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7442, 32.7289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7468, 32.7361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.745, 32.7476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.746, 32.7513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7658, 32.7596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7729, 32.7589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7902, 32.7629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8015, 32.7712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8039, 32.7757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.831, 32.748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8388, 32.7458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8484, 32.7433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8532, 32.7417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8609, 32.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8747, 32.7453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8933, 32.7617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8979, 32.7749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.899, 32.8031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9023, 32.8117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9061, 32.8152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9164, 32.8332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9159, 32.8459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.927, 32.8604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9297, 32.8659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9286, 32.8696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9255, 32.8849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.928, 32.8906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9372, 32.8977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9565, 32.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9574, 32.9069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9625, 32.9046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9689, 32.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9676, 32.8873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9595, 32.8859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9548, 32.8886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9505, 32.8909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9485, 32.8934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9416, 32.9021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9455, 32.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9529, 32.9074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.96, 32.9107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9658, 32.9087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9701, 32.9124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9764, 32.9119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9768, 32.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9802, 32.9016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9812, 32.9016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9852, 32.9044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9875, 32.9085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9936, 32.9092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9977, 32.9076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9985, 32.9098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0005, 32.9109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0042, 32.9097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0058, 32.9123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0061, 32.9155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0078, 32.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0017, 32.9307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.995, 32.9302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9878, 32.9307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9816, 32.9292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9816, 32.9318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9852, 32.9323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9825, 32.9339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9704, 32.9396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9673, 32.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9634, 32.9423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.962, 32.9467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9594, 32.9532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9649, 32.9555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9844, 32.9568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9875, 32.9615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9945, 32.9686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.994, 32.9744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0013, 32.9917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0063, 33.0009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0077, 33.0059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0138, 33.0141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0216, 33.0199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0314, 33.0209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0261, 33.025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0221, 33.028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0188, 33.0299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0104, 33.0357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0069, 33.0366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0013, 33.0376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9937, 33.0384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9908, 33.0346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9895, 33.0399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9993, 33.0397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0019, 33.0438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0097, 33.0433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0125, 33.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0178, 33.043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0221, 33.0521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.017, 33.0559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0133, 33.0644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0103, 33.0678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0074, 33.076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9941, 33.0824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9888, 33.0851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9829, 33.0894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9801, 33.0928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9762, 33.0957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9727, 33.0966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9657, 33.0979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9582, 33.1011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.953, 33.1049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.97, 33.1112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9757, 33.1074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9856, 33.1122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.991, 33.1259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9856, 33.1262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9768, 33.1294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9722, 33.1299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9663, 33.1293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9616, 33.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9574, 33.1363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9548, 33.1386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9385, 33.147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.944, 33.1561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9448, 33.1587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9502, 33.1578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9526, 33.1569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.955, 33.1545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9546, 33.1586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9417, 33.159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.931, 33.1669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9308, 33.1689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9274, 33.1765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9156, 33.1791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9039, 33.1784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.893, 33.1797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8868, 33.182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8786, 33.1887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8716, 33.1912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8681, 33.1902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8614, 33.1932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.847, 33.2065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8313, 33.2101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8261, 33.2195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8285, 33.2404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8398, 33.2645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8433, 33.2686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8449, 33.2781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8469, 33.2836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.847, 33.2896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8409, 33.3096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.845, 33.3269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.863, 33.3463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8668, 33.3518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8599, 33.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8552, 33.4043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8521, 33.4084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8493, 33.4123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8456, 33.4155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.84, 33.4206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8321, 33.4294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8293, 33.433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.823, 33.4453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8266, 33.454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8256, 33.4635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8275, 33.4755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8281, 33.4791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8305, 33.487 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8429, 33.5101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8515, 33.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8582, 33.5473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8652, 33.5553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8716, 33.5626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8769, 33.5708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8783, 33.5737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8859, 33.5824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8991, 33.6053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8986, 33.6076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9047, 33.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9131, 33.6184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9159, 33.6236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9301, 33.6427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9294, 33.6456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9288, 33.6503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9312, 33.6556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9333, 33.6615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9411, 33.6694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9529, 33.6895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9601, 33.6925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9665, 33.6958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9802, 33.7095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.982, 33.7126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.984, 33.7159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9858, 33.7194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9896, 33.723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0008, 33.7262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0278, 33.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0505, 33.7142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0514, 33.7166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0555, 33.7196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.059, 33.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0617, 33.7217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0659, 33.7224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0675, 33.7248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0725, 33.7279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0893, 33.7366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1371, 33.7817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1455, 33.791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1545, 33.8012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1655, 33.819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1706, 33.8295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1732, 33.8371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1758, 33.8411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1811, 33.8509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1872, 33.8618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1919, 33.8715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1961, 33.8806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2007, 33.8885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2011, 33.8924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2111, 33.9095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2206, 33.9318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2291, 33.9547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2327, 33.9646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.236, 33.9975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2374, 34.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2385, 34.0184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2405, 34.0392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2413, 34.0488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2408, 34.0943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2414, 34.1155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2418, 34.1281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.242, 34.1377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.242, 34.1531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2455, 34.178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.251, 34.1851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2554, 34.1841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2528, 34.211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.25, 34.2406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2482, 34.2437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2506, 34.2555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2527, 34.2633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2524, 34.2671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2559, 34.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2572, 34.2881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2536, 34.2972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2563, 34.3058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2567, 34.3148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2596, 34.325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2608, 34.3353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2591, 34.3426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2616, 34.3512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2621, 34.3693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2733, 34.3948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2742, 34.4006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2741, 34.4108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2729, 34.422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2702, 34.4308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2518, 34.4567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2527, 34.4571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2598, 34.4598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2622, 34.473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2587, 34.4813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2564, 34.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2441, 34.5117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2375, 34.5298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2179, 34.536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2111, 34.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1941, 34.5341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1948, 34.5312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2244, 34.5205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2336, 34.5206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.247, 34.5209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2602, 34.5243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2719, 34.5281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3, 34.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3133, 34.5445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3339, 34.5591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3535, 34.5807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3588, 34.5927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3652, 34.5997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3736, 34.6103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3849, 34.6338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4027, 34.6541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4162, 34.6809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4208, 34.6925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4282, 34.7112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4308, 34.7178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4329, 34.7354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4313, 34.7376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4272, 34.7428 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4371, 34.7668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4397, 34.7737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4505, 34.7975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4524, 34.802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4587, 34.8104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.47, 34.8212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4798, 34.8246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4878, 34.833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5029, 34.8408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5077, 34.8441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.507, 34.8486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.501, 34.8566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4987, 34.8581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4953, 34.8605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4871, 34.866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.485, 34.8725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4806, 34.8814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4663, 34.8966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4435, 34.9129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4354, 34.9203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.431, 34.9258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4338, 34.9274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4378, 34.9285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4382, 34.9236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4317, 34.9226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4236, 34.9139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4252, 34.9124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4317, 34.9061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4406, 34.9405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4585, 34.9765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4364, 35.0587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.428, 35.1031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4067, 35.2385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4059, 35.2795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.393, 35.3108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3513, 35.394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3545, 35.4235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3562, 35.4548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3546, 35.5609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3302, 35.5925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2923, 35.6577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3245, 35.6711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5004, 35.9126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6075, 36.0316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6628, 36.1176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7713, 36.2085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8563, 36.2447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8958, 36.2604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9334, 36.2682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9621, 36.2946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.072, 36.3713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1154, 36.3793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1641, 36.3839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2068, 36.3919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2411, 36.4095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3852, 36.4368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4911, 36.4488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5211, 36.4676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5269, 36.4861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5236, 36.4978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6245, 36.5765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6727, 36.6075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7844, 36.6886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8545, 36.7443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9387, 36.8719 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9157, 36.8884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8929, 36.8983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.624, 34.1159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6254, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6251, 34.1348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6284, 34.1329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6416, 34.1332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6387, 34.1362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6358, 34.1293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6313, 34.131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6364, 34.1314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.633, 34.127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6401, 34.128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6414, 34.1285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6415, 34.133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6425, 34.1413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.643, 34.1407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6392, 34.1399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6436, 34.1417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6484, 34.1454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6373, 34.1423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.642, 34.1431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6427, 34.1465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6489, 34.1546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6564, 34.161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6562, 34.1642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6577, 34.1692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6653, 34.1738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6731, 34.1787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6822, 34.1855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6906, 34.1926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6991, 34.196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7075, 34.2012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7143, 34.2076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7209, 34.2131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7268, 34.2185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7326, 34.2231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7386, 34.23 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7444, 34.2361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.75, 34.2415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7642, 34.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7691, 34.2601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7742, 34.2684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.781, 34.278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7888, 34.2864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7969, 34.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.806, 34.2954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8175, 34.2945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8285, 34.2933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8372, 34.2926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8586, 34.2836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8651, 34.2799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8789, 34.2751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8925, 34.2726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8985, 34.2703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9178, 34.2651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9245, 34.2616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9311, 34.2583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9992, 34.2289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0319, 34.2123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0508, 34.2054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0582, 34.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0524, 34.2031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0655, 34.2018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0847, 34.1986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1164, 34.1938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1344, 34.1883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1532, 34.1853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1727, 34.1806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1884, 34.184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1874, 34.2011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1831, 34.2189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1749, 34.2365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1776, 34.2452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1817, 34.2552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1866, 34.2697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1965, 34.2891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2067, 34.3076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2107, 34.3197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2048, 34.3255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1988, 34.3365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2, 34.3506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2089, 34.3626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2027, 34.3514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1845, 34.3789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1823, 34.3909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1818, 34.4037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1826, 34.4157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1905, 34.4273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.196, 34.4332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1818, 34.4501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1748, 34.4536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1707, 34.4598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1721, 34.4685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.177, 34.4733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1823, 34.4784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1806, 34.4883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1721, 34.4964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1625, 34.4989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1628, 34.5106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1688, 34.5215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1722, 34.5298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1761, 34.539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1734, 34.5483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1728, 34.5536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1693, 34.5556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1786, 34.5616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1792, 34.5593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1709, 34.5682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1614, 34.5765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1519, 34.5818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1504, 34.5866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1463, 34.5915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1402, 34.5928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1337, 34.5909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1276, 34.5931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1306, 34.5917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1333, 34.5903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1326, 34.5927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1293, 34.6011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1251, 34.6058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1162, 34.6107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1077, 34.6166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0998, 34.6243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0891, 34.6344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0827, 34.6396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0814, 34.6393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0821, 34.6419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0832, 34.6411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0838, 34.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0801, 34.6414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0813, 34.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0795, 34.6429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0781, 34.6443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0714, 34.6477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0626, 34.6546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0535, 34.6612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0457, 34.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0382, 34.6749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0307, 34.6801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0265, 34.6833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0212, 34.6874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0185, 34.6907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0096, 34.6975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0032, 34.7041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0002, 34.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9974, 34.7118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9946, 34.7159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9917, 34.7201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9833, 34.7313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9785, 34.7381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9766, 34.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9711, 34.7491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9639, 34.7571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9513, 34.7709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9487, 34.7803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9396, 34.7874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9309, 34.7931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9212, 34.8005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9103, 34.807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9018, 34.8119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8998, 34.8134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8937, 34.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8913, 34.8147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8895, 34.8153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8843, 34.8178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8819, 34.8179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8804, 34.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8798, 34.8159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8744, 34.8148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8712, 34.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8795, 34.8109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8891, 34.8181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8859, 34.8196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8779, 34.8128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8783, 34.811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8772, 34.8087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8736, 34.7999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8717, 34.795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8761, 34.7846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8841, 34.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8919, 34.7812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9007, 34.782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9211, 34.7831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9374, 34.7891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9465, 34.7927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9582, 34.7961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9693, 34.7999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9921, 34.8065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.005, 34.8095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.02, 34.8158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.025, 34.8178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0293, 34.8193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0391, 34.8235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0428, 34.8252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0511, 34.8296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0611, 34.8329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0714, 34.8374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0794, 34.8411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0853, 34.8433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0934, 34.8461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1017, 34.8481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1087, 34.8501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1223, 34.8549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1254, 34.8556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1311, 34.8583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1329, 34.8588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.136, 34.8594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.138, 34.8588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1436, 34.8591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1459, 34.8594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.148, 34.8599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1519, 34.8609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1606, 34.8674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1742, 34.8758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.177, 34.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1837, 34.8804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1897, 34.8838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.198, 34.8878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2009, 34.8891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2042, 34.8909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.213, 34.8938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.223, 34.8962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2308, 34.8982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2365, 34.8992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2502, 34.9034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2628, 34.9101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2701, 34.9149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2742, 34.9177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2804, 34.9222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2931, 34.9287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.298, 34.9323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3027, 34.9354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3103, 34.9414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3166, 34.9452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3233, 34.9491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3302, 34.9538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3346, 34.9572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3389, 34.9604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3458, 34.9649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3535, 34.9663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3711, 34.9672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3828, 34.9676 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3989, 34.9735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4048, 34.9773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4094, 34.9802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4149, 34.9837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4213, 34.9875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4282, 34.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4505, 34.9981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4586, 35.0024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4645, 35.0038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4751, 35.0098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.481, 35.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.49, 35.0117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4947, 35.0118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5007, 35.0113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5078, 35.0121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5176, 35.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5249, 35.0104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5314, 35.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5381, 35.0109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5439, 35.01 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5598, 35.0117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5697, 35.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.578, 35.0134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5901, 35.0125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5976, 35.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6056, 35.0129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6124, 35.013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6309, 35.0132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6415, 35.0124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6648, 35.0121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6721, 35.0121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6822, 35.0123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6903, 35.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6977, 35.0139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7031, 35.0148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.709, 35.0164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7161, 35.0189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7211, 35.0221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.727, 35.0261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7315, 35.0288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7375, 35.0324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7479, 35.0384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7547, 35.0416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.76, 35.0443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7748, 35.0516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7924, 35.06 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7967, 35.0621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8027, 35.0647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8079, 35.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8118, 35.0694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8199, 35.0734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8254, 35.0759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8321, 35.0792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8386, 35.0822 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8456, 35.0854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8543, 35.0885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8592, 35.0895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8699, 35.0923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8775, 35.0936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8842, 35.0944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8895, 35.0945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8957, 35.095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9112, 35.0984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.917, 35.0994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9225, 35.1007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9279, 35.1008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9326, 35.1009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9387, 35.1014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9461, 35.1012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9528, 35.1007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9598, 35.1007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9683, 35.1018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9762, 35.1018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9818, 35.102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9937, 35.1038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0009, 35.1039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.007, 35.1048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0129, 35.1044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0185, 35.1048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0244, 35.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0317, 35.1035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.038, 35.1026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.046, 35.1027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0527, 35.1029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0606, 35.1025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0653, 35.1038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0719, 35.1049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0776, 35.1059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0836, 35.107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0885, 35.1077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.095, 35.1087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0996, 35.1101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1048, 35.1115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1141, 35.1145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1286, 35.1177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.14, 35.12 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1452, 35.1203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1507, 35.1208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.157, 35.1219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1635, 35.1229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1716, 35.1234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.178, 35.1236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1863, 35.1265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1941, 35.1275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.201, 35.1302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2101, 35.1328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2186, 35.1352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2247, 35.1372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2407, 35.1413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2534, 35.1446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2603, 35.1539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2684, 35.1584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2754, 35.1636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2838, 35.1658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.29, 35.1677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2966, 35.1689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3034, 35.1702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3093, 35.1727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3154, 35.1759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3213, 35.1777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3291, 35.1784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3321, 35.1782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.336, 35.1784 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3388, 35.1782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3442, 35.1767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3476, 35.1758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3517, 35.1746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3547, 35.1739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3583, 35.1736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.365, 35.1727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3692, 35.172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3736, 35.1702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3874, 35.1602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3902, 35.1573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.396, 35.1549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4035, 35.1543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4077, 35.1535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4126, 35.1525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4167, 35.1519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4201, 35.1519 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4243, 35.1484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4292, 35.1486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4364, 35.1506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4398, 35.1513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4465, 35.1516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4497, 35.1521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.453, 35.152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4665, 35.157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4684, 35.1626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4831, 35.1698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.487, 35.1716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4905, 35.1735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4955, 35.1783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.498, 35.1872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4969, 35.1939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4979, 35.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4966, 35.2101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4995, 35.2172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5037, 35.224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.51, 35.231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5128, 35.2402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5162, 35.243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.522, 35.248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5247, 35.2635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5229, 35.2706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5238, 35.2777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5272, 35.2858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5311, 35.2917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5368, 35.2976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.535, 35.3033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5349, 35.3053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5278, 35.3023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5281, 35.3033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5269, 35.3046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5205, 35.308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5176, 35.3091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5207, 35.3107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5196, 35.3159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5162, 35.3165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5184, 35.3122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5242, 35.3192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.523, 35.3258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5266, 35.333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5307, 35.3366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5352, 35.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5366, 35.3478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5397, 35.3536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.547, 35.3567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5508, 35.3594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5574, 35.3615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5623, 35.3644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5665, 35.3687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5687, 35.3745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5715, 35.3785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5728, 35.3823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.576, 35.3848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5799, 35.3888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5839, 35.3915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5895, 35.3945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5951, 35.3982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6003, 35.4015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6056, 35.4046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6122, 35.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6156, 35.4103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6187, 35.4144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6204, 35.4213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.62, 35.4259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6312, 35.4319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6397, 35.4341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6473, 35.4377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6502, 35.4433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6507, 35.4458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6527, 35.4504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6568, 35.4568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6589, 35.4593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6604, 35.465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6633, 35.4721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6696, 35.4845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6701, 35.4874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6706, 35.4932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6701, 35.5032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6696, 35.5094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6656, 35.515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6584, 35.5236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.657, 35.5275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6546, 35.5298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6461, 35.5351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.641, 35.5363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.639, 35.5387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6335, 35.5473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6299, 35.5541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6278, 35.5571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6248, 35.5589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.622, 35.5637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6212, 35.5665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6218, 35.568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6227, 35.5703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6244, 35.5724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6266, 35.5731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6295, 35.5768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.631, 35.5797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6337, 35.583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6356, 35.5878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6367, 35.5924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6411, 35.5975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6441, 35.5995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.646, 35.6005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6496, 35.6028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6557, 35.6081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6584, 35.6103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6595, 35.6123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6614, 35.6147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6655, 35.6178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6682, 35.6181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6703, 35.6219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6723, 35.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6743, 35.6259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.675, 35.6281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6759, 35.6327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6784, 35.6377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6805, 35.6433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6799, 35.6467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.681, 35.6518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6882, 35.6596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.693, 35.6637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.698, 35.668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7083, 35.6786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.715, 35.6899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7181, 35.6987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7203, 35.7032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7242, 35.7114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7248, 35.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.727, 35.7227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7186, 35.7338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7169, 35.7379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7129, 35.7442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7116, 35.7497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7111, 35.7542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7098, 35.7729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7091, 35.7767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7091, 35.7811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7107, 35.7946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7126, 35.7992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7123, 35.8063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7118, 35.8116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7128, 35.8164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7169, 35.829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7124, 35.8333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7095, 35.8384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7054, 35.8498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7046, 35.8541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7025, 35.8568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6985, 35.8705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6969, 35.8738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6959, 35.8783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6943, 35.8855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6928, 35.8902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.691, 35.8985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6902, 35.9024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6893, 35.9067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6873, 35.9117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6851, 35.9164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6836, 35.9201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6818, 35.9241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6804, 35.9288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6773, 35.9355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6759, 35.9394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6745, 35.9434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.664, 35.9609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6617, 35.9655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6513, 35.9808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6481, 35.984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6425, 35.9908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6262, 36.0081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.623, 36.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6165, 36.0155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6088, 36.0211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.604, 36.0231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.599, 36.0254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5921, 36.0286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5898, 36.0312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5913, 36.0355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.593, 36.0431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5943, 36.0474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.601, 36.0543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6064, 36.0565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6128, 36.0592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.616, 36.0598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6242, 36.0588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6254, 36.0533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.621, 36.0497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6162, 36.0463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6079, 36.0433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6042, 36.0392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6015, 36.0342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5934, 36.0298 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5871, 36.0213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5864, 36.0168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5866, 36.0092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5856, 36.0043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5844, 35.9991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5805, 35.9929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5783, 35.9883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5755, 35.9825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5705, 35.9793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5663, 35.9748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5621, 35.9672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5574, 35.9619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5549, 35.9583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5531, 35.9546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5514, 35.9479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5493, 35.9427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5466, 35.9355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5438, 35.9277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5401, 35.9241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5367, 35.9213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.531, 35.9178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5266, 35.9183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5211, 35.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5171, 35.9126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5141, 35.9049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5182, 35.8878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5168, 35.8823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5165, 35.8759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5148, 35.8705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5071, 35.8616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4984, 35.8572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4931, 35.8551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4875, 35.8504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4824, 35.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4783, 35.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4717, 35.8328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4742, 35.8282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4757, 35.8198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4745, 35.8172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4806, 35.8069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4823, 35.8018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4857, 35.7977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4876, 35.7922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4902, 35.7883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4884, 35.7835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4888, 35.7803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4868, 35.7749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4843, 35.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4786, 35.7613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4756, 35.7547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4765, 35.7494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4757, 35.7444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4731, 35.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4659, 35.7359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4594, 35.7324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4572, 35.7208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4552, 35.7147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.457, 35.7112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4662, 35.7092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.47, 35.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4727, 35.7017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4749, 35.6971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4791, 35.6915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.48, 35.6859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4796, 35.6817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.488, 35.6742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4902, 35.6704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4932, 35.666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4936, 35.6564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5015, 35.6457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5054, 35.6421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5084, 35.6389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5096, 35.6353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.511, 35.6314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5156, 35.6249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.517, 35.6204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5164, 35.6154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5132, 35.5934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5126, 35.5832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5092, 35.5702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5115, 35.565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.514, 35.5607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5197, 35.5554 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5239, 35.5452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5255, 35.54 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5351, 35.5325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5391, 35.525 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5388, 35.5126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.535, 35.5046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5315, 35.4997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5234, 35.4969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5127, 35.4927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5077, 35.4859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5038, 35.4775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5048, 35.471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5061, 35.466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5075, 35.4631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5167, 35.4572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5212, 35.4582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5246, 35.4556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5271, 35.4523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5289, 35.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5301, 35.4419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5277, 35.4338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5252, 35.4197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5217, 35.4141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.517, 35.4085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5129, 35.4046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5067, 35.3944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4957, 35.3809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4891, 35.3747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4873, 35.3669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4819, 35.3581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4739, 35.3541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4666, 35.3514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4608, 35.3505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4505, 35.3511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4376, 35.3509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4279, 35.3485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.422, 35.3465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4115, 35.3456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4017, 35.3443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3929, 35.3424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3772, 35.3381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.371, 35.3361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3615, 35.3373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3516, 35.3357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3405, 35.3322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3334, 35.332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3241, 35.3284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3198, 35.3261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3136, 35.3263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.308, 35.3256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2972, 35.3233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2841, 35.3224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2796, 35.3193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2742, 35.3158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2674, 35.3127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.258, 35.3086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2509, 35.3038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2449, 35.3001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2387, 35.2988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2258, 35.2975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2199, 35.2939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2123, 35.2869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2032, 35.2838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1929, 35.2842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1856, 35.284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.177, 35.2859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1669, 35.2826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1569, 35.2803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1474, 35.2814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1386, 35.2856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1303, 35.2899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.123, 35.2947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1151, 35.3004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1075, 35.3069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1046, 35.309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.096, 35.3194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0883, 35.3275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0859, 35.3302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0845, 35.3333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0815, 35.3378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0762, 35.3424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0718, 35.3454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0625, 35.3529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0568, 35.3563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0481, 35.3592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0371, 35.3644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.032, 35.3662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0252, 35.3712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0205, 35.3747 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0144, 35.381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0098, 35.384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0036, 35.3893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9982, 35.3928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9874, 35.3934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9805, 35.3967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9766, 35.3989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9744, 35.4037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9685, 35.4063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.957, 35.4051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9507, 35.4044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9457, 35.4089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9411, 35.41 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9311, 35.4122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9226, 35.4127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9123, 35.4143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9033, 35.4182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8944, 35.4239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8859, 35.4296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8802, 35.4322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8738, 35.4364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8657, 35.4418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8574, 35.4476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8479, 35.4526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8411, 35.457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8358, 35.4627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8294, 35.4685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8241, 35.474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8212, 35.4789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8145, 35.4825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8117, 35.4858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8061, 35.4906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8102, 35.4936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8163, 35.4981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.82, 35.5033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8247, 35.5092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8408, 35.5165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8497, 35.5194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.856, 35.5218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8698, 35.5179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8699, 35.5125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8655, 35.508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8521, 35.5083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8471, 35.5073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8414, 35.5056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.832, 35.5025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.822, 35.5011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8169, 35.5007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8104, 35.5027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7931, 35.4992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7856, 35.4996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7778, 35.4994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7705, 35.4986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7593, 35.4989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7663, 35.4948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7712, 35.4968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7761, 35.4981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7819, 35.5006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7855, 35.5053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7902, 35.514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7849, 35.5156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7763, 35.5151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7667, 35.5178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.758, 35.5227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7491, 35.5286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7415, 35.5337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7343, 35.5361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7305, 35.5412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7271, 35.543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7248, 35.5466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7198, 35.5513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7142, 35.5565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7064, 35.5603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6942, 35.5585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6874, 35.5518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6899, 35.5475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6944, 35.5434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7001, 35.541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7057, 35.5397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7126, 35.5385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7232, 35.5342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7301, 35.5331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.739, 35.5351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.744, 35.5364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7486, 35.5364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7577, 35.5324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7603, 35.5296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.771, 35.5258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7758, 35.5252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7823, 35.5238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.789, 35.5227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7986, 35.5207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8065, 35.5234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8113, 35.5271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8193, 35.5326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8225, 35.535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8251, 35.5402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8274, 35.5442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8305, 35.5478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8361, 35.5539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8387, 35.5579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8419, 35.5648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8468, 35.5716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8496, 35.5744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8572, 35.5782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.866, 35.582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8699, 35.5851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8761, 35.588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.885, 35.5914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8859, 35.5981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8828, 35.5996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8779, 35.6022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8708, 35.6051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8673, 35.6068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8638, 35.6094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.861, 35.6109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8574, 35.613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8535, 35.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8513, 35.6228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8493, 35.6249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8467, 35.6273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8417, 35.6319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8375, 35.6324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8333, 35.63 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8299, 35.6296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.827, 35.6285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8246, 35.6282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8197, 35.6279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8153, 35.628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8122, 35.6281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8068, 35.6322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8023, 35.6376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7959, 35.6439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7896, 35.6494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7835, 35.6544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7784, 35.6611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7733, 35.6688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7699, 35.6761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7672, 35.6837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7637, 35.6933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7616, 35.7021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7604, 35.7102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7612, 35.7183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7626, 35.724 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7682, 35.7286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7667, 35.7322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7609, 35.7372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7557, 35.7423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7492, 35.7467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7406, 35.7501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7338, 35.7556 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7257, 35.7604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7185, 35.7629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.712, 35.7628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7032, 35.7636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6942, 35.7656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6856, 35.7679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.679, 35.769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6729, 35.7694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6665, 35.7708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6605, 35.7738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6547, 35.7789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6494, 35.7834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6435, 35.7866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6323, 35.7905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6215, 35.7908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6138, 35.7925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6077, 35.7958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6002, 35.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5965, 35.8025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5913, 35.8065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.585, 35.8106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5775, 35.8144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.571, 35.8198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5657, 35.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5583, 35.8278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5487, 35.8315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5465, 35.8401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5466, 35.8473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5526, 35.8535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.56, 35.8591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5671, 35.864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5808, 35.8699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5876, 35.8721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5961, 35.8745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6057, 35.8778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6097, 35.8797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6185, 35.8814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6266, 35.8817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6359, 35.8835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6446, 35.8843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.649, 35.8856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.656, 35.8878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.66, 35.889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6679, 35.8894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6907, 35.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6953, 35.8917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.706, 35.8934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7102, 35.893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7185, 35.8977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7272, 35.9006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7346, 35.9024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7425, 35.9024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7583, 35.9062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7676, 35.9069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7756, 35.9074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7848, 35.9057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7973, 35.9043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8025, 35.9027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8105, 35.8994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8234, 35.8959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8319, 35.8989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.837, 35.8995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8464, 35.9002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8721, 35.9003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.885, 35.8999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8957, 35.8964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9, 35.8907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9008, 35.8852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9004, 35.8795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8996, 35.8731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9001, 35.8697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8985, 35.8654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.899, 35.8586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9, 35.8562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8984, 35.8541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8955, 35.8506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8877, 35.8458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8814, 35.8471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8736, 35.8448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8769, 35.843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8819, 35.8414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8747, 35.8379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8679, 35.8364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8609, 35.8359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8545, 35.8359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8514, 35.8341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8485, 35.8323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.845, 35.8318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8393, 35.834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8338, 35.8383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8304, 35.8379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8344, 35.8363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8436, 35.8369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8512, 35.8359 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8554, 35.8364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8631, 35.8365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8746, 35.8376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8794, 35.8378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8901, 35.8396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8947, 35.8399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9022, 35.8401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9164, 35.8411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9221, 35.8423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9324, 35.8429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9539, 35.8358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9669, 35.831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9729, 35.8306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.981, 35.8291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.987, 35.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9948, 35.8276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9997, 35.8268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0038, 35.8264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.017, 35.8194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0178, 35.8182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0196, 35.8149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0203, 35.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0195, 35.8103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0176, 35.8089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0167, 35.8072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0106, 35.8052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0035, 35.799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9953, 35.7956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9855, 35.7958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9814, 35.7974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9722, 35.8074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9662, 35.8129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9545, 35.816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9494, 35.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9386, 35.8145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.934, 35.8145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9292, 35.8126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9171, 35.8129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9129, 35.8136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9055, 35.8162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8907, 35.8197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8762, 35.823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8719, 35.8247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8573, 35.8267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8527, 35.8265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8484, 35.8262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8405, 35.8269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8365, 35.8263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.826, 35.8271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8199, 35.8274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8016, 35.8271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7969, 35.8266 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.792, 35.8267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7815, 35.8303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7749, 35.8323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7615, 35.8396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.758, 35.8451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7537, 35.8508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7487, 35.8585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7541, 35.8664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7622, 35.8741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.771, 35.8809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7927, 35.8994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8006, 35.904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8045, 35.9068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8117, 35.9118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8219, 35.9187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8259, 35.9209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8336, 35.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8388, 35.9241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8471, 35.9264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8526, 35.9272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8628, 35.9287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8772, 35.9329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8885, 35.9373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9021, 35.941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.908, 35.9422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9312, 35.9433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9407, 35.9474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9519, 35.9491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9665, 35.9536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9686, 35.9599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9697, 35.9672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9721, 35.9698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9828, 35.9756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9867, 35.9771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9955, 35.9786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0082, 35.9795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0121, 35.9802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0253, 35.9804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0364, 35.9817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.04, 35.9824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0493, 35.9841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0524, 35.9855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0578, 35.9906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0554, 35.9856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0553, 35.9807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.06, 35.9748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0649, 35.9732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0723, 35.9726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0769, 35.9734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0804, 35.9749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0844, 35.9776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0875, 35.9832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.089, 35.9852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0902, 35.9871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.092, 35.9893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0907, 35.9918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0899, 35.9937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0904, 35.9954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0888, 35.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0893, 36.0023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0892, 36.0047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0896, 36.0098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0892, 36.0118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0875, 36.0123 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0819, 36.0157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0817, 36.017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0821, 36.0186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0822, 36.0205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0836, 36.0272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0841, 36.0296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0859, 36.0347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0864, 36.0375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0841, 36.0412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0814, 36.044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0768, 36.0488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0756, 36.0505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0736, 36.0518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0711, 36.0574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0687, 36.0595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0614, 36.067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0611, 36.0729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0634, 36.0813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0638, 36.0834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0642, 36.0996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0644, 36.11 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0641, 36.112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0663, 36.1263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0684, 36.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0706, 36.1364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0719, 36.1393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0688, 36.1572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0686, 36.1612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0568, 36.1764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0508, 36.1844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.043, 36.1921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0395, 36.2023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0374, 36.2115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0358, 36.2215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0356, 36.233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0413, 36.2627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0462, 36.3094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0461, 36.3387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0408, 36.3459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0413, 36.3552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0463, 36.3674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0605, 36.3591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.069, 36.3494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0782, 36.3346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0836, 36.3278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0947, 36.3232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1056, 36.3194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1181, 36.3175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1332, 36.3142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1466, 36.3142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1558, 36.3138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1645, 36.3161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1753, 36.3205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1856, 36.3256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1957, 36.3277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2064, 36.3318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2176, 36.3383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.221, 36.3417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.225, 36.3452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2311, 36.3489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2348, 36.353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2378, 36.3561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2451, 36.3603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2475, 36.362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.251, 36.3644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.254, 36.3673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2621, 36.3708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2799, 36.3838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2882, 36.387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2957, 36.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3111, 36.3998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3134, 36.4027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3187, 36.4094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.322, 36.4136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3292, 36.4198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.332, 36.4238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3368, 36.4312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3396, 36.4367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3431, 36.4414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3534, 36.4479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3645, 36.4508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3907, 36.4673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4286, 36.4677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4599, 36.4631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4687, 36.4594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4983, 36.4463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5089, 36.4345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5177, 36.4224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5273, 36.4036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5295, 36.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.534, 36.3801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5251, 36.3704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5166, 36.368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4959, 36.3729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4827, 36.3717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.471, 36.374 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4654, 36.3753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4557, 36.3758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4505, 36.3772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4451, 36.3803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4325, 36.3883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4272, 36.3912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4165, 36.4043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4116, 36.4143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4088, 36.4196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4064, 36.4254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4033, 36.4389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3995, 36.4463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3974, 36.4533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3956, 36.4702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3946, 36.4751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3934, 36.4875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3923, 36.4998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.392, 36.5124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3957, 36.5198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4059, 36.5341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.414, 36.5418 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4185, 36.546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4211, 36.5541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4214, 36.5581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4242, 36.5658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4262, 36.5711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4358, 36.5892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4421, 36.5984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4576, 36.6259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4693, 36.6447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4738, 36.6526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.476, 36.6565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4837, 36.6641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4863, 36.6666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4917, 36.6701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.494, 36.6731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4954, 36.6759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5002, 36.6935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4991, 36.6985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4997, 36.7023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5001, 36.7057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4995, 36.7133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5021, 36.7159 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5037, 36.7192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5087, 36.7232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5124, 36.7243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5235, 36.7262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.538, 36.7258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5516, 36.7253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5638, 36.7273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5765, 36.7244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5813, 36.7234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5878, 36.7192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6005, 36.7133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6119, 36.7086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6187, 36.7019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6237, 36.6985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6333, 36.6939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6358, 36.6903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6392, 36.6797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6579, 36.6665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6634, 36.664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6716, 36.6587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6819, 36.6463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6842, 36.6424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.689, 36.6367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6934, 36.6314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6986, 36.6254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7097, 36.6132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7178, 36.6104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7276, 36.6099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7363, 36.6108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7449, 36.6133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7544, 36.615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7695, 36.6172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.789, 36.6163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8018, 36.6146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8093, 36.6136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8163, 36.6135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8234, 36.6132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8287, 36.6125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8315, 36.6099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8364, 36.6082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8435, 36.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8491, 36.6052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8546, 36.6032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8607, 36.5996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8748, 36.5904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8859, 36.5843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8913, 36.5779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.892, 36.5683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8922, 36.5645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8955, 36.5569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8988, 36.5518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9007, 36.5478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.902, 36.5445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9036, 36.5379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.905, 36.5234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9035, 36.5193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9018, 36.5161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8981, 36.5136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8947, 36.5094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8955, 36.5001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8949, 36.4968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8947, 36.4934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8942, 36.4863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8943, 36.4817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8889, 36.477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8864, 36.472 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8825, 36.467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8809, 36.4622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8733, 36.4553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8688, 36.4462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8676, 36.4402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8667, 36.4322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8667, 36.4264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8663, 36.4222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8662, 36.4164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8605, 36.3915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8589, 36.3837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8561, 36.3795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.853, 36.3726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8605, 36.3596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8658, 36.3514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8726, 36.3449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8724, 36.3399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8737, 36.3306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.872, 36.3227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8692, 36.317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8659, 36.3107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8623, 36.2997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8611, 36.2965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8597, 36.2809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8581, 36.277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8545, 36.2689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8591, 36.2577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8594, 36.2463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8608, 36.2441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8602, 36.2372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8575, 36.2279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8573, 36.2235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8515, 36.2103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8419, 36.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8389, 36.1899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8374, 36.1834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8351, 36.1729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8365, 36.1624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8374, 36.1531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.838, 36.1482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.84, 36.1486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8398, 36.1447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8422, 36.1316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8436, 36.1225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8437, 36.1184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8417, 36.1109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.843, 36.1032 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8358, 36.0871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8285, 36.0812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8265, 36.0765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8223, 36.0697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8207, 36.0642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8191, 36.0584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8172, 36.0537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8146, 36.0496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8193, 36.0412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8174, 36.0354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8127, 36.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8067, 36.022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.795, 36.0151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7914, 36.0129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.79, 36.0104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7886, 36.0075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7853, 36.0035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7847, 35.9979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7839, 35.9945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7782, 35.9897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7765, 35.9851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7694, 35.9796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7657, 35.9745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7573, 35.9606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7549, 35.956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7491, 35.9495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7436, 35.9405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7371, 35.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7343, 35.9304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.727, 35.9243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7248, 35.9198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.723, 35.9158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7215, 35.9164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7189, 35.9174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7181, 35.9194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7088, 35.9202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7085, 35.9202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7022, 35.9176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6989, 35.9154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.682, 35.9236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6731, 35.9265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6641, 35.9231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6623, 35.9195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6643, 35.9155 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6681, 35.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6676, 35.9167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6714, 35.9157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6677, 35.9058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6618, 35.9068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6545, 35.9076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.66, 35.9027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6645, 35.9041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6673, 35.906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6685, 35.91 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6781, 35.9183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.671, 35.923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6553, 35.9239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6465, 35.9211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6302, 35.9175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6223, 35.9167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6137, 35.9139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6008, 35.9067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5962, 35.9036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5857, 35.8955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5828, 35.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5772, 35.8854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5757, 35.8811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5718, 35.8714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5692, 35.8667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.568, 35.8624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5622, 35.8547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5593, 35.8498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5496, 35.8403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5468, 35.8351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5442, 35.8291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5424, 35.8247 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5404, 35.8184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.538, 35.813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5288, 35.8007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5181, 35.7896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5104, 35.7802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5072, 35.7744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5004, 35.7681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4979, 35.7626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4899, 35.7482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4857, 35.7392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.483, 35.7326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4713, 35.7171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.463, 35.7104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4524, 35.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4444, 35.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4358, 35.6925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4309, 35.6889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4213, 35.6754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4169, 35.6733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4092, 35.6695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3945, 35.6683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3905, 35.6683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3776, 35.6674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.373, 35.6649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.37, 35.6628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3682, 35.6593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3585, 35.6494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3326, 35.6398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3198, 35.6365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3146, 35.6338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3149, 35.6338 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3161, 35.629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3188, 35.6274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3257, 35.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3351, 35.6223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3395, 35.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3402, 35.6097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3396, 35.6063 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3403, 35.6022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3423, 35.5979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.344, 35.5959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3452, 35.5939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3401, 35.5937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3366, 35.5858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3299, 35.5773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3204, 35.5757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3147, 35.5693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.322, 35.5617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3242, 35.5664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.314, 35.5726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3156, 35.5743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3163, 35.5757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3132, 35.5774 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3183, 35.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.326, 35.5814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3335, 35.5895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.336, 35.5943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3368, 35.5939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3387, 35.6018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3554, 35.6344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3503, 35.6348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3579, 35.6397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3656, 35.6458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3645, 35.6697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.362, 35.6769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3608, 35.6804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3555, 35.6864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3479, 35.6949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3412, 35.6946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3287, 35.6942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3219, 35.6921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3162, 35.6898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2908, 35.6921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2844, 35.6927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2754, 35.6956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2695, 35.696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2583, 35.6941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2471, 35.6889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2425, 35.6855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2328, 35.6801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2289, 35.6751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2266, 35.6647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2243, 35.6592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.221, 35.6527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.225, 35.6294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2271, 35.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2298, 35.6197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2319, 35.612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2341, 35.607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2348, 35.6023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2363, 35.5877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2382, 35.5816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2412, 35.5715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2404, 35.5637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2468, 35.5602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2537, 35.5397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.258, 35.5262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2622, 35.5107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2645, 35.5067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2654, 35.4958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2621, 35.4872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2608, 35.4832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2502, 35.4734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2418, 35.4677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2383, 35.4645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2287, 35.4621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2175, 35.46 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1963, 35.4527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1906, 35.4513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1794, 35.4523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1744, 35.4514 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1712, 35.4509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1597, 35.449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.155, 35.4492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1498, 35.4518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1477, 35.4536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1447, 35.4531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1443, 35.4543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1435, 35.4564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1416, 35.4574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1405, 35.4586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.141, 35.4627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1432, 35.4657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1458, 35.4655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1494, 35.4629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.153, 35.4622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1549, 35.4629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1573, 35.4701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1575, 35.4727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1537, 35.4782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1554, 35.4883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1632, 35.491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1772, 35.4918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1805, 35.4926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1914, 35.4954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1943, 35.4967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2006, 35.501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2204, 35.5198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2246, 35.5301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2326, 35.5389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2414, 35.5422 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2535, 35.5583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2622, 35.5682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2742, 35.5757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.284, 35.5788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2859, 35.5838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2857, 35.5881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2874, 35.5961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2851, 35.6004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2787, 35.5996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2754, 35.5954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2654, 35.6013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2751, 35.6076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2838, 35.6146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2853, 35.6268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2912, 35.6325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2918, 35.6406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.295, 35.6461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.305, 35.6464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3105, 35.6504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3151, 35.6535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3185, 35.6557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3243, 35.6622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3289, 35.6709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3352, 35.6798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3466, 35.6815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3485, 35.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3521, 35.6906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.351, 35.7013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3483, 35.7101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3435, 35.7179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3336, 35.7267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3303, 35.7289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3251, 35.7321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3171, 35.7357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3077, 35.7405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3071, 35.7424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3009, 35.7499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2979, 35.7529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2907, 35.757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2867, 35.7586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2829, 35.7618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2803, 35.7639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2751, 35.7674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2721, 35.7693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2694, 35.7712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2661, 35.7735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.263, 35.776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2606, 35.778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.247, 35.7837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2435, 35.7855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2405, 35.7868 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2354, 35.7886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2288, 35.7933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2263, 35.7929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2218, 35.7901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2199, 35.7904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2169, 35.7902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2128, 35.7867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.215, 35.7834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2188, 35.7797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.224, 35.7771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2285, 35.7757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2341, 35.7744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2475, 35.7714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2576, 35.7657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.261, 35.7636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2724, 35.7548 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2838, 35.7485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2886, 35.7478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2934, 35.7476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3047, 35.7437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3151, 35.74 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3195, 35.7383 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3324, 35.7317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3417, 35.7273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3464, 35.7237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3524, 35.7215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3581, 35.7147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3675, 35.7156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3826, 35.7145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3807, 35.722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3811, 35.7238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3831, 35.726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3832, 35.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3814, 35.7295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3802, 35.732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3816, 35.7362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3896, 35.7371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3923, 35.7369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3942, 35.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4013, 35.7427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4049, 35.7397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4067, 35.742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4136, 35.7439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4128, 35.7443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4135, 35.7465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4122, 35.7424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4137, 35.7447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4241, 35.7499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4261, 35.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4356, 35.7537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4479, 35.7547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4558, 35.7495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4322, 35.7379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4158, 35.7399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4041, 35.741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3994, 35.7421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3931, 35.7388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3887, 35.7354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3829, 35.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3771, 35.7274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3738, 35.7261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.37, 35.7237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.363, 35.7259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3535, 35.7242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3509, 35.7203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3495, 35.7163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3502, 35.7098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3446, 35.7004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3405, 35.7013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3378, 35.7016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3365, 35.6972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3301, 35.6992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3246, 35.6918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3124, 35.6886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3103, 35.681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3066, 35.6791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2992, 35.6716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2915, 35.6695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2863, 35.6723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2804, 35.6684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.277, 35.6682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2772, 35.6698 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2773, 35.6718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2708, 35.6674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2606, 35.6598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2545, 35.6579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2479, 35.6529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2425, 35.6498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2329, 35.6456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2211, 35.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2131, 35.6382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2043, 35.6326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1947, 35.6306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.185, 35.6318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1727, 35.6349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1632, 35.6349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1529, 35.6357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1474, 35.6358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1405, 35.6381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1313, 35.6412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1255, 35.6462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1249, 35.6482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1242, 35.6497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1255, 35.6505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1263, 35.65 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1261, 35.6507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.128, 35.6507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1294, 35.6503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1324, 35.6489 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1339, 35.6488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1369, 35.6475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1381, 35.6464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1414, 35.6451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1436, 35.6441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1472, 35.6403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1532, 35.6379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1568, 35.6368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1598, 35.636 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1646, 35.6347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.169, 35.6331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1749, 35.6281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.185, 35.6255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1895, 35.624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1961, 35.6209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1973, 35.6175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1965, 35.6181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1923, 35.6198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1928, 35.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1847, 35.6219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1842, 35.6193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1832, 35.616 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1859, 35.6188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1891, 35.6255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1909, 35.6284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1885, 35.6311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1894, 35.6352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.198, 35.6355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2079, 35.6304 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2164, 35.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2244, 35.6166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2185, 35.5972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1985, 35.5984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1915, 35.5974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1872, 35.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1792, 35.5914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1727, 35.59 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1679, 35.5908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1641, 35.5828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1614, 35.5767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1476, 35.5836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1427, 35.5825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1331, 35.5833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1244, 35.5834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1191, 35.5837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1163, 35.5869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1123, 35.5892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.112, 35.5911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1073, 35.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1107, 35.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1067, 35.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1059, 35.5887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1133, 35.5896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1195, 35.5881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.128, 35.5921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1352, 35.594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1422, 35.5923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1455, 35.5961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1488, 35.6013 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1508, 35.592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1467, 35.5832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1393, 35.5722 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1323, 35.5623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1247, 35.5585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.115, 35.5587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1081, 35.559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1007, 35.56 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0882, 35.5604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0745, 35.5618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0602, 35.5652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0574, 35.5696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0462, 35.5688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0348, 35.5626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0265, 35.5631 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0152, 35.5658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.013, 35.5715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9837, 35.5777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9678, 35.5829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9512, 35.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.941, 35.5992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9259, 35.6075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9178, 35.6083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9078, 35.6105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9056, 35.6105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8983, 35.6138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8871, 35.6166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8766, 35.6164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8673, 35.6149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8502, 35.6153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.844, 35.6167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8327, 35.6184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8264, 35.618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8202, 35.6161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8102, 35.6164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8042, 35.6157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7993, 35.6142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7929, 35.6165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7903, 35.6137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7866, 35.6106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7751, 35.6051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.771, 35.6024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7668, 35.5996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.764, 35.5954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7623, 35.5907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7597, 35.5867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7578, 35.5789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7594, 35.5746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7602, 35.5709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7608, 35.5651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7726, 35.5511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7755, 35.5478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7822, 35.5443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7854, 35.5421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7963, 35.5355 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7998, 35.5329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8069, 35.528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8111, 35.5263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8147, 35.5236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8222, 35.5193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8279, 35.5161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8458, 35.5056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8482, 35.5074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8594, 35.503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8641, 35.5022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.874, 35.4992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8849, 35.4981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.891, 35.4984 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8995, 35.4992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9145, 35.4972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9282, 35.4944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9434, 35.4915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9604, 35.4899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9679, 35.4898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9767, 35.4902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0158, 35.4994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0271, 35.5031 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0405, 35.5107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0494, 35.5165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.061, 35.5256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.076, 35.5397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0885, 35.5529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0935, 35.5582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1047, 35.5697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1116, 35.5759 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1221, 35.5854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1283, 35.5907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1414, 35.6029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1466, 35.6069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1498, 35.6064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1544, 35.6124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1565, 35.6249 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1602, 35.6451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.162, 35.6608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1578, 35.6771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1555, 35.6812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1542, 35.6836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1516, 35.6846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1488, 35.6891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1516, 35.6989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1366, 35.6925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1358, 35.6833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1257, 35.6814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1116, 35.6816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1105, 35.6816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0982, 35.6839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0919, 35.692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0941, 35.6976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0925, 35.7017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0894, 35.7046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0838, 35.7059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0824, 35.7072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0829, 35.7098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0779, 35.7087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0698, 35.7074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0565, 35.718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0424, 35.7242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0428, 35.7306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0495, 35.7351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0564, 35.7332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0606, 35.7285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.069, 35.7198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0646, 35.7126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0619, 35.7109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0629, 35.7112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0687, 35.7126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0721, 35.7138 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0743, 35.7169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0733, 35.7229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0694, 35.73 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0642, 35.7344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0568, 35.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0531, 35.7394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.042, 35.744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0333, 35.7463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0288, 35.7474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0255, 35.7488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0223, 35.7508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0164, 35.7515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0088, 35.7498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0003, 35.7504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9893, 35.7506 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9844, 35.7453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.981, 35.7411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9802, 35.7376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.98, 35.7326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9818, 35.7273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.983, 35.7241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9842, 35.7218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9855, 35.7195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9804, 35.7026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9795, 35.6995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9793, 35.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9767, 35.7045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9746, 35.7055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.962, 35.7065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.961, 35.6994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9678, 35.6975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9744, 35.701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9748, 35.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9716, 35.7054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9686, 35.7055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9703, 35.7078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.974, 35.7038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9724, 35.7003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9626, 35.6954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9552, 35.6922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9427, 35.6926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9255, 35.6923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9158, 35.6901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9124, 35.6851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9068, 35.675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9014, 35.6757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8901, 35.678 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8811, 35.6779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8699, 35.6818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8552, 35.6918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8588, 35.6916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8607, 35.6832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8647, 35.6818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8646, 35.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8702, 35.6777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8675, 35.6811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8707, 35.6769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8767, 35.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8828, 35.6842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.89, 35.6852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8946, 35.6894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8978, 35.6941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9006, 35.6982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.901, 35.7036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9091, 35.7029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9128, 35.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9219, 35.7015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9279, 35.6962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9408, 35.6924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9467, 35.6911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9667, 35.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9706, 35.6961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9789, 35.6927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.987, 35.6933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.985, 35.6875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9901, 35.685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9924, 35.6895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9924, 35.6951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9951, 35.6986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0018, 35.6928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0056, 35.6879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0079, 35.6825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0173, 35.683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.024, 35.6888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0343, 35.6902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0503, 35.697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0536, 35.7012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0594, 35.7055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0589, 35.7094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0617, 35.7225 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0621, 35.7277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0585, 35.7319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0529, 35.736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0568, 35.7385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0563, 35.739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.059, 35.7392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0622, 35.7477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0558, 35.7574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0521, 35.7658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.048, 35.7749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0434, 35.7808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.037, 35.787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0286, 35.7941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0263, 35.797 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0251, 35.8028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0232, 35.8052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0243, 35.8112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0261, 35.8151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.028, 35.8203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0291, 35.8231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0316, 35.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0347, 35.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0379, 35.8233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0405, 35.8223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0468, 35.8206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0502, 35.8162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0513, 35.8135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0524, 35.8103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0544, 35.8034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0582, 35.8022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0591, 35.8009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0593, 35.7909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0567, 35.7873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0557, 35.7855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0532, 35.7758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0522, 35.7733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.051, 35.7687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0501, 35.7538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0492, 35.75 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0491, 35.7408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0481, 35.7375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0467, 35.7335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.045, 35.7248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0457, 35.7218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0474, 35.7142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0488, 35.7107 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0517, 35.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0723, 35.6911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0709, 35.6949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0725, 35.6959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0748, 35.6975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0803, 35.7002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0847, 35.7029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0879, 35.7049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0917, 35.7055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0935, 35.7062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0931, 35.7108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0937, 35.7157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0873, 35.72 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0831, 35.7196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0811, 35.7213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0844, 35.7237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.082, 35.7183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0738, 35.713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0682, 35.7117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0641, 35.7115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0702, 35.7114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0791, 35.7077 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0912, 35.7058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1026, 35.7145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1043, 35.7272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1013, 35.7367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0992, 35.7481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0947, 35.7602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0962, 35.7741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0937, 35.7829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0854, 35.7899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.085, 35.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0863, 35.8009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0929, 35.8079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1045, 35.814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1184, 35.8184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1215, 35.8187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.129, 35.818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.139, 35.8164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1496, 35.8115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1606, 35.8003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1644, 35.7906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1726, 35.7737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1776, 35.7597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1745, 35.7542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1681, 35.7434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1635, 35.7351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1617, 35.7224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1601, 35.7175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.158, 35.7066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1578, 35.7024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1556, 35.6927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1546, 35.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1506, 35.6791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1496, 35.6748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1477, 35.6699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1451, 35.6628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1461, 35.6595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1516, 35.6542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1628, 35.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1716, 35.6484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1702, 35.6416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1703, 35.6384 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1792, 35.6333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1815, 35.6331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1968, 35.6389 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2048, 35.6326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2071, 35.6316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2114, 35.6306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2153, 35.6295 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.221, 35.6281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2263, 35.6275 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2362, 35.625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2392, 35.6244 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2449, 35.6226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2489, 35.6224 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2522, 35.6221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2541, 35.6214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2558, 35.6206 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2663, 35.6162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2709, 35.6152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2844, 35.6137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2941, 35.6161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2975, 35.6164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3023, 35.6164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3118, 35.6164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3295, 35.6131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3393, 35.6105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3424, 35.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.34, 35.6076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3424, 35.6073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3443, 35.5989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3643, 35.5635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3721, 35.5672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3731, 35.5801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3842, 35.5889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3856, 35.5951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3925, 35.5982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4094, 35.6007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4111, 35.6012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4107, 35.6043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4116, 35.6054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4087, 35.601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4052, 35.6012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4073, 35.6018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4055, 35.5994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4107, 35.5999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4142, 35.6017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4161, 35.6055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4164, 35.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4145, 35.6104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4188, 35.61 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4236, 35.6068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4297, 35.6091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4367, 35.6066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4273, 35.6036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4203, 35.6021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4164, 35.5996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4095, 35.5983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4053, 35.6052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3994, 35.6071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3943, 35.6103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3983, 35.614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3995, 35.6161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4016, 35.6152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4022, 35.6151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4072, 35.6146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4032, 35.6152 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4028, 35.621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4057, 35.622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4107, 35.62 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.413, 35.6127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.409, 35.6044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.408, 35.6 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4083, 35.5965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4118, 35.5931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4141, 35.5915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4163, 35.591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4186, 35.5905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4231, 35.5911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4253, 35.5913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4267, 35.5907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4284, 35.5901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4327, 35.5894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4346, 35.5898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4357, 35.5895 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.438, 35.5893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4394, 35.5897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4424, 35.5915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4433, 35.5932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4459, 35.5969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4471, 35.599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4475, 35.6014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4479, 35.6039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4472, 35.6091 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4463, 35.6145 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4473, 35.6162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4444, 35.6197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4465, 35.6258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4459, 35.6294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4459, 35.6321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4442, 35.6342 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4429, 35.6365 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4396, 35.6416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.44, 35.6496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4394, 35.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4386, 35.6553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4382, 35.6575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4353, 35.6634 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4339, 35.6651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4329, 35.667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4327, 35.6688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4329, 35.6705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4328, 35.6748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4317, 35.6764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.431, 35.6788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4302, 35.6857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4291, 35.6888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4282, 35.6913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4281, 35.6962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4277, 35.699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4284, 35.7002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4267, 35.7046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4275, 35.7078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4275, 35.7095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4299, 35.7166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4296, 35.7185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4304, 35.7202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4312, 35.7219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4316, 35.7237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.432, 35.7253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4319, 35.727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4342, 35.7276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4342, 35.7294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.437, 35.7337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.438, 35.7356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4389, 35.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4402, 35.7391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.441, 35.7411 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4447, 35.746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4419, 35.7481 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4297, 35.7604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4245, 35.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4203, 35.7642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4145, 35.7702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4137, 35.7764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4146, 35.7786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4178, 35.7824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4264, 35.7856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4377, 35.7889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4434, 35.7894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4463, 35.79 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4501, 35.7906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46, 35.7912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4643, 35.7925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4723, 35.796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4754, 35.7982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4778, 35.8001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4857, 35.8012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4931, 35.8066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.496, 35.8088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4994, 35.812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5084, 35.8187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5132, 35.8186 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5168, 35.8209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5177, 35.8294 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5172, 35.8329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5174, 35.8363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5172, 35.8449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5176, 35.8479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5182, 35.8511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5189, 35.8544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5228, 35.8604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5235, 35.8635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5249, 35.8663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5288, 35.8727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5299, 35.876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.531, 35.8777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5309, 35.8805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5322, 35.8856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5312, 35.8946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5316, 35.9081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5318, 35.9139 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5298, 35.9237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.53, 35.9333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5289, 35.9366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5278, 35.9396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5275, 35.9425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5268, 35.9458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5245, 35.9543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5214, 35.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5195, 35.9666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5164, 35.9751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5072, 35.996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5052, 35.999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5053, 36.007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.504, 36.0096 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5026, 36.0176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5012, 36.0201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4984, 36.0263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4914, 36.0394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4898, 36.0412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4871, 36.0478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4843, 36.0516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4844, 36.0582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4846, 36.0653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4844, 36.0731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4799, 36.0857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4765, 36.0972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4763, 36.1038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4777, 36.1089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4787, 36.1144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4807, 36.1196 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4856, 36.1261 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4922, 36.1321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4946, 36.1347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5039, 36.1403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5099, 36.1461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5121, 36.1484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5138, 36.1505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5208, 36.1547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5243, 36.1572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5348, 36.17 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5388, 36.1767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5403, 36.1799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5422, 36.1836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5425, 36.1872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5428, 36.1899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5388, 36.199 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5413, 36.2115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5415, 36.2198 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5445, 36.2335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5485, 36.2388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5574, 36.2454 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5657, 36.2461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5708, 36.2444 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5735, 36.2439 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6071, 36.2474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6618, 36.2758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6862, 36.3465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6822, 36.395 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6841, 36.4245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6886, 36.4524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6927, 36.4777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7056, 36.5281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6934, 36.5642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.684, 36.5881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6764, 36.6134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6722, 36.6361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6872, 36.6602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6967, 36.6801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7115, 36.6975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6913, 36.7349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6721, 36.7526 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6687, 36.7745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7182, 36.8167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7453, 36.8925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7333, 36.924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7179, 36.9555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6602, 37.0104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6362, 37.0521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.654, 37.1462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6815, 37.1677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7086, 37.1988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7366, 37.2188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7804, 37.2461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8963, 37.3348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9716, 37.3432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0587, 37.3457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1015, 37.349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1573, 37.3965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.127, 37.5464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1741, 37.5448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.372, 37.6065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4077, 37.5998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4946, 37.6161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6589, 37.6475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7006, 37.6529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7985, 37.6618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8408, 37.6707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9367, 37.6935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0466, 37.7366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.0858, 37.7414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1195, 37.7512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1496, 37.7622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1895, 37.7531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1749, 37.7438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1598, 37.7633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1432, 37.7907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.153, 37.815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1677, 37.8325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.1897, 37.8473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2398, 37.8736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.2824, 37.9036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.304, 37.9114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.3501, 37.8924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4358, 37.8462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4789, 37.8386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5131, 37.8263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5996, 37.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5856, 37.9246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6087, 37.9628 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6752, 38.0469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.7074, 38.0543 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6708, 37.9836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.652, 37.9496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6254, 37.9328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.6063, 37.9142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5934, 37.8942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5765, 37.8795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.557, 37.8768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5518, 37.8652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.5489, 37.745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.4451, 37.5673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.408, 37.5575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -124.366, 37.5545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3129, 33.7534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3885, 33.7093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4397, 33.6773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5096, 33.6165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5672, 33.5718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7719, 33.2653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8841, 33.2076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.947, 33.0039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9288, 33.0035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9309, 32.9969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9566, 32.9909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9704, 32.9819 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.969, 32.9858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9776, 32.9945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9852, 32.9885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9948, 32.9847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0021, 32.9792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.991, 32.949 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9717, 32.9147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0009, 32.9004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0036, 32.8981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.049, 32.8778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0738, 32.8579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.263, 32.7663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2515, 32.5901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3472, 32.5104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3551, 32.49 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3567, 32.4837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4792, 32.4595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5449, 32.4061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6745, 32.4451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.742, 32.5798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7959, 32.6486 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8179, 32.7029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.827, 32.7234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8359, 32.801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8478, 32.9047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7836, 33.3046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7575, 33.3838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6312, 33.5848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.627, 33.5938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5394, 33.7378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.531, 33.7745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5938, 33.7705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8384, 33.7208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.808, 33.7363 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4055, 33.5371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4163, 33.5263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3485, 33.4967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2928, 33.4878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2509, 33.4828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9665, 33.2941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9586, 33.2901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.894, 33.2534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8572, 33.0769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7919, 32.8482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7425, 32.8321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4739, 32.7153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.4862, 32.7092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.7863, 32.6511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8729, 32.6608 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.8727, 32.6555 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -117.9856, 32.6696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0295, 32.677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2779, 32.7706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.294, 32.8354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3204, 32.8354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2909, 32.873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3274, 32.8603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3427, 32.858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3356, 32.8587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3172, 32.8568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.325, 32.9333 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3404, 32.9565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3772, 32.9886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3279, 32.9867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4402, 32.9671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6221, 33.129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6526, 33.1385 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.762, 33.136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7797, 33.1312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8282, 33.1201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8296, 33.1133 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0332, 33.07 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2959, 33.0706 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.3351, 33.0686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.391, 33.0693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.4326, 33.0684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5603, 33.0669 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5698, 33.0668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5988, 33.0624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.607, 33.0625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7058, 33.0782 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.735, 33.0935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7614, 33.0999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7702, 33.1066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7757, 33.1039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7805, 33.1023 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7598, 33.0979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9062, 33.9898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8084, 33.9432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2769, 33.4838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.2416, 33.4969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3391, 33.5345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3349, 33.5201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3241, 33.5216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5781, 33.7655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8339, 33.9821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5244, 33.5204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3403, 33.5036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.0999, 33.4581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3869, 33.596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9718, 33.9663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9539, 33.9732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9671, 33.9438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9643, 33.9353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9568, 33.9245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9445, 33.9045 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.932, 33.8885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8996, 33.8968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8801, 33.9088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8613, 33.9137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.756, 33.9303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7438, 33.9301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7325, 33.929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4831, 33.7604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4746, 33.7574 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.4226, 33.6942 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.419, 33.6877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.393, 33.6522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3857, 33.6459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3711, 33.6308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3212, 33.6089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3112, 33.6104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3345, 33.6069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.3297, 33.6817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6099, 33.6258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6027, 33.64 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.599, 33.6346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.61, 33.6358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6659, 33.611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6822, 33.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.721, 33.5842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.739, 33.605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7263, 33.6103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7084, 33.6621 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7212, 33.6661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7245, 33.6618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7285, 33.6563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7334, 33.6623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.734, 33.6618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.718, 33.6588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7129, 33.6582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7113, 33.6433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7162, 33.6414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7239, 33.6401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7284, 33.6438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7123, 33.6283 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7189, 33.6322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.724, 33.656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7192, 33.6534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7132, 33.6545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7062, 33.662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6964, 33.6654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6757, 33.6665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6903, 33.66 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6835, 33.6737 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6724, 33.6787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6622, 33.6789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6626, 33.6821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6695, 33.6901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6697, 33.6828 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6684, 33.68 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6693, 33.6801 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.665, 33.6876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6682, 33.6968 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6625, 33.7046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6588, 33.702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6632, 33.7019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6719, 33.7057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6758, 33.7085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6791, 33.7097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6866, 33.708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6925, 33.703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6983, 33.6974 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7042, 33.6927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7067, 33.69 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7084, 33.6871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7127, 33.6767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7377, 33.6792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7479, 33.6764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7504, 33.6746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7488, 33.6679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7488, 33.6655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7492, 33.6629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7487, 33.6577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.744, 33.6497 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7458, 33.6474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7482, 33.6453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7557, 33.6376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7536, 33.6358 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7437, 33.6404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7438, 33.6435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7446, 33.6544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7467, 33.6624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7432, 33.6656 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7407, 33.6668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7383, 33.6679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7369, 33.6715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7359, 33.6754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7322, 33.6767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7292, 33.6756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7253, 33.6765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7229, 33.6758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7201, 33.6758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7161, 33.6753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7106, 33.6738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7039, 33.6751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6985, 33.6756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6945, 33.6793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6936, 33.6838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6973, 33.6847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7001, 33.6883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7017, 33.6955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7026, 33.7019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6998, 33.7037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6952, 33.705 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6919, 33.7049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6873, 33.7066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6838, 33.7046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.681, 33.7016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.675, 33.7038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6712, 33.7072 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6688, 33.7126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6706, 33.7168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6657, 33.7194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6659, 33.7157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6674, 33.7122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6712, 33.7074 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.678, 33.7103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6816, 33.7058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6832, 33.7011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6858, 33.6971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6884, 33.6919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6911, 33.687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6925, 33.6789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6965, 33.6684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6994, 33.6573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6967, 33.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6909, 33.6465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6904, 33.6392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6935, 33.6347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6985, 33.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7035, 33.6325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7096, 33.6328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7156, 33.633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.721, 33.6351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7261, 33.6375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7318, 33.6364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7345, 33.6351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7384, 33.6394 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7356, 33.6461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7325, 33.6463 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74, 33.6496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7452, 33.6421 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7459, 33.639 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7517, 33.6396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.754, 33.6435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7522, 33.6474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7479, 33.6528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7399, 33.6494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7419, 33.6453 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7393, 33.6414 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7423, 33.6379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7465, 33.6376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7512, 33.6377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7546, 33.6416 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7509, 33.6448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7443, 33.6451 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7389, 33.6468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7336, 33.6499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7331, 33.6441 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7394, 33.6431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7454, 33.6448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7494, 33.6479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7373, 33.6482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7343, 33.6532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7276, 33.6536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7344, 33.6523 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7408, 33.6495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7494, 33.646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7551, 33.6462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7505, 33.652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7416, 33.6522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.732, 33.6491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7121, 33.651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7057, 33.6584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.703, 33.6699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6984, 33.6806 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6904, 33.6861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6837, 33.6926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6728, 33.6979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6477, 33.5847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7639, 33.6874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7439, 33.7105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6531, 33.8512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6375, 33.8194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6646, 33.9141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5607, 33.8135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.5819, 33.7779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6698, 33.7201 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6802, 33.7156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6916, 33.7108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7087, 33.7035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7181, 33.6954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7272, 33.6796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.74, 33.6755 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7369, 33.6846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7282, 33.6796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7256, 33.6778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7136, 33.679 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6986, 33.6856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6922, 33.6876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6746, 33.6913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.6712, 33.689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7094, 33.6926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7308, 33.6619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.7723, 33.642 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.8296, 33.6263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -118.9108, 33.617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.0149, 33.6132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.2339, 33.6164 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5958, 33.7627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6143, 33.8185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6282, 33.8546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6519, 33.8915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6724, 33.8961 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.6027, 33.9276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.5206, 33.9038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6135, 34.1011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5889, 34.0792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6203, 34.1065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7765, 34.2546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7654, 34.2683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6679, 34.3941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.657, 34.4058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4738, 35.3053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7567, 35.5607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6138, 34.1279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6124, 34.1325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.611, 34.1349 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6072, 34.1392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6082, 34.1462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6088, 34.1508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6113, 34.1587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6054, 34.165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6097, 34.1657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6117, 34.1681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6104, 34.1714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.615, 34.1718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.613, 34.173 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6135, 34.1741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6156, 34.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6209, 34.1815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6206, 34.1845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6268, 34.1901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6296, 34.1913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6306, 34.193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6317, 34.1938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6333, 34.1956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6319, 34.1973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6323, 34.1988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6264, 34.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6317, 34.2086 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6312, 34.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6383, 34.2012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6444, 34.1989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6477, 34.1981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6523, 34.1963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6551, 34.1905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6515, 34.1915 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6504, 34.2003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6474, 34.2041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6424, 34.208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6398, 34.2095 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6359, 34.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6361, 34.2131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6392, 34.2115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6428, 34.2092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6471, 34.2044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6499, 34.2002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6501, 34.1958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6432, 34.2017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6406, 34.2061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6363, 34.2114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6303, 34.2118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6303, 34.218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6304, 34.2177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6266, 34.215 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6221, 34.2149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6197, 34.213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6163, 34.2101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6131, 34.207 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6106, 34.2042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6065, 34.2015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6041, 34.1989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6003, 34.1952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5965, 34.1924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5906, 34.1908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5849, 34.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5828, 34.1875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5857, 34.1858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5893, 34.1861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5926, 34.1877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5953, 34.1863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5966, 34.1834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5998, 34.1825 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6031, 34.1827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6096, 34.1837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6141, 34.1849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6178, 34.1841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6218, 34.1851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6262, 34.1863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6297, 34.1884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6327, 34.1903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6365, 34.1929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6401, 34.1931 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6441, 34.1953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6474, 34.1982 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6497, 34.2 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6523, 34.2041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6528, 34.2062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6527, 34.2082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.653, 34.2105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6536, 34.2124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6542, 34.2146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6548, 34.2168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6555, 34.2189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6564, 34.2213 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6561, 34.2231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6548, 34.2234 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6558, 34.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6568, 34.2187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.656, 34.2158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6539, 34.2153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6521, 34.2154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6478, 34.2154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6479, 34.212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6472, 34.2105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6462, 34.2068 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6447, 34.2036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.646, 34.2003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6478, 34.1962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6516, 34.1913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6529, 34.189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6548, 34.1849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6553, 34.1812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6581, 34.1777 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.66, 34.1763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6638, 34.1729 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6628, 34.1692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6608, 34.1675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6572, 34.1652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6534, 34.1637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6549, 34.1612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6587, 34.1609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6615, 34.1581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6572, 34.1559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6481, 34.1535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6508, 34.1498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.658, 34.1547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6608, 34.1602 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6604, 34.1668 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6563, 34.1704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6499, 34.1736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6512, 34.1786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6485, 34.1696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6491, 34.1666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6447, 34.1573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6422, 34.15 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6347, 34.1425 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6334, 34.1329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6239, 34.1268 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6202, 34.1168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6158, 34.1079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6117, 34.104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6083, 34.1034 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6096, 34.0908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6101, 34.088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6099, 34.0881 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5979, 34.0833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5988, 34.0795 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6052, 34.0871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6141, 34.0965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6144, 34.1022 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6114, 34.1076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6149, 34.1183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.621, 34.1256 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6335, 34.1339 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6385, 34.143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.636, 34.1561 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6346, 34.1696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6283, 34.1829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6253, 34.1977 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6165, 34.2002 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6065, 34.2014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6245, 34.197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6291, 34.202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6349, 34.2056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6402, 34.2007 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6471, 34.2018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6525, 34.2041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6569, 34.2093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6589, 34.2111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6477, 34.2065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6516, 34.1952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6476, 34.1897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6356, 34.1807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.627, 34.1731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6282, 34.1649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6355, 34.1552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6304, 34.1419 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6307, 34.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6189, 34.121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6079, 34.1087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.611, 34.0992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6125, 34.0908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5973, 34.0869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5893, 34.0769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5803, 34.0626 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5695, 34.0541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5562, 34.0457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5566, 34.0372 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5443, 34.0296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5327, 34.0259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5264, 34.0197 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5128, 34.0126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5067, 34.0066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5011, 34.0011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4837, 33.9958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4812, 33.9841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4836, 33.9703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4789, 33.9641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.473, 33.9596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4666, 33.9532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4616, 33.9494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4568, 33.9458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4537, 33.9406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4514, 33.9357 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4505, 33.9313 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4506, 33.9267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4514, 33.9227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4509, 33.9192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4491, 33.9169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4465, 33.9148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4452, 33.9129 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4423, 33.9106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4381, 33.909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4337, 33.9087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4281, 33.9109 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4229, 33.912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4199, 33.9126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4102, 33.9176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4098, 33.9232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4127, 33.9223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4118, 33.9233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.405, 33.9274 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4007, 33.9289 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3949, 33.9299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3919, 33.9279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3896, 33.9248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3894, 33.9192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3866, 33.9144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3848, 33.9124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3826, 33.9092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3803, 33.907 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3777, 33.9047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3734, 33.9015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3686, 33.9035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3662, 33.9038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3638, 33.9048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3596, 33.9082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3585, 33.9082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3603, 33.9064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3617, 33.9048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3627, 33.9033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.359, 33.8996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.354, 33.902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3526, 33.9009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3482, 33.8981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3445, 33.8929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3397, 33.8955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3378, 33.8966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3449, 33.8989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3455, 33.9009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3387, 33.903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3427, 33.9043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3532, 33.9058 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3582, 33.9102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3623, 33.913 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3665, 33.9146 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3677, 33.9121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3678, 33.9174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3695, 33.9151 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3639, 33.9194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3596, 33.9169 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3699, 33.9248 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3773, 33.9286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3777, 33.9328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3748, 33.9312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3745, 33.9314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3831, 33.9324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3864, 33.928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3824, 33.9285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.373, 33.9262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3705, 33.9209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3597, 33.9187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3503, 33.9171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.348, 33.9278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3613, 33.9276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3682, 33.9271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3687, 33.92 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3722, 33.9161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3793, 33.9168 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3861, 33.9174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3974, 33.9214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4043, 33.9242 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4155, 33.9321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4242, 33.9329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4303, 33.937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4243, 33.9378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.419, 33.936 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4081, 33.9314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3898, 33.9301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3749, 33.9361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3682, 33.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3623, 33.9284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3628, 33.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3636, 33.9255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.355, 33.9245 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.352, 33.919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3384, 33.9162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.336, 33.9154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3383, 33.9149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3363, 33.9125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3349, 33.916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3466, 33.9202 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3574, 33.9255 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3597, 33.9315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3603, 33.9311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3651, 33.9352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3711, 33.9445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3633, 33.9331 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3554, 33.9258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3483, 33.9235 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3433, 33.9177 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3354, 33.9167 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.329, 33.917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.32, 33.9156 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.314, 33.9097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3125, 33.9026 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3091, 33.8994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3052, 33.8966 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3033, 33.8911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3013, 33.8841 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2972, 33.885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2944, 33.8839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2964, 33.8802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2934, 33.8775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2915, 33.8748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2896, 33.8723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2874, 33.8707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2859, 33.8686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2846, 33.867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2826, 33.8662 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2807, 33.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2793, 33.8603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2773, 33.8588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2758, 33.8572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.274, 33.8551 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2735, 33.8538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2721, 33.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2699, 33.8511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2689, 33.8496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2681, 33.8491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2663, 33.8477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2657, 33.8469 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2658, 33.8457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2651, 33.8443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2653, 33.8431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2651, 33.8433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2657, 33.8433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2652, 33.8436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2646, 33.8445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2636, 33.845 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2626, 33.8458 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2617, 33.8466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2602, 33.847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2593, 33.8477 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2574, 33.848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2558, 33.8474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2547, 33.8473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2527, 33.8446 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2503, 33.8426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2492, 33.8412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2488, 33.8404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2471, 33.839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2461, 33.8382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2448, 33.8377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2402, 33.8337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2374, 33.8334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2341, 33.83 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2301, 33.8292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2283, 33.8269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2245, 33.8238 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2212, 33.8217 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2167, 33.8181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.215, 33.8057 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2134, 33.8019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2117, 33.7983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2076, 33.7875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2027, 33.7802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1998, 33.7758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1969, 33.7677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1943, 33.7552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1909, 33.7382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1894, 33.7337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1877, 33.7285 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1828, 33.7216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1814, 33.7117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1789, 33.7052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1762, 33.6995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1721, 33.6905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1645, 33.6778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1611, 33.6718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1589, 33.665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1569, 33.6591 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1538, 33.6512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1507, 33.6445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1476, 33.637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1453, 33.6287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1428, 33.6179 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1415, 33.6115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1402, 33.6039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1392, 33.5939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.139, 33.585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1406, 33.5849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.142, 33.5796 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.15, 33.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.161, 33.5846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1703, 33.5833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1772, 33.5826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1831, 33.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1855, 33.5821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.191, 33.584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1973, 33.5813 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2046, 33.5787 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2108, 33.5776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2167, 33.5854 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2144, 33.5792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2091, 33.5753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2133, 33.5672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2177, 33.5618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.223, 33.5578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2301, 33.5547 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.234, 33.55 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2432, 33.5475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2464, 33.5401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2452, 33.5319 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.242, 33.5264 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2358, 33.5226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.228, 33.52 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2257, 33.5161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2171, 33.5141 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2086, 33.5116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2069, 33.5062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2032, 33.5035 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2008, 33.5021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1967, 33.4995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1912, 33.4957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1886, 33.4921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1862, 33.4914 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1828, 33.4856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1766, 33.4847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1697, 33.4786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1559, 33.4674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1452, 33.4645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1352, 33.4682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1274, 33.4673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1198, 33.4695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1097, 33.4723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0954, 33.4721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0806, 33.4693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0727, 33.4666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0645, 33.4637 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0576, 33.4612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0524, 33.4518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0433, 33.4484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0326, 33.4437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0214, 33.4413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0048, 33.4378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9915, 33.4335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9821, 33.4303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9727, 33.4267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9627, 33.4232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9459, 33.4193 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9271, 33.4158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.908, 33.4128 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8953, 33.4066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8928, 33.4061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8854, 33.4042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8805, 33.4051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8836, 33.4062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.882, 33.4059 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8786, 33.4078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8756, 33.407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8766, 33.4099 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8745, 33.4071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8722, 33.4061 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8682, 33.4027 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8699, 33.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8702, 33.3953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8694, 33.3948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8642, 33.3981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.859, 33.3987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8512, 33.4014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.853, 33.4088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8583, 33.4083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8653, 33.4076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8754, 33.4042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8786, 33.4025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8826, 33.3986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8858, 33.3947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8871, 33.3917 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.888, 33.3898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8856, 33.3866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8851, 33.3832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8883, 33.3817 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8871, 33.3803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8868, 33.3848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8896, 33.3856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8919, 33.3858 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8946, 33.3863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8915, 33.382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.895, 33.3879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8887, 33.3896 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8793, 33.3894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8738, 33.3883 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8681, 33.3867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.862, 33.3846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8595, 33.3821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8582, 33.3766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8561, 33.3702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8553, 33.3663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8595, 33.3611 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8646, 33.36 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8686, 33.3606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8765, 33.3613 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8847, 33.3648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8922, 33.3632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8975, 33.3658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.898, 33.3732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8962, 33.376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8896, 33.3808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8808, 33.3855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8853, 33.3892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8834, 33.392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8782, 33.3956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8814, 33.3963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.874, 33.3999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8693, 33.4008 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.861, 33.3971 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.848, 33.399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.848, 33.3951 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8466, 33.3932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8464, 33.4011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8506, 33.4097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.846, 33.403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.846, 33.3934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.846, 33.3872 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.845, 33.3764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.848, 33.3682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8519, 33.3646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8478, 33.3598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8473, 33.3518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8465, 33.3474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8468, 33.3455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8467, 33.3532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8527, 33.3657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.85, 33.3707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8486, 33.3768 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8493, 33.3818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8479, 33.386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8502, 33.3929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8587, 33.3934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.866, 33.3955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8782, 33.397 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.89, 33.3983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8987, 33.3937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9067, 33.3933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.911, 33.3912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9175, 33.3887 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9211, 33.3869 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9261, 33.3808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9246, 33.3766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9267, 33.3717 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9257, 33.3667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9236, 33.3619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9274, 33.361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9278, 33.3565 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9252, 33.3534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9234, 33.3484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9215, 33.345 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9199, 33.341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9201, 33.3347 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9182, 33.326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9124, 33.3209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9044, 33.316 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8999, 33.3131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8926, 33.3094 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8814, 33.3041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8682, 33.3039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8615, 33.3102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8589, 33.3237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8554, 33.3309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8506, 33.335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8457, 33.3442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8476, 33.3474 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8489, 33.3505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.848, 33.3542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8491, 33.3521 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8494, 33.3527 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8478, 33.3536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8473, 33.3517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8468, 33.3531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8469, 33.3512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8508, 33.3516 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.851, 33.3614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8472, 33.3709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.852, 33.3713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8532, 33.3738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.856, 33.3712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8518, 33.3714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.854, 33.3716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8579, 33.3745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8618, 33.3769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8651, 33.3769 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8687, 33.3776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8726, 33.3786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8762, 33.3805 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8793, 33.3827 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8827, 33.3843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8857, 33.3852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.888, 33.3873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8905, 33.3885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8901, 33.3905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8912, 33.393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8938, 33.3944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.896, 33.3962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8975, 33.3986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8983, 33.401 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8971, 33.4037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.894, 33.4051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8904, 33.4062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.886, 33.4076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8793, 33.4083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8749, 33.4089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8703, 33.4083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8671, 33.4088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8647, 33.4104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8626, 33.4121 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8597, 33.4134 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8557, 33.4153 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8521, 33.415 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8456, 33.4157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8458, 33.4114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8458, 33.4079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8469, 33.4054 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8498, 33.4038 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8522, 33.4018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8548, 33.4005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8582, 33.3988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8613, 33.3972 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8635, 33.3952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8669, 33.3926 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8692, 33.3897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8706, 33.3867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8725, 33.3843 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.877, 33.3731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8804, 33.3725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8805, 33.3739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8763, 33.3778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.868, 33.3783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8558, 33.3799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8495, 33.378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8458, 33.3689 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8504, 33.3653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8579, 33.3619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8471, 33.3624 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8464, 33.3581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8467, 33.3596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8454, 33.3503 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.843, 33.3402 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8402, 33.3337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8385, 33.3284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.836, 33.3253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8313, 33.3262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8269, 33.3252 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8232, 33.3218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8198, 33.3178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.818, 33.3144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8165, 33.3111 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8152, 33.3079 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8109, 33.3024 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8081, 33.2983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8055, 33.2945 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8059, 33.2925 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8042, 33.291 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8016, 33.2894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.797, 33.2865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7934, 33.2837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.788, 33.2791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7837, 33.2741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7795, 33.2687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7763, 33.2645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7787, 33.2604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7839, 33.2564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7906, 33.2533 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7946, 33.2535 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.7993, 33.254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8037, 33.2479 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8078, 33.2406 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8112, 33.2341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8139, 33.2302 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8166, 33.2233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8251, 33.2119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8303, 33.2081 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8386, 33.2044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.844, 33.203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8492, 33.2005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8571, 33.2064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8592, 33.2105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8751, 33.2136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8784, 33.2147 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8902, 33.2259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8904, 33.2308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8872, 33.2375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8857, 33.2381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8871, 33.2393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8906, 33.2351 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8958, 33.2318 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.889, 33.2301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8897, 33.2335 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8839, 33.2288 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8882, 33.221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8858, 33.2187 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8878, 33.2227 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8899, 33.2297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9013, 33.2311 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8956, 33.239 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.891, 33.2413 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8821, 33.2348 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.888, 33.2287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8918, 33.2258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8974, 33.2259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8909, 33.2278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.887, 33.2327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8928, 33.2322 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.894, 33.2315 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8942, 33.2299 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8942, 33.228 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8939, 33.2263 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8978, 33.2259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8991, 33.2307 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8964, 33.2259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.8993, 33.2214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9065, 33.2254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9107, 33.2279 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9149, 33.2293 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9185, 33.2303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.922, 33.2309 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9258, 33.2321 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9291, 33.2334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9317, 33.2354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9342, 33.2369 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9371, 33.2381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9384, 33.2399 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9394, 33.241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.941, 33.2426 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9432, 33.2442 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9459, 33.2452 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9482, 33.2456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9493, 33.2468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9505, 33.2482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9509, 33.2494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9521, 33.2508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9532, 33.2518 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9528, 33.2528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9531, 33.2541 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9535, 33.2552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9559, 33.2567 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.962, 33.2601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9658, 33.2629 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9697, 33.2643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9771, 33.2661 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9806, 33.2685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9823, 33.2704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9863, 33.2736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9896, 33.276 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9927, 33.2791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9946, 33.2808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -119.9971, 33.2821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0015, 33.2863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0088, 33.2897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0148, 33.2933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0183, 33.2944 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0227, 33.2992 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0285, 33.3042 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0338, 33.3084 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0381, 33.314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0447, 33.3178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0533, 33.3221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0583, 33.3267 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0609, 33.334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0626, 33.3378 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0668, 33.3438 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0723, 33.3488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0827, 33.352 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0899, 33.3539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.0927, 33.3549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1049, 33.3604 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1132, 33.3648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1207, 33.3692 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1271, 33.3745 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1339, 33.3798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1436, 33.3842 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1521, 33.3873 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1634, 33.3909 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.172, 33.3933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1811, 33.3967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1902, 33.3981 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.1996, 33.4016 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2077, 33.4055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2159, 33.4106 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2232, 33.4142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2314, 33.4175 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2431, 33.4231 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.25, 33.4265 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2611, 33.4271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2695, 33.4317 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2787, 33.4354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.287, 33.4367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.2958, 33.4388 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3099, 33.4433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3135, 33.4449 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3267, 33.4473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3344, 33.4568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3464, 33.4617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3532, 33.4693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3614, 33.4739 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3609, 33.4713 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3631, 33.4798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3668, 33.4704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3762, 33.4793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3791, 33.4851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3878, 33.4829 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3846, 33.4904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3724, 33.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3627, 33.5017 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3642, 33.5112 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3614, 33.5176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3492, 33.5163 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3517, 33.5071 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3648, 33.4985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.373, 33.4898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3777, 33.4804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.386, 33.4776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3961, 33.4831 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3983, 33.4811 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3993, 33.4781 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.398, 33.4771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3964, 33.4767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3973, 33.4772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3974, 33.484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3972, 33.4906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.399, 33.4957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4001, 33.5005 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.3997, 33.5078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4033, 33.5108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4074, 33.5148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4102, 33.5172 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4145, 33.5205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4184, 33.5233 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4219, 33.5251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4266, 33.5297 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4312, 33.5332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4347, 33.5379 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4385, 33.5423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4414, 33.5466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4441, 33.5515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4471, 33.5562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4485, 33.5594 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4538, 33.5654 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4592, 33.5685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.462, 33.5718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4643, 33.5748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4674, 33.5786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4698, 33.5835 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4714, 33.5888 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4733, 33.5918 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4748, 33.5953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4769, 33.5989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4828, 33.6067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.486, 33.6097 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4893, 33.6137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4947, 33.6181 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.498, 33.6208 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5039, 33.6237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5068, 33.6269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5137, 33.6325 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5202, 33.6393 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5228, 33.6435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5274, 33.6491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5327, 33.6537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5367, 33.6563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5519, 33.6651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5576, 33.6685 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5775, 33.6707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.588, 33.6677 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5948, 33.6718 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6053, 33.6847 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6131, 33.6878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6202, 33.6857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6307, 33.6884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.636, 33.6916 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6399, 33.6947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6505, 33.7 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6591, 33.7039 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6754, 33.7148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6753, 33.7165 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6803, 33.728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6871, 33.734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6918, 33.7367 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6805, 33.7364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6779, 33.7431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6814, 33.7455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6872, 33.7482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6791, 33.7509 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6731, 33.7464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6717, 33.7404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6658, 33.743 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6634, 33.7407 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6686, 33.7507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6606, 33.753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6576, 33.7529 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6586, 33.7511 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6544, 33.7508 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6465, 33.749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6458, 33.751 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6401, 33.7513 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6403, 33.7566 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6342, 33.7584 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6361, 33.7532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6294, 33.7515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6278, 33.7478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6244, 33.7465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6179, 33.7498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6245, 33.7546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6288, 33.7585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6358, 33.7563 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6416, 33.7666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6446, 33.7699 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6349, 33.7732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.627, 33.7697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6207, 33.7736 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6173, 33.7649 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6097, 33.761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6069, 33.7646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5998, 33.7695 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5867, 33.7663 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5778, 33.7652 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5674, 33.7696 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5624, 33.7697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5564, 33.7688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.546, 33.767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5422, 33.7715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5383, 33.7746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5374, 33.7803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5385, 33.7834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5346, 33.7855 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5303, 33.7875 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5146, 33.7824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5038, 33.7844 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4893, 33.7848 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.491, 33.7899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4881, 33.7933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4838, 33.7952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4804, 33.7987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4689, 33.803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4479, 33.8001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4352, 33.7935 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4186, 33.7928 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4165, 33.7952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4151, 33.7976 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4142, 33.8 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4124, 33.8019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4104, 33.8037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4088, 33.8047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4067, 33.808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.407, 33.8108 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4088, 33.8166 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4103, 33.8205 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4133, 33.824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4187, 33.8337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4259, 33.8424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4309, 33.8494 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4313, 33.853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4319, 33.8589 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4472, 33.8731 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4507, 33.879 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4559, 33.8836 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4585, 33.8876 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4624, 33.8846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.469, 33.882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4749, 33.8802 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4874, 33.8846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4943, 33.8886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4827, 33.8878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4805, 33.8823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4847, 33.8764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.4917, 33.8733 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5002, 33.8712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.504, 33.8667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5072, 33.86 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5144, 33.8582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5459, 33.8672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5533, 33.8667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5578, 33.8673 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5625, 33.8682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5739, 33.8672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5793, 33.8682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5853, 33.8688 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.5904, 33.8702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6009, 33.871 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6042, 33.8659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6118, 33.8623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.626, 33.8576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6349, 33.8562 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6414, 33.8571 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6453, 33.8595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6492, 33.8599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6567, 33.8619 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6673, 33.8587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6821, 33.8598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6893, 33.8593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.6958, 33.8605 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7124, 33.865 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7208, 33.8681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7303, 33.8703 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7411, 33.8793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7691, 33.891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.7742, 33.8932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8006, 33.908 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8127, 33.9119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8386, 33.9209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.845, 33.9237 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8555, 33.9253 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8666, 33.9273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8846, 33.9445 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8933, 33.9498 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8988, 33.9573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9055, 33.9715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9098, 33.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9177, 33.9833 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9223, 33.9859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9254, 33.9885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9287, 33.9904 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9347, 33.9924 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9455, 33.9985 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9534, 33.9983 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9664, 34.0014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9782, 34.0085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9855, 34.012 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9895, 34.0131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9931, 34.0158 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.009, 34.03 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0176, 34.0387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0244, 34.0423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0379, 34.0462 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0581, 34.0512 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0603, 34.0532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0466, 34.0409 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0522, 34.0327 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0585, 34.0273 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0569, 34.018 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0691, 34.0126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0833, 34.0137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1054, 34.0101 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1124, 34.0088 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1124, 34.0135 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1096, 34.0176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1061, 34.0188 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1105, 34.0221 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1181, 34.0278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1357, 34.0368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1423, 34.04 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1498, 34.0436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1665, 34.055 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1709, 34.0582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1794, 34.0647 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1955, 34.0807 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.209, 34.0939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2214, 34.1052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2241, 34.1085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2314, 34.1174 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2344, 34.1212 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2377, 34.1271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2433, 34.1329 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2476, 34.1386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2527, 34.1447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2588, 34.1515 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2639, 34.1569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2771, 34.1686 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2823, 34.1756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2875, 34.1834 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2899, 34.1897 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.293, 34.1941 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2971, 34.2019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2997, 34.2281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.301, 34.2366 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3022, 34.2431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3044, 34.2492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3157, 34.2762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.318, 34.2866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3202, 34.2953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3206, 34.3049 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3182, 34.312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3099, 34.3194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3044, 34.3262 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3034, 34.3496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3059, 34.3538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3079, 34.3576 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3073, 34.3665 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3101, 34.37 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3112, 34.3772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3148, 34.3832 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3178, 34.3894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3299, 34.4089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3358, 34.4216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3391, 34.4282 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3416, 34.4356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3448, 34.4482 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3457, 34.4564 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3463, 34.4635 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.35, 34.4711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3536, 34.4975 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3637, 34.517 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3673, 34.5223 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3656, 34.5296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3617, 34.5387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3563, 34.5504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3534, 34.5595 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.353, 34.5757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3527, 34.5853 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3477, 34.5959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3262, 34.6124 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3117, 34.6136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.298, 34.6144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2853, 34.6052 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2693, 34.598 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2536, 34.5919 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2415, 34.5923 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2247, 34.5927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2121, 34.6021 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2023, 34.6043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1873, 34.6033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1775, 34.6056 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1482, 34.6004 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.139, 34.593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1237, 34.5818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1023, 34.58 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1029, 34.5852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0854, 34.5962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0812, 34.5995 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0722, 34.606 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0446, 34.6203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0345, 34.6326 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0318, 34.6386 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0289, 34.6466 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0242, 34.6528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0211, 34.6587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0177, 34.6684 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0109, 34.6837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9969, 34.6938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.991, 34.6988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9839, 34.7006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9791, 34.7053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9728, 34.7132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9672, 34.7192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.96, 34.7254 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9524, 34.7296 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9466, 34.7337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9438, 34.738 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9329, 34.7361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9196, 34.7435 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9132, 34.7473 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9088, 34.7583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9055, 34.7658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9007, 34.7756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8897, 34.7892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8873, 34.7996 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8858, 34.8089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8857, 34.8161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8873, 34.8232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8885, 34.8312 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.8936, 34.8373 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9091, 34.8478 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9209, 34.856 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9285, 34.8603 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9373, 34.8646 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9431, 34.8682 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.951, 34.8763 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9559, 34.8808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9611, 34.8837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9653, 34.8877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9784, 34.8978 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9862, 34.9037 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.9952, 34.9117 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -120.999, 34.9154 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0029, 34.9189 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.009, 34.9258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0128, 34.9301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0168, 34.9332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0203, 34.938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0233, 34.9417 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.029, 34.9436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.041, 34.9404 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0482, 34.9433 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0558, 34.9483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0617, 34.9528 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0648, 34.9586 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0644, 34.9721 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0605, 34.9741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0633, 34.9764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0785, 34.989 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0841, 34.9962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.086, 35.0 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0873, 35.0033 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0881, 35.0067 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0892, 35.011 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.0905, 35.0149 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1002, 35.0236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1072, 35.0284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1179, 35.0391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1222, 35.0436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1298, 35.0534 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.132, 35.0592 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1372, 35.0707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1448, 35.0901 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1487, 35.0938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1581, 35.1089 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1606, 35.1132 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1713, 35.125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1725, 35.1287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1823, 35.1387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1855, 35.137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1884, 35.1381 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1919, 35.1412 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.1989, 35.1424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2016, 35.1432 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2049, 35.1457 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2061, 35.148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2136, 35.1546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2164, 35.1588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2169, 35.1648 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2158, 35.1709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2143, 35.176 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2161, 35.18 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2169, 35.1837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2197, 35.1866 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2236, 35.1886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2258, 35.1911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.229, 35.194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2311, 35.1957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2375, 35.1997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.246, 35.2047 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2575, 35.2116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2712, 35.2218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.2832, 35.2292 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3103, 35.2505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3158, 35.2577 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3199, 35.2641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3248, 35.269 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3279, 35.2728 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.335, 35.2766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3405, 35.2789 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3453, 35.2839 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.352, 35.2889 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3547, 35.2932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3558, 35.2965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3626, 35.303 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3654, 35.3064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.368, 35.3092 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3701, 35.3114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.376, 35.3148 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3811, 35.3184 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3863, 35.3216 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3931, 35.3257 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.3984, 35.3308 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4056, 35.3375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4159, 35.3504 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4284, 35.3552 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4362, 35.3568 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4443, 35.3609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4507, 35.3617 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.456, 35.3675 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4588, 35.3725 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4658, 35.3826 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4718, 35.3859 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4759, 35.3878 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.485, 35.3921 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4948, 35.4014 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4911, 35.4069 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4921, 35.4115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4934, 35.4214 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4948, 35.4259 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4985, 35.4361 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4999, 35.448 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5004, 35.4536 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5011, 35.4596 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5001, 35.4643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4864, 35.4587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4783, 35.4467 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4732, 35.4475 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4701, 35.4484 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4651, 35.4501 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4603, 35.4492 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4589, 35.4524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4588, 35.4542 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4544, 35.4544 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.449, 35.4559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4458, 35.4578 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.445, 35.4593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4414, 35.4633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4402, 35.4666 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4398, 35.4683 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4395, 35.4708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4393, 35.4727 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.439, 35.4748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4401, 35.4779 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4475, 35.4867 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4562, 35.4891 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4755, 35.4929 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.4951, 35.4948 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5033, 35.496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5228, 35.4947 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5379, 35.4994 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5549, 35.507 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5612, 35.5122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5663, 35.5178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.5864, 35.5323 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6057, 35.5496 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6104, 35.5575 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6087, 35.5645 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6152, 35.5702 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6169, 35.579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6235, 35.5857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6211, 35.5894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6243, 35.6009 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6234, 35.6062 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6263, 35.6127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6298, 35.6157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6462, 35.6209 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6543, 35.627 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6624, 35.6281 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.67, 35.6337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6741, 35.6353 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6803, 35.6392 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.6964, 35.6465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7044, 35.6468 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7187, 35.6545 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7231, 35.6593 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7262, 35.6625 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7294, 35.6664 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7317, 35.6708 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7362, 35.6754 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7381, 35.6804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7393, 35.6851 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7408, 35.6893 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7432, 35.6987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.748, 35.7036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7491, 35.7076 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7495, 35.7113 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7487, 35.7194 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7477, 35.7334 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7495, 35.7465 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7537, 35.7495 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7559, 35.7531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7561, 35.7573 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7549, 35.7597 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7557, 35.7633 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7601, 35.7882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7644, 35.7934 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.767, 35.798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7721, 35.8028 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7764, 35.8048 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7814, 35.8104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7899, 35.8143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.7949, 35.8178 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.801, 35.8219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8049, 35.8271 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8092, 35.8305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8142, 35.8346 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8201, 35.8403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8277, 35.8443 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.833, 35.8491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8378, 35.8549 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8417, 35.8585 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8441, 35.8615 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8461, 35.8674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8523, 35.8734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8543, 35.8758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8574, 35.8803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8588, 35.8857 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8591, 35.8906 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8623, 35.9015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8655, 35.9065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.867, 35.9103 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8702, 35.9182 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8906, 35.955 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.8953, 35.9638 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9105, 35.9786 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9185, 35.9849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9348, 35.9959 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9562, 36.0083 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9604, 36.0102 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9659, 36.0115 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9696, 36.0127 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9731, 36.0137 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.981, 36.0131 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.989, 36.0116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -121.9967, 36.0078 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0085, 36.0053 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0296, 35.9963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0348, 35.9894 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0449, 35.9809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0461, 35.9772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0482, 35.9744 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0527, 35.9735 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0625, 35.9757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0741, 35.9758 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.0951, 35.9732 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.11, 35.9697 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1177, 35.967 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1274, 35.9653 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1369, 35.9644 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1454, 35.963 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1535, 35.9612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1573, 35.9657 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1643, 35.965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1673, 35.9667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.1846, 35.9704 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2048, 35.9734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2112, 35.9714 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2184, 35.9659 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2266, 35.9658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2346, 35.9632 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2398, 35.9609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.264, 35.9579 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2709, 35.9569 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2892, 35.9622 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2962, 35.9623 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3011, 35.9651 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3064, 35.9674 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3116, 35.9694 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3153, 35.9742 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3231, 35.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3255, 35.9892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3094, 35.9882 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3068, 35.9764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3122, 35.9753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.317, 35.9748 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3221, 35.9762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3267, 35.9785 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3377, 35.9792 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3391, 35.9798 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3436, 35.9803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3475, 35.9903 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3476, 35.9943 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3445, 35.9991 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3393, 36.0046 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3366, 36.0105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3348, 36.0157 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3342, 36.0192 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3337, 36.0229 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3359, 36.0314 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3395, 36.0356 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3442, 36.0405 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3494, 36.0447 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3536, 36.0491 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3595, 36.0537 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3654, 36.0583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3687, 36.0614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3732, 36.0658 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3777, 36.0701 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.389, 36.0765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.3955, 36.0793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4034, 36.082 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4099, 36.0849 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4184, 36.0864 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4233, 36.0885 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4268, 36.0922 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4304, 36.0956 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4418, 36.1003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4475, 36.1025 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4527, 36.1044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4557, 36.1073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.46, 36.1093 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.463, 36.1116 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4662, 36.1144 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4701, 36.118 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4732, 36.1218 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4798, 36.1258 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4873, 36.13 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4937, 36.1343 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.4994, 36.1396 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5001, 36.1427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5009, 36.1485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5051, 36.1538 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5078, 36.1607 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5152, 36.1672 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5173, 36.1726 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5187, 36.1778 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5171, 36.1863 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5253, 36.1938 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5289, 36.1999 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5277, 36.2073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5289, 36.2142 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5325, 36.2211 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5392, 36.2375 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5455, 36.2455 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.547, 36.2488 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5497, 36.2572 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5467, 36.2641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5467, 36.2812 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5471, 36.2874 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5501, 36.2953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5569, 36.301 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5641, 36.3065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5708, 36.3125 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5785, 36.3191 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5857, 36.3243 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.5936, 36.3306 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6027, 36.3354 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6126, 36.3376 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.622, 36.3429 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6303, 36.3505 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6479, 36.3655 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.654, 36.3707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6604, 36.3776 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6663, 36.3838 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6715, 36.3933 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6741, 36.4001 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6789, 36.4104 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6811, 36.4162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6837, 36.4226 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6854, 36.4284 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6886, 36.436 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6895, 36.4403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6944, 36.4582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6934, 36.4753 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6895, 36.4902 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6887, 36.4962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.688, 36.5051 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6893, 36.5183 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6903, 36.5246 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6933, 36.5324 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6926, 36.5387 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6939, 36.5456 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6952, 36.5532 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6974, 36.5587 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.695, 36.5643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6907, 36.5715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6867, 36.5761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6851, 36.5815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6847, 36.5957 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6868, 36.6029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6871, 36.609 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6895, 36.6161 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6897, 36.6232 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6916, 36.6305 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.693, 36.641 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6948, 36.6485 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6956, 36.6559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6965, 36.6618 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6973, 36.6687 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.6996, 36.6772 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7014, 36.6837 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.702, 36.6884 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7078, 36.6937 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.713, 36.6986 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7145, 36.7015 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7165, 36.7041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7215, 36.7073 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7256, 36.716 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7212, 36.7219 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7212, 36.7278 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7204, 36.7341 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7212, 36.7403 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7177, 36.7461 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7162, 36.7522 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7158, 36.7557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7222, 36.7681 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7239, 36.7746 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7236, 36.7815 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7206, 36.7886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7085, 36.809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.707, 36.8171 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7131, 36.821 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.715, 36.8337 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.718, 36.8391 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7256, 36.8431 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.744, 36.8499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.75, 36.8557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7552, 36.8612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7617, 36.8707 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7731, 36.877 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7803, 36.8809 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7904, 36.8905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.7999, 36.898 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8108, 36.905 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8214, 36.9087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8284, 36.9136 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8412, 36.9203 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.85, 36.9222 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.86, 36.9277 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8727, 36.93 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8848, 36.9328 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8904, 36.9377 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8973, 36.9437 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9019, 36.9483 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9063, 36.9546 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9009, 36.9614 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.8997, 36.958 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.902, 36.9553 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9041, 36.952 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9082, 36.9499 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9099, 36.946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9126, 36.9423 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9231, 36.9364 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9386, 36.9371 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9449, 36.9398 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9525, 36.9408 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9606, 36.954 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9642, 36.9583 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9654, 36.9599 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9662, 36.9612 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.972, 36.9671 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9751, 36.9711 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.984, 36.9734 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9885, 36.9761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.9939, 36.9783 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0012, 36.9814 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0081, 36.9852 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0158, 36.9892 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0198, 36.993 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0255, 36.998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0338, 37.0043 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0421, 37.0143 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0486, 37.0195 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.055, 37.0241 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0615, 37.0286 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.067, 37.0332 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0722, 37.0382 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.074, 37.0427 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0767, 37.0476 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0793, 37.0531 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0843, 37.0582 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0881, 37.0643 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0915, 37.0709 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.0962, 37.0771 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1047, 37.0824 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1116, 37.0861 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1163, 37.0899 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1335, 37.1019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1468, 37.1126 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1533, 37.1119 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1698, 37.0997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1784, 37.0979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.1866, 37.0946 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2024, 37.0804 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2165, 37.0741 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2482, 37.0464 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2561, 37.0424 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2648, 37.0368 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2833, 37.0236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.2909, 37.019 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3061, 37.0122 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.313, 37.0085 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3192, 37.0041 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3368, 36.9912 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3451, 36.987 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.3662, 36.9723 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4049, 36.9204 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4119, 36.911 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4354, 36.8988 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4442, 36.8964 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4539, 36.8962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4631, 36.8939 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4687, 36.8927 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.4948, 36.8823 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.499, 36.8788 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5057, 36.8715 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5116, 36.8712 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5377, 36.8757 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5475, 36.8775 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5585, 36.8791 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.562, 36.8803 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5657, 36.8818 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5735, 36.8816 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5881, 36.8808 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.5924, 36.8793 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6093, 36.8761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6133, 36.8761 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6174, 36.8766 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6301, 36.8767 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.635, 36.8765 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6389, 36.8756 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6502, 36.8749 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6558, 36.8762 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6398, 36.886 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6344, 36.8953 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6379, 36.8965 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6432, 36.8969 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6501, 36.8997 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6575, 36.9044 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6602, 36.9066 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.666, 36.9075 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6831, 36.9185 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.6994, 36.9272 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7031, 36.9287 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7123, 36.9344 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7281, 36.9434 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7396, 36.9459 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7466, 36.9471 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7615, 36.9524 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7692, 36.9539 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7737, 36.9559 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.778, 36.9588 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.7936, 36.9693 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8021, 36.9764 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8076, 36.9799 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8127, 36.9846 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8234, 36.9932 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8302, 36.9973 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.837, 37.0006 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8492, 37.0114 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8515, 37.0162 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8648, 37.0236 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8688, 37.0251 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8795, 37.0362 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9004, 37.0557 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9069, 37.0581 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9098, 37.0601 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9137, 37.0667 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9114, 37.0773 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9083, 37.0979 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8951, 37.1065 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8897, 37.105 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8813, 37.1029 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.877, 37.0998 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8789, 37.0962 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8896, 37.098 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.8954, 37.1003 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9015, 37.1036 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9082, 37.1064 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9145, 37.1087 ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -123.9632, 37.1147 ] } } +] +} diff --git a/data/blueFinWhale.jpg b/data/blueFinWhale.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8a4be3677ca3c683281d93dcc228ce6dbf555cc GIT binary patch literal 141873 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 QBgXUSBlUZpPySo^A1k#Ja{vGU literal 0 HcmV?d00001 diff --git a/data/northArrow.png b/data/northArrow.png new file mode 100644 index 0000000000000000000000000000000000000000..1538e91ce92c3fcb14e547c5e66fd6a7883b0573 GIT binary patch literal 10159 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 literal 0 HcmV?d00001 diff --git a/data/pilotWhale.jpg b/data/pilotWhale.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a49e35ccb324bc0fb665ade91ea08cb9f2a799bd GIT binary patch literal 303987 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 z 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μ!mpisZn*x*00Q4GmYQ;)AdE;{PNL^er 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 F|JlBp?0NtI literal 0 HcmV?d00001 diff --git a/data/spermWhale.jpg b/data/spermWhale.jpg index e9f5e1817dc4a3acd90e2c6f3bf12654e3d27b21..f4ded598df42e48aa4cb99b59b0070685b7cc727 100644 GIT binary patch literal 111090 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ส`30zW*O7Np?zlN5}fTsa% z+%RROja5axyi|qk$RsM(jNFY%)cEN-GPIf;SKQ_#Y<0Dfx{47fCZaR!pz2)uXrtl2 zr(~BWPcNVua@TeN;f=k3$AmKm9GxjbwI5Vx$63}ymb(#*)0MfFaqe0@VrdjHaU*># zPZd%&(=>&Ww8~ywzdO-2#LPf><|a0akJBMm>OLn z;#I0j?_V8F)?Wn`pOIbV-Q}&jD>|E!%BCa=T(LeQYLVu;vqV`+_XWXO1-kHMG?fVz zV!tD^e=yK=Y;R-^F+Ie$m2GHFVWa3PQBJ$N7z0A?M5T~TCwdx!j zYMr;&7XE6^tv~imLuZ%9&1mr4+;F&Sb^BY7Z`_IHKt7-dHSpv*9e56Ep&tCtA(;O8 z7+k%)g34Q)X=L}N$E=1~QZNUr++k1&sq)uGz0Rr`4VsmYV(rf7$KSQd#z2SH8IK`g^txe zU#_)NG}pkcTgxbOf=G$MN`MF~DjB{fOh~@L{p2wgAzp!j z0;Zls=mjCHID0l-*Lv*K(q>U=sbpBl;G8@GOR23Ga$UT^+gZ2@sP@XZv4fGU&q=dIOw&DGm8JEEA zt0YG?FfM#ujm*B_k(Ma4=U=IGHteKF#1Mstx8woy}StSzaVzykSU9^xXDbl0!hHPfS)=Fu^Qpo{>4WJqp$sI zeTXjq03c`bWg?y0&lc5J$K%i2D{Vkatz6LWxz~%g?zPWbU&l%zJUIENXL+LqoG4a* z>JWc<9cVSfZH@Um>8&GL_zSo_f~fNrYDyRg)J6q))bC1Z8cb&>4$@z0WA;d_B9y-{ z#YiCfPX1clAgZ={lXt)S+8aChoEkx4Q3Jr)VO*xsp@vPZTxe@kS_-0;n5Lddd?%PrK`}yAuzGn#xHt7v0;7 zwTekE;)j%CB~W;>iYlT4ITPyNsn)`(qf*vv^LtpYZGX33Mcj7SzTRn#-JBBM#xEco zNRnf2wN#RT{ac;2K47JvCL6l4U}bM#3v$!rQJNup52iVhfCfch4|nQn=nEz&Pc}y7 zY;4rL?OMjP2a1Z5zd`fS0KKmxhTh`$i#rEfdq`#l)X>&K7;Gs`#*7NU9__B~-eTry z9)!0aZBP;Ps`vrnqXNjv#?;-+8sWq?k&3%Db{_%MljWlTk)_Smt);Wh6hjx$3~YT& zzEtq@Ix4IV=)iXma{JY_w*(!_J$!y3d3bBCv^g(n65%^${{TL2FC<|GF40Vvx6+;{ zi{uIF$H7MWekKr+#J-Pi{AJtl_WTm$?~tY4@&&bl{t7~+sEvD{E|!$D$oe-X z;Ts$5v=FlLP@};A0LxyYJnLB_jg+%=5^!E#N3NO#cP)o6YsQboK=SLQbsD=W9~M&{ z@e}E9o}p<+O>I$K&Hb1p#z7~*YgI8W(30af?Uo3vJgMWW)}&p~nfspdOP_5Vj}9kS zR7W?lj%}}}EQWUUH7Yy_)U1kCnuw*fYhcBFT?o`5?BWdeODNE}2)=>SSFKKa-UTxE zTib>!yDwCxp8_vz0UqnVzy6ZOc>e$mH?0M2b}WM@kVX;%)5FI@){UDRN1Dh;feCH) zuR=7fK-uvE9NEir4I3ZRf8(dBP)6AaSx6Lk>mReYimc`(URH%q8A}?6C;YY89W%6}B%l&} zL)-npD*pg=9AY_bXRTT@y*J%y<*cqNq?cM^u{M{{{i_M=y)4CI_NENV3vg4nq||J5 zEqOy$i3BEF5oK^rIzuE9lNIDFL5+uxx&cw(VsibpAD3pco^ z%zZVGfm&B`bk*QnIRN)1itbxGr&PbU0y&wN-3aPxBjgXJz74A+O|lW2MYvnpQahOo zmb-#t!6oqHRiPB~(?GIbmj3{Bf*ZO1;=&!^w`Xca%-4c=kNd+)k+~;rgvd%RB8Y{x z_Sx=YG6nY_Q&Ar;79JYX7-EmImIhi74_YtP$FD>FI;v!ye2k%#loKiyP~08D>=^t8 zp?Xgxsc7JqOCpx*1SQ(wr`2vf0<3>)A3Z@;mdyf1n7p)xR4oJB-iC@eoQWC&t?J|Z zk(>NRo7CFm9?p0&cNcJ2l`k3Wcbu%FSuBAw2+xDKi<(cHX4Dk8P&NqWwNi0(<#H%|<0VPh%z<3|qT~%0C zk@_#QJDSreZ5AwK2m78@G2~*pfUB%vR6JzRZhVgVy1C5tq&&$cI%|WCmckp>yCyrX zN+Y2_Xy{bYTE1gftMWmaxw~@T9d@x#a-c$_!Yz*#EH@mtq1&kN*Hv#SPHR_^#)+hY z;bFFoKu=<687k672%|5{&&NX|n6PZEyFIFAQ3eZln5>6M|2 zY9lFej)xy~<~b#_`;qQhK@@^@i`?0j%L)?IrB1r5cG1mh84R`DaK>@-qCydgm5gDS zG1*GDjemF=?x!aP&crg!FBUOW$SdkVXh7HzUjwT`ApZb>F)Oh4OSL3nQR1iPrd2{N zMnfMk1>hKNk$uJ>6GmZD z6nWFf<*mV!4NS%2T*WIx6~e^Cy2`EX&JM$pf+z>WO9d5%Ru@+sIXl#o%Zk>6;49!X zrfvrCWD}CB0!iMKuBOIT8>UKuo)>W#+lx>dQ>6xk6jo&9%r&|xlah%+D!`9Y^g1}n zvVwu#vA{V4P`hk)uD7a1_Q6;C>LVut+$wrk!039QWwf$R=t3%l7Vsy-TL3+PZ{3$% zhyZc$3()D^MfQT+Up?4=KoSwll$F|^14VQOyn;NLJ}Qt%wCWgC8lIq@x@7=v0Gk(k zc_n9&i+B;Z{WQsW1R8^&=_nbxIYTS2$+?V$+?TlkXS$w(Nx}q1DguK<01bwc zpE^T7uGav&?>pCtnl$6-q3U@P<+j?g)Fa%)E0*qC*#x%MuF$gtNf;GgM_>aTtEIK8 zUdE+%TccqOj!PP;H+AN$aF*m$hmg;3PlBvTxjN$6^idtU{#}fn*W^CT#l~&$7MD5f zvWorgQU2P`m-%5s$-h&tI{yG|d>)>!iT?oXU^CtO-F?Pd3%kaG$ohWH&-yUXcySu? z_Wf=2dRqQfUj}L`MQM6~_4OA%UT4Q#HrZx&str>Zsc6^IRo0);jEV;yEKh(Mn~~H5 zt9z0xrVx+=w4X|C)`aysNRtgQYh^9il3Q6W(zQre(pcAG)abeq19&zMZj;3=&CE|6 z)1DB*jzEo9Vn;Jw2Eu>@O=RJt2&yjIc}x*J(jXdi5w_IG;>wl>@`|***&T& z!Rnp$`35X4#npyy9G3mLDw|v-zZlF@ycAP4%xZavWB&lc@eT8k*|tZklgD>msG#_d!tpzgt`O-5XmJU$$zD;t@L^F3$x))uetT;tV% zX{L*$axtwGu=RP3GdE&9o?uA54;~9l&9|1uA#bL4oh`Li3DjRy!+dtPv$b@B7Fbq!P^A?MSQ8 zvFLwIFo%HwvGGatu>^UY0KjV4S)!<715&42Osi3QSj5v0Zs01DLZkkA&yckbf!($?(IfR0 zJ5suiL*c+Qn44B+DNX!^bom1SSHs#yLyA|a*aN3ci)wIFaTN-MG#cHKbbbl_%SN18 z_9B$h!YZu6q-$x21-(aO=ci5y&m>Mh--%hc zfgSsJem;Muw2da}&9T!$*7k9GaC%y1eaf=bmRkHZ=G(K8)sk zZk`%jQ5vn9Yl|kk$T>^7?jxXXcZ1oMR#gBjwKZCJZ>S{&z#97^*y%BI%S#AnGRJ6A zv}*doNCic7*vJ*5vK`NNfxpZ{k-*|U&IYnrauy}WxAy>X_fH#n+!IbO#gh;Hs~+&rXOI5S)-R2FbOAfA;yG;s^D^UHTP z8Q|q3s_~K*1JVK6N1Zfr1c%y9f3*)Ab!vk{MJ@YHdQ)2vD?cMsk&wiYM7)@m_ZxkQ z*l*B{Yy$2ACcJy5XN|qWr6F}7(oTZ4+mD`^!|0rhtRgoy(*4A-!eSwVBNZIMp;6$+ z<-VnL1?tG;ZEcZfQ*&>2=ZTK$E=|dgRTZHGc+_Z6%pVh&i?@Z$>5sL^M|*70U!~+; z@Qqm0oF=1;pmc8yE%oJP$(5lPY{lMc*)E#Pgi%bZY+$;DXP50{YK0C)%)eJ5uRr~V z&YF~V{5$^uv@_(#TR@ic-NkHfrCu@2j%P*y@G?jNG~Z?&SFXN!q>rFn%MHa_$nzn# zSBTriJ;bww5~SAfudNV0D^t>jqfb#8zQ^}FHIz5jb`x9Q#H&6&X`7wP+a3M6SkP0h z`l4P$XR70~_IXQ3zmCbRE`6w;RA%?p%zy&%ORzjoU3F@)&3bSYxQo1)WR5ba0|%Pv zfha0!;+_Xr&IqbV#_hmaBZ9?dhBOiTh4`-nuwYlI9yHP>85D`4=N-SaQoFQ*p_ZO! z#fQsOo@7uyz(jO1)F3U0YVikv)*BCzE6#y}63zks^Cy zJ+)#>#($THrp>oqdbF}Ui&ef%jh*|$H{0Dc3|kf3iW=6H9Y(sJCooH0S<1tJ9LcG! z!n!8lG8@qxoVbt<#R#eR=>m|&<+XVI$-PVzF53Z5JrJ}jo=Zafkq0Uf>i+=SuAZde zQImohB2#Wy%R*;bRaAqp1a;G)7@gsSD%La1FZCX^1-+sIm^fbGDq$o8j7esM!j@{%NW@_lE=xY$VV!wk}7wm{#wT8ut{$&Iq>#+ zRD~T#A3Zc6W&9LJl@c+HQC6qb8y)xY8VvZ z-{I3s$WjW1(IcUis!e#Y=ue3KG^1j6?+mWBNdvR3REiM1yvLr371URh!e3;r#ogO4 zyTKwJ%B)MqHR8UM0CXFkr%hXh>hcOZP?*GqGRerVxZ46pfIfPBg~TFERnG=mtD`7i zalJ)&^Z@v1NHG^riM_Yj57{iGvLgf9U9gh1U4;iy2ap;#p;QlJv$9CpnDVOZ zg!HeE%xN2fl}VYLtXyt*TBo{6sEt8pKQJ`af5|sT;A3ZrxLDTbFz{lmi1z}@>RO&_ z8k0}geMbB1RoT<4<+YbUc^>fXtUPT7BGhEBN!sG)ctroi)vq|Lym^%rEy;(U!$z{fdqNb! ziM!3Hy|}qcSY;wX8}A`PeKZHpT@wp~lbar^giIe~VlFc`#w(lXqxTVCiBSF={FQY& z*4MWMTUA_`SzjUE`6cciXL&Z-gIl9k;%- zat$Er6nK2K?bfiM@$GcT-P}%M;}aGgKm(?zgthnqkM4|hV8O|+!&FG0FmYwbD;_)i zDn_&+Q)L&EXB;XiD#N8bb&^KPz)?1C*~xNQPgA479jspYT*4YF9zHd$mjpYtpeiou zy|zk9gtv+E*1-W@$5*?Wc?U3651zNIFJlf|+PW43wL4eGON1i#z z&|DjAm6P*G<5B@myriva2-uAr7!{I0F+Hu_=Q$-2M>LW=vRjZC2iy(^s0U8eAsn_i z6WPQ4S?A}*ixe`oTYnJ4VNWBV%c(Vb?g$<~uCI~I zn-aWPi`%0c#uhwQ0nRBeJ)2cvyjU<)(YG3zmD$nZAi=`AjxpfPE@jpcY?Ov}7FHJ6CO5ayE`2Uq5BBV@ zNZP@NBXJa}Xe37cwer+ac8l*V0%B3!u0}58M(O=kmPRP#GanR<$AZ*y)g+mu?VjRJ z+>S|a5^Ibll9(-~B%*O~SmTfyf#NIUqgM=DbZIf2{{Wqg!E-A}kUNnrnO-X5l=QF5 z$5w2WR3mP;i##Ih9U_=65Ewx;9BaQNB7v0arnte+X(^OS5w7P%Uu23Zk|lH09zV=$xb#<4{Q87>==f;k#gS9Ue>*HvzE+KGVJ_T`$@(T^q_ z38}BZp1Py65o-#zx3P-)F?$nBX&V!98aD|Yd_uXc4wgcaOeWsNE@dJ*qEwiHH6cN& z)bu21$RLcpwB^vliI-*T8ElF`X0$ZgHr*n6(zPQa0(TtB}W%5!k>Z0#)Rr z%xz5UzyO!vv7kgtZl9&5qoqiv1cBE=4<7w-v&-XrGix}ZEm3y z`c!}tHeUu6=zb?it;o!()LPymwOS5~32fkjE1DOZVI@3(qmBmr^#x=zA%{+;b zQliq{GzKOdzo=z$L0S){gIh9gvKt;STR256AtTnnH5dG>PmZ+6_=Ux2&@pR z-3SIS7KiQ}2*WT$F8sFQM_LaNp#`BwWlwRGk&4&>Jc^AYF330_eUy7RT)AZ9|1+pI}U%0Kk_u$fd z9tF~b{+~T;K=z0K0CTsR5J2@(q0aRm8t6dM3QST|wK$HPev@B4G_W?AT)4>YRG5)N ze<(gb4H0K|dWv_tvds=jrWVem#-2zkqf8nKj67n+9Wp62u1&v9S4U=_lI+9hJLb)u{{Y)K<+nuzMDsB&7tD^O zkDk1(-*<$1`o1hoG}GVYrD-RSmTxiCj{&bH+ne%wG@@J;t)$L?@9ox%ej~$BcarL% zDPXaXBrMBa`d9SQHc?hacGhsbiO$|*5!vI26C?QmXlQ;zOOViCVwVw2@z};-c|nFj zA_C+&rvuBOI#~`Q5stgDe`@5kcM-W+ql7I-kf7Ud9cdXTHn}yX@KdG+T)quG(hwd$)yu#S!COx?rK|Z zE1|$8i`pY1bB;>dnsIO3Y1Hl0KxEi;gsis~*EcYmoPE2Y7Nqd^xSH@Z-i^||b)Z&} zt-3Jg@p%i}_q$`4xPNyMYiNqr;aAeINGZuU04V-HyHrX9d-N{u z!6}h%CrAGP^@7swq=E;gi=rSTm`E^}*ATL_*GxDV^m|mN_3{$#$k6jl*C%Z zGFFIguO>%H9!fbx-O#A53!V8LIznWTlF#OGvE=WilzTHIluK5Bc&~w8U;ucJ9UMh> zA=&n~-Qk-=vWUJu%=5aqZIM9f$+~UjrF;upNN#=Oyv~am&$*7Vshq{XxKP)Mp9<5d z*H*fm`z^?>Z1zh%lvpiLMQLa~&QvBi<6jqUlpo`&s(478$0w&@`%@>LjW05A$t|2A zWP%wNi%O&EmUJ5g{zN}BuV>}?u;ru5`aXwe35_rC7u>kZj%3ShXgb$wjWd6N#g*Jx!*Jfu zvK77tr$s;HpYT*WHdbLFU8}uz16k}3t&XiQQNt3TLFqm_=^dnXMFg%fp5-H0!KX?N zgF`3^ptkd~E+hh2*smSO#=37{uUrH{g1WYkhbD7Psnc5^;NYm??;4@OW%4I|Y~V*m zQr(!hM7)(!d@JLu_6OF_pzSCkZ&bUl?K@XnIWnUTpAQ*_fR3$Az&jlYV>%&W!iZ7i z5bsY8wbLsL0N-zO{{WNW<>982LA;U}W4sgFA-uL>{dYoDSkw8w8scBc*wk`~+U2e- zrF4lzk;xmQ3I_RAPg-a?n7fu5ihzfcFK%xF4|TN-$+G1m^0EMz+! zg7pXf%`B9J%HIWK>f|sh%YTJ>)5A=*F>n{$_WiRsf)ah%1rQU!if>SBO$i1miZAi8 zeWE;uLv?Q4QeeY^!a9afDq5#zuBe!p!3<@mIjirKlZoaTs0*&(SNwIK0Z48AtjTW_ z60rz7T?oNE<@wN$nh5uiC#Fq;zESS?h*+twM%?7mWBl=GCNzZemmIXhSuU3 zk|`{rMEp@4hM?Fi&~}0Dky%gEID+hyuOc3 zHo@*-$U53vV&S{ESSEOXxFWO1AOn)|>Z!1;80&Up&$7;n*hzg=}z5VJ-e{?9KDC@h>CSqVu*h$JWCd73+ti8KxXiQ5L?5_-K-Zj^p9;(RP#!T!uC(*3xb_%vXs4 zt41Jrljp3MZB&ciOL%SGdr}@WaDt=>2|KM5tqz;aGfGHKuiP1xyB4xUf&~xu&eWDc zS|4t-2ab)Jt0t>`DJv38d*(6sB;?Wn<%&oFFPvN2j(mQj1i)3XH zzc|Gtk$p->P5cymbX7xZs0Fa&dw1JTYy;mtp&``WF?TPr#3a&(`6-g<+j5?(}O*VN08<0 zZlhTe0gG8TF&^t1 z8Z(A8^w+Mpv4QGEQTDC7NI8P7Qe&cqCC5)s&rR(}711EKeYEiwkhu=b-tw=hYQw3PrxGRxQA*}2LMLZ4du?>um-o7bs2(2zI7(}cGQoN4;0H(S2Z>l~VtG1$cY&kyajOa&;C_16g9CxRoNeif4B<4iw8P zQoRvHPwAm7q#8ceXsmN~SGN(%HG~odnS|eI?Z_0E-|jfKx5cP>Z_`B}mF08Sne3I` zZ#^1b-Q*vY#ICCgGq0pM-~g=v-kbH%fF^*ND_CvC&9U~p_^?58hWe zJ2J+W1Rb!(iS%}*Qg8Q@EWgy5k;l3yS}71aNA;@i5^bnTt^xaS~3Ap+f!{u-IY#H zq`ih2X$8~8YQC2;FakmRt+A@teJJuOzP`SmCwpV*kQ%oGz#!O)_|rf#4FnBnQf#n_ z^2N#tExzGW@7YnvI<0nJ3LOwMRco8WgL##|F_c6w*xO1TDP}@x8mo$d?T=G2Jv8Wz zndjZX-BS(6fV8J9d7K$wP_!ciHy%oI)tFequtcN!~>i=KlaQsUu9FO?~*8Q=xl59Smnai?7fi*2ozV^kxHYT?ej8ExZOIfB+YvAXiO@ zt-v4mNxz(b@{K$LBhze>+6-*6+$8BEGJU9sAc>FeEmK_ zKnFMLzg;p+R>k+&=q;9Cx0*;@y%deT0C<3UZ{?~hNUoe2E6H*8(}*Qzmew;?j$!KO z;x_T})22cSqsf14mRoq0<%T*+Vp;;K-XwI<;L`?%*SO3x2dFh*5XNdb5#i@ePRV#4 zw}GN&n(CD_02U{rns`unolVvXt2Q5yxsfbkzA9EJf2RV-DCV6=2YLgbm~5ICLb6WI zvMHHDtGfj&MnAXWbj^yB8Qb6^Xg%`?7VuGhDtSm7aK@*09V<;wG1X+M^$s%*FC>0Q z(-`1|PbolJRLl?1roNNopPi#+a@yqTbD-Tp<)NI}ySX5~& z+a9ntIczW7%J};*}y+idGWJl7Klf*J@YG<*HJ%*{@`}6j@|e7FjOss$q=9JW+aN zl^^LKIiaUbHMOQrw`lTw%%cx?ezv7%#@$Qrt{&#Di#Y1(O}QZ3e+_uQPKQoUW9Hti zz*YmfvLeDu3k-$A+T?Cxj`I%zWLb8vyj^;5=}#?i)a`8bD~PPI_R)(ZAJ$|ts*0hY z^r5cwpwq6&wko^I*>W>Skq40?jyNE-B&QRcfc z3K?W+WjmUWK1BZjhNuO|L|H4VEPd6bjO8Q9FSU?}Q2UWC`?0R|^3cM073_`#W$q;~ z`YRL4v8gA5Y<)xcY)-EF;DT+kIj6IHq_Nps{f(6fhA(&SDaT`1@!z4*r}8W8Q+EZL z;c^){uS9d&OAL0_do#g*2 z*2+zcz3RBW+rGeAVjz2qsg;)}I;-8PEh>t`VeqE7{{Y5r^4Zw;#drj=?{4A9;y>Fg zRUn38CB8aFNaZ&&5VZw`O+lqAr@p0INR-;`*sr_&%yvPf$H_IloN^0m%NvOjYnU!j ze^nWy^pWDES8W|GRIqJdfSd|H3)U&o)j0~4VO8nps?XuhQyXGo`{uj2mIdxGg_~q=OiRjpo2kp?RS*-Y59va)G1 z@QEdwFg@ubNLH?B)vpn*yX;l$<*hPuUM+2;wi2Se*3wivLMTL=(MUT3soL?&GNxQ3 zJ$GX)L6+w6ESwrD%G^nB0Z)&fk^NfNY^{Dhw&@l{jlH@sL4&-PBX=YvIV)K2Ke$`H)7xGR!ndUg`+KPaa4V?iJu;Bc-w7vhhmy~@{{Ywq?ipg=`e2=a+ZTbHN#S0j zj@$XyQEiokTV}%6(*A#b7%vbcFxr^R(nyjTGe-Rpm(2c}PMC2_rLD?5Q9~Lv(vBrm zGsxubOLeLFXyk&CsKK>|Z|6SaAB%@E8mdVGcNMcFHRJt2VdMc7Bq^?y*s81{+IClN zO>+gO`^v%dxgK+Ux}>X*kDB|50l22pmL@(l;=X!GG9TfO;)pYt*Sx}H8@I$SZXqA(A4}6_8V)=R4Vk#O z$Yf=?QTCRN{b^89VR?LLsyNj6F118#0`^FtP+X6^kO6OQ+p`0`NbmzpB4Cp=a!qYv zVRby2b634#z}kg0;t&B{zjrNX19lUQz{_xFnrw`A_VLOgxxcu2M;o{#5gOImcKxGm z2{s^41+B|9jCET$*fqt-9E_n)Rj!Ph7{+|GffCah5?JD5qN6%1$lG-cM%C7A4HSQG zv$M6D>n&*4mzOLS*h<7VKLQiVnkj=AI4)ko30fChQ*tRZ(RxC}2hsrX(x=GJp+aXov5ne*ZbrjN0Zc)Aooks1YrvMVxqEwX3d2>|KvC4UiyaJD9grkB=7n#kw}EAr zL0M*a!y?GX$ch~_2<~Pw*@n4|p%M}l5$P0N`hYr9RINx|usjA6C75$%Wo#gVW~I&C zgofkSij&YEhN#*|jZC)jVIx+!lm?Z-@asYPYnJwx!QE7#L*7|c%ihBr ziy61I-2gOFpwtFFMC-Tbq@2G+qk`O3ot>^WNhOe0=0P>>(b?|ZcU1uWF(-$fzMJFu zpKST>uk2J&Rz0=uduW9{!oc~T_-ogCpz(dFxd=JSDHuu~j&v|H*o2v$>NawRjF&xV zHq)&<2=^e1f5_^U zd^Ic3dhIk1-0eC8xnCiv;91?WpYQhQ!Jm+)S`Qs;0JaWc%Uj(>qmd2JZKjMUs^NS%Xs2$A^=F}K;E8uqF}N~0KFOKk zk=~pE9^aol(>WhXt-c$;)y-!aa^c|46{v4YJmWDAb1<2~4Y)9#%k{bpM z8SVruwI}9vr3PFB+{c_Gvy(u2YXU66`DQ4$tjw3gJdJ^VXqBiQZ5*GJnukulV^pW6tX>Q|yr96+9y6`v8G#$Ny zmfzdAGJTv9Qbcth)Remll^uBMHP>ayZ)IAA+4MKJ**8bEzgXmwg~iF{DiPqg@sU=ZxSQj+)GbbBF_pN11-13v zhrK1ulgnv5Y9g9Ivn+-~LgJO7rvCs9S+>{KQjJMj6uGLk%3a+chFAhJ zQNjaRIgh7_UbP>?S+gW*EH7e~BnI@e8F0!)n zF*djC;pKWAXaSCX}5ks-)b=6w%b6N5vn;~-YG{QLV zE$Gf<2a+UIrClppdHHDcCR~{tn`;b&w=g+WJZb8Zm1N(NpAqo!(A%MGqz6{#OG%l* z+~4DJzSBr8rHza#@D3>4_So-AgRhykmrI{XU8>bRadYs&b}eL?7C4j%4^SV76$|8b z6x5X1xIDk|hJEu{t4uUAD6z2~?36oujJ4!XhnAk?(mn6+a-@HYEN;E^ju~#|SrQo+ z-Ym!W#t3dF!H&E1G?B}>Gg*1<+j3yYeZ9TN+J%+63UoiFyQ<{lb%9LTJ13c*7cB=d z$Kryq&)(&nUh zKt}DkZ2`Lw3y*P6GJP&8I`6*TdS|gQRUKJNOMw`vZ2s5(0Ibczx7?&>g%!6kDA?3} zMZZl=r!tC4V*G{!18dO7$XW#SK!ExPVbrker>)y?PV`YCJd7~k!*6AE zD!SVT7Ks>BDF@Wt->V-YbwyO1vMoDsfG;rP1u`y5(px*Xw@aH#Tj-t!n$}&GR0fqp z{QAp%c6Hz{OV`-`+b!GQjxu&vw=o~@VI!8^?VMd0XH!Px!MOT%DyPzGu054|5!I^e zUq++5KO@E5e`k??-HJ?%=`2@Gb1Pn4NyP6WMuwK;9sMGQQ`4=}hFfOp+}eH~?TNBJ z#l@s|5aVYHd6NiYig00KA&=aWjYl=+sl7Zk$@P5@j?bUxM%vG?dq&f`t}vIENNw*D zd(gmoBa|AfREUxo0(Il<`z>V>dU`%uRm==BnP0`07C5{|ZQ(34`56>NFuuk~HR3v32VHVq@iKPSu=q!vHaE4evKdHcirPCYu1Yvyco8DUgi3($f>vnCxIQ3t z-%_oghBd06gCm!d6Cd3*oKwMe?(pPoEtp4+ltg%~P?Jz795-6({_Fme_1Eyi+}bs@ z^iMpOFF7EaS>}`@!bL)kgsXfsuWh_AtrUI>Fc)&!Wxn#>;jFDo^L}znu)^(88DSd+ zDz)?Jp>59Hv8kyq0T%XH>xXrpxo-|gO(}+WAbBhUGkr#B7&jC3RaUgr<+7M0U6dFe z-MO~9z+PQuvS?ZEE{hvzVwFHr0)?X^5=!mLopre}o6O|0ncJu@a|v&1BaJPhYdBIG zLc5MifK|L|+noag+1k$Xm@KWQzqfYfAxIyaD)c_$f>0XOv>O>z-geL9o1CSlLg3w7 zV&k%jWx2V#G;tX`T-&36tm-hL6IJl8 zvBm0v;c?N4RIU_ z#1>iK?L{pzUhGy^lSr;<7R&@+?G9=uYyXh^-Sh)jlY5hq_H7@=nd4Zx5mV4Zk z21sJzhesgDgOrj;z#cnq#1GS02SvEaKHJ!_b!v<-X~^buMaz`^X&fsD(pT(;5GDq z%z8d|)~(wtPS@?bKuDChA1@7Mw#+`7p>Y@iD@7Rv{5RiEm6)+a!KcDScMIIy6=+m? z5Nt&}PPS}YYm+!TYaMV*sN#xABbMN5l1~$l+ZM{c<-DScxLWcXYe}&mW3isxNh&du zZNM8>NZgcF9{tgVF<8|>9X$0oDx3ksejuHsxOG^EN*dO`1ET7{?4%zd-Ei7T%^i$N zX->La3Om7C{z0?5S{5oc1QF9kP@l3wW6nn)<|0`T^dg|wLLdpqHP>=m!6GD)vZEf9 ztqz%1Ky?s9lGU=X;`Lzh!|v$du3n z(we?9j%@iE+jsUoAw{`_aulc|q0+iCt7q^#w(ri;okHD2p~q6owxa6MMY6s|7Jbjz zvb7U{BYm4viw>7k==0?=dcSetu= zRsK_>EenkFSN*Qj{{S(1)5Am9&4V{D+0f0)3vm=}EJvTUZ^7IUH=~cLgTNhfdofbZ z`e~kpw%xe4H)hu#B+GV5P9a%lqKc3ehT@uKu~|tKsip#Ou?xl*e#o68U33z9$Q5D!jhiNdAb!?^4I&cKviL#)Qf*Teg?nv@s#zSWK)G zg)7#&dbUccCpChUTcV>Sj;|{s5pa4asL3fOR@e9TFAolwQglmk;6jia}ii2 za^!>{P_n-fLVswkm0KRibe@Py+n9#5HrLk89zuXkS1lRwr~v-}5vEP}7Zke&v&7=@ z7e;G46-e4Qibv+aJGlDx-nH=Qp=o`GT2jUstW0J{_AV4dB8aB9V!$gX@HY5<%- zrxFD<)2`FW&uYN3UdobEuu74!aZp79fla+%9bef5-li?cem|bp#tfa59_7|LMwmh< z?jsxR8QH1hU3s5YysFwezHN@K8HmW=s^1y!K#Y{+<(9nb;lxsv{{Rhq=B_M#2HuPw zV&+Sn#ztucSVRJW*Nrx>o~yB(=-75Ie9eM~7bJ9sOGYT(g_T`u5A_iBQYtjdWE&Yh zzT3JmJ=j<6qmLJnMt5r&ZV3*qVWNwl*KB4|yR?6*gPO(wu6SBKMH<81~c=Op=TH7QyuvwpWOZgVOq*`$y zo}h8pE$w}4`8pL9#@0WMI~B2VTHJR1+`Yvd(r~*nvLtZ^JOf2T^o{v=okQ7o&x4_B ztzeJjiyT*QWxu?4gi%YCj@I7J1-R!5L2U=nB1Sa|{agGsZ=R})f?rQIzd{z-V}q!0k^h zc^_?3*AM>3t@2sDk`0jjsTJbEpTt|-+4pMlTkGh=aYYrP0-=CDrkTTf$k)xfp6cve zd)vCQn2QThbk-u;f(y7k%W1Bnb}S?>^pK}-PJ^J}monsWutAOc=%Ty7b8&lc#Tq79 z$!L$fYf?=~9(oIaOq5&p{$BkPGkp`={p)}a`#21TkY&_b5~ZaZvskDz%#9Lb05o9`&YZXZ8 zQNFN3K<&IXBGV(0MX~M%hH-f;#9bt^mkj`l9wkte^vFClpweO&x-pkI7%Zo{d{!Og zrb8(NUi7x{Htx|vrG3IY7P>GdMTfU|r1!YorKU#CS25WLrwey9PhJwq2;B`jt#;Ok z2VoCy+=sR9JAT$HoPn_eB`w{@1NOE6@o11pc^bK?;tA=a*bIH`lVgk!U6UIK#O#4j zxCGmQC49$0rUPhMbCZ@?m6^iEfGkKpl>?wr=jL=^*&&UlO>LqR7NvJ!PUM}ce1Onu zOse4X)tEC$w8QC`=7n@D~0XbZ?}~amzffM7U<%QEREBV z9+Xk9OXm4qqD~F}076O+a>M>D#bPm$+d!VW*aw4<4&c(_bwPZu-A@o2!-UNApxDWkx$$9A`(?ikit zBxQcIP)7a-Kpe2a+XEyy*`8F{*KwtGMKNq=4`;^`M&E7jGM&ed>NJkyVry~u+h1Tn z)|`AdU90odn>r~~!+`<0< z_a^C2seg`=2bK{%?soEVVULdP3GH3d)#4Rrn0kN=wFJ}4T&_Hwb#}{wysmpYg};XO z(*A6n#!}b|_mv&m#^9bNH)kJK-A0 z0C}2eFTqMC`DVV}cw$?arM875yoNP+n2WIz*Q9KBLtg=?_Fs=98_T;4Es`E7CA_1Y zD;sikBWC2Q(!b%OS1d;f8N0bTh+&D=OKGI{K&L(%bdkF8I;;|g`YAS1*v_&HYe>_7 zsT|5)Bg`5ybRcNY0L7=s-q7KqLXeptxPYUi>QxGWDAnUr*P*VX4VFnHa%+g5YRfVE zYo-q&3=2B1h%}*Zj+!7x1+v`;-bi8fMHner6N}bC=`2Tx(v$>;x50nCn&GGyg+m?% z#^tDd^c!!1RZ?Rp?Zo#>8c3q#@rnkPVv!;08JT+ix&;sw=X>NZXYHQJr4n3wcd@IG zm0zT&>00l;gV!Q^Qs8YSW;?kOc`eVsDgd!SPQQC|Q9U&y_Km1O>JF7SL*$=>vEowm z+WUD-ky4LQ#gvMg15Yhwa3v=r#o5BM%W=#}D5FATD;cKCBJuGaBgaDgjD|u?L{<}H z=XRFjSrO7`m@|}Bp-`{5q43hfOn(AfYn!Vn0D=c{-k`_T%7<}IqitFUvb+4%?Y2TY zTZM{5k~NsMyYh_{&e4)UKIfYFXwtu?cQHSZ`;N)swh{Z{<{4OC#R*ur3Q>5Ls3dsT zR;IRdZM|9Mqw+3#(Vi<=OUA~57zS^FG}~{6y0K7mR%eDWpYjKC#d2bT>fY^WoMeEJ z?z62=wNYJ$#=4#AomwcH$ukAqnICo1c;uBWuUCYIP1w=708dW3_|~zzKDW9d90J_s znoHYnzK%$_7#Z3gWG>^H?kIQDvM5`MxLEEsX7EOOMKByL4|SHo7dZnVwzj#R3apnC^O0mVtpb(wA{Gh?{qhlJQHt;`Z}{{X19o?dYCuhfOXpdKLVl=^m8$S9~58Sskhcub@bcPgj~q#c<6p(33|y=_12XNw+Q&-M1@)tU?^_x#jfb7`N3xeDnhBJP_?B`%T;%(6AP|b;@`LP zYJ5BOm9-oViI=(Teist7H=g4}OR$oA1{^0jG#nECbP(k_ETy4_!nLF#96hPYdz3?|=N!}NCcK24N z+Q`jx|jr(5O@50gG;JRdj3E@>NQr_xilZ_7BQI5Fp zcXj=l*IFv{k81p3+FgT-iX5+VSS^NK<#hhnnK98Mfy6a{&+23>Idf$lcH2^_hjMjG@j_q7qPjzpP#xg(sT+UffzQllKrxuPd2bP-91Yv(3_cv_z`&`SO z?VPQ}zuPp}?0!bl3#(x7zx3vHQaNl_W44y9c^R+4{wwniHxG9VeY1kS2$B0uVUoE> ztrli(WtYb^w|3>zAE+uo6BEa+qu8IUwSlK24-m1wGu|e?g1K@?}H<8b7vj9 zWiO?PEhdx!XpKp!C#tI+^iK--Xr(5|L37;L$*-o4#bmRxK+SC|rG+Y-EjHr)*^Z01{u? z<-6X_8vy_p1082HQqLnk!YLI=Dy}LSyat^nyBQ?CfBQ&i?>W&}8NGL1F}9`X4gAe_d`x7Rf!ew4wd4bar!R24Sz<5L3g%>G3Be_7UYWw~^ap;Fk96kw_v^ z>`%sYi;m_wUv86LH2LpD|xNszV95z8F?#c4Yu0JPZu`+u;^35pt zjmMsWfJ`{U3$49ru@(K5uM5JD>fIwY9)2zR7eZ z?k?``TeN6xsSIo=82D-Htt2J4x8U=PjfZi~{acydKut#wbRwr8k7r`6n8^Wuc$$#Jk@{4fE95oSlMB1;TO71RqsbGEn|-UK zSBC{{savxrCu(0~E*dy;W*EtyDY2%;IgNoWnLiNc-~Q{{ZsUs>HP) zmS-pJoDe0)DRU&`JeqdeJA*Q^`JZ+&JBck=6qpgyM=+CAx8~;W0NC`UM*yo}Z?4^DkzQ%QmQX<-)NRJzV@~d?(L7rnS>dFzFD0$h#LlKWk5QrJ zu?OIOI-Q)4R4~X}#>sHj{{V07N+MtBa`ySgv?LM%598%sC0q@2JvEKZt4A^eD~gcv z01E@qnrwevRM_;<<`XY`|OI zVo0bf#-NI7Hnj9#5oSjdHPy_qMHdNW4vfJ#vxnuwTh6e(L*Cu>+A`a)aOp zN@_+L!C{6z)UMJ;eyZ`@+z_o2Z&Z>b6t3G4+LKn2>LABm_U+}><;}cT3ieYDXwn`t zBdb(MyO2IZS52gIw`Rg@BkoHzxwBb6r*j_(n}~04A>^iwzW!^V)Q+|^pdw4WtjRCg zqg%?LEJb9Z0z66`^p2=Gx8RI-1}sVlCXycHwV9@CvZ2Q!rA$0qVxAzK>#c)9c1;Rx zGAWC*y12RtJk$RGsU^UqyqCo(xF)?kbzCHtUIh6b@0!AA#akM1KK2@w2_GoLyjkQ^3~QY5pAc*2yjEY1>#sv49cr< zGEE^WKtI&r$9`?T#BHPO!+0-9fOAwgEu86jvJVLa7ZsTVrv^3~-lQf4~cKxBcu!d~atd{q7{`8j- zIi<7Fh=x#9Qd){_QMlhmLmU9LtnjtMN`liN=#8Zb{{T@7sj9LNc`2t-JT*$}vgwm_ ztL+}=Cv<;(?Mu53=j^K)a~-8`9$HMwF`Z;jKr8@}RI~b7)jIiU{nnn%>aXGFR^OI0 z108smcsL~B;z*=P9UWF$l};eni2b`7YqFnZk~sE!m9eg}k{;{3wa(`|UgsU#5cd7d zmiIPy0@~hNx-v;M)P;GM*iHxt_(^@hXRW_y0-;9+i^p~l`M z{G^kDdy<=bLU|CK9$E#`t*^@&>tBQJg2 z8tj%12eg*-Utirli+g!ne2zu^*ks%+%kGtNA3fHdJw}r$ERhUF{{UxTZms6A$X{Js z+Iu(oD_I10)^p#h0O{>F5$Xi6k?X{YZ>7j=M!7!X!gnv)<8f9Ouv=oD>gMA!b8_Ki zS@%gztbT|ZGHLxTqfI7=G`PRW9mRb3-q!7hm$~k;Jgo8`-J**2(sqqFpthKWWmQqj z)InNTO502gg2{)sxwki++}T!nE+mHX!otnruwE+4w+lF|EyaMSR6BG!H|TRyj_q5# z<{sAxfB7QSaaeSvjfKFv^vJ+4eh#YKMQ9qd2d0{}a4Ua^I^*z__@3O`=dl-85?cvj zxR!ZTT*}SXN~xs=+8(QZfm`@JGq$kZvO8feyK}aqzV6sjpsmV_s13{vQbLAiRpZEV zs*aj>Uwqa|IJ26M{EuJeEmBHBKVgA>X zaPj@=`-{7OY>FyOD10?Hajgu;cmDu!;xd^Je;;5l*4Fk>(gbI@S*IH_@_olI9S+4X zcb(xd$A52%TWMg0)!~wQv&2r!sZXU(?(^1wz^^f!4g?mmTedzj8d+#P#&!dlKzae; zT`~onh|RQD0p&*{6s`2!kY$h^{X}j04KX&&1X%30M#uY;p00 zhe4V{zuYq8;Qrr(#6xu)u`ji7s`A_z+q(Km!{1_zfbvW5gLu zjn(9#E#+wJ(oQV$PUT95`a>w`@EUS=zD?|%OpjM-8^nn(|lXGi#Yhh*V+j6P6C1v2r z>1XCT*Y>WTlMAP~?g_Dy+&eP%-L%3vmUU3gB!HA4nlY&r+ieUX>pXFj>UE812?N7T1l^z>?P0gQmOCqkyt79> z)zct}o*L}zl{6>$b)X96PjIqK>x#9S?%;Z*byEC1`A|>|Xcr>;Xz$&Y;94GWZocZV zC96VIPz_;|{WUp@3%M{)dyTi3Az^DRF0HMjnpqKehBLRMe@q&!X|}TL*5LB#Z0_>e z1+~Xo%RTJJ(P)T$&H7Y$Yp%MRaFNMt!8KQCYe5eVQ<43)j@cV18Ql z^nb3O`yOY}_s11CIBv(f!A5QI*;s6&m~mkU3hY13$8)c1UafRoBgEUYW#25-+5SJy zTp{6^dVeam->&+r-^@UZ=d?_VZa)^>iJ06>@=4(@Dh*P*m*Jnz*D`${;_H|kJnSPu z)>rjyt?Wd<$Fp)DZ;ZoY2n4;v!}(UdK3YexrU?YRw|6lX$63qIpbWe~&{mho?fwJW zjJLcazlI|b*rS?}t!w@WlW&u^nE0fWMlS`Fdz#bIKaRC*QxP5hV*`kPYD}NqI&}&L zo>@0kD7^1U2d@t|1n9-olcs7(WYOsDJo0SNwvoucl&Cu?Cc3($oUOy`lwXq}wNU|;na4(MyJ-5u>|mGu`<%H}TRZTO zHvCuX2ldmfC`Y=+XD!`#lg1;sxRO}_rz)TMXyTB{&6#6%?jW4 zwe7Iu4>zf<^*iX2m>K^7e9Qj;<$QW;L9#za*^F(B5y=Iik>qYstEpyM?04!uTJhVK zdeE0axa`%Xvg9F(G`F5b_U1Qgp+fcaJ8mD#Q)s1ZpsvlMc!m34DqFiWXM%gtnhL0` zYHRY-PXLS%6oyA{deN1W+I8rrqJ@}rHP%efb_+ULs6{}XDk1?%a>lt6)V$5)RQ)>1@=}J`3uFk$jdL? zT0-z!Ufd0(ia((lhU(*>a5UDVOMz9gu;$j%)3>3>SlwDixhuwx+P^mvOC^+YFE4Q( zGsS}sOo6MXy)%X?aVZOEw#yyM&R_uhf_Ugeh&norj>L7Qth$0cu2^&z_BT<^;(xfk zqRRIVQSEVRotIvuibDQ9PHfvsS*BC;5PHTO@E+g^9y z^W{l9{%!c$4-U-O$!mW+G5W4UDze5w1h-w(ky`8K;n#!Rvz|#?TTgWvwV61|po*GQ zQ>bs2m{x+UfwPIj64DYtqL86Knzg2oWN7f0>29?R?jRh_#O^=kso1Rz#8&wuawnSE zL~#Uri&l175(ZvILZfjV57k{ENaWDrGH}7{jE&u`{gn3y?Yn+yq~#h%8wlntAFKuC z=uq5z^)aRl`O86jbkSqPi*0Qq82S36iHqz2J!;$OhfOiwBeVOHFL8ZkjKfEh$=Zob z)=eaE+{VQWjWP8B!4y}o8q+|`+O}8m_7>x}yT;2GCOxs$Pkv5Ug7#vDIU%_vfub6K z;CS`XOjKranEXxs-G(PJQ?y}dW}66{YRvwU!>v-S1)2&8TvAz7tVWy=3aE4G^3r6-gFX2cEBl<*BP)WM+qdqlppFc1gvl|ywvf;?Ys4qC zS9v|Z14E*imOve^+n8&6oOW^Uxc3GYd9FK;6>(@L#}#HGHMgMRqlxAoPpF->o8+R` zz~i_(W4^Bj7rHO5?gwGpe_Af!yHvS2>p7+Xd%-Bo?8k_XhmAqf%K~X|dGC8$%-#P0 zcQ&;v(pWN`V|u=m}*qd4${v4+NIZeX~U zgx+b}SwCI^2tPuvm@6aNIB#Nq$2+y!`npMx$Zl zO$TTf8D`SU@j{$?*~a4c@w_5DWxTe3^!X~g2@LKcQ_cA>jhGO4Xk#ix%a|YHdy}`j zGVb3E-1idRwlx+UejY@SLktc*ux-$<87R9FN%HHXSNb!g^i|z`^V+8F-uljL{hgjB z<>5ICD`k?|p^}4yZz_T~fldGtH`Ci^;i{~RW|UHTWH{D zKWwWcfD~im59y>^7}j1{UQ6=deRhU5@YijPmP?e98@WBznpo#y#mj^s)Q+AST$!4a z#Iha9h*KOb_bDo&H>})GH!Mggu;3}I+=rn-?pVuv%M5}6vIiiuDgOYDv5Kv4?{gUl z>@e0b++SS12frf3zMbl1aur21QW2T%;_gg*xjTzwhEgFSJDDyIrDhv4g-)sn+eFg_ zaW3&tl%D?4$~Yn+LaIx2Z!=9`ODu~20JY$`jGITik!kJ@MPq+4tSPL<;p}^g?kjv; zP(dVN?pE6&D1s8J`&LgD9u(7op|^Em?j@aUb2(cpKHIW}-J{3i3##P#ZdsU9)Q4kU zy1;#w_Vxb&dKsXXu`NzG+jGX^mK9gXlOmRoDv?@o>s?{V%FBC~w7SFgrNOwmSdvJx z?8eO8#M~s4+?JGzM+A}3bky1pK=!v+5cdd&yKZ8!$J$RL%ln&mV`YUwO zq%&h|A98jzr*36CUmcBp=A$CDI;0Xj{c-;QVRMq5 ztqvZ>%}BhDAiwpoi8?G%$wn?Kx0ZlVo<8ofu%oSzdsI@KZV6|1evLunqly`_-s0}= z;rxf4wY*FuP40WbD$wUxJVO|RCHmkpj9W(*H0kb(i;P0sIdw$~`_D|dI_EAkF z&+akaN+>m8C~h{B_qxx;ZaaXQb~eeXkfNwSG&pGmeM#(S;#N zz6~9ZdE&m^NV{mA`T*45OKoaOEsby#y~lRbd+Bi`kdw6!Fg&)_^@{gE-G3mKj9T17 zEU}+RXB6qBz$<$v2YF)SLgpCaar>Hp=z5B+tH{27@K;uz!HGUdD^sGik@lz1rY!DH zBQGfJ8K$q))dO#yse}ug8QfZCGIsQJg#|rGO$|PJ1Al87;n_)XAxNTyq^(_*s%zy# zrglh2M#fNK*AYlE7BPq${{RtEyL?WQDK;^|2koqV!86zec?qf`F2cGwz+E^w7i#6% zo6?r<1xFA~eiYMt1;7okH}f+k!E(yfVitq^b+ZHl-S$*YOp;tQMD5Aw7P=BPC)Ry~ zJ;HLazYi>aDryBjM@yO=YqRLkVY^>9WaQk*6~uiEa_|2D9ZA|tQnvDLF&Hd-3}>Dg z;issyM{RSo&V-O@AEuYt$-PEy`>>>$jI!FrN_yB53DwrvBX6ET2ji@JTePMaoBXWX==)e! zo&e$O>!ROp1}#}ZqRKa4*Hrg#O=*@BKjRDQgfd*hs>h-t&{OBB`;h*I2N&W?h}+$S zhC}s6!nD@+A)baCA7)=zNW3f+*wqxl+~ShT{;m9n&VlO8HGq1lCtV~9qWKhr1nvyUt@LcMROX9mhl(sv8%&NM+OJCw+1NWakn;M)afd@9k5#q+gLeSTiHr(kc38{ ztB3ukuONIk)3gQ9CR058(_RmV~$S=5I0IX$9LucJivU zYNOT_s-%(*)$-A41vh}U9BxzY&)nS*vP!8skLk$>Q|b#t(CD=&73|k{FL7L4vWr+GkM1~-otu!@c~I(=Xp@jDj^DhP8eFx!}16$7*WGMB za+Xqgt2HXC#Eq%p=c^|CvTnS{xL|FvF^I2XF-)#FOB&P)?82jP3GnHx>?~w5J*{FA zH1>nIEM=X2CCTw>57S#Auo%aPhS^&4*?TKhWml5koYWDpNY3Q=?WD?h8mb(#$Uh?X zj7xa=EJd`bWaXav5fMWi{xY%fM<2lJ!214no=En-f1-b>fOL)lQk)lJtPObqjK@A`6+hyDe?I225_SeRr z9R`Y5f%F~Ccs}ME%1kG>7S1PT;HsbwYs8AMroio_D<;3Ot|zz3+r^K_L59uC9H!b^ zn9Qi$qo79FztkH6(^yE7sjM$0_b!^umx)Z5e`=(d<&e^?8vP%p+6=8!A6aMe_?WJT zZp$V<_Wgd^_2b?-EkFl>k*h*jdWMvwoX1?=+g?L=0B6YCu%4_v_?49M=fHxcYv-XM z>}}jR+^%0IXPNGI7qiI{tPX?O_C#!IjEAKOsHWNy1dVTO&5THHayR#@i@BCXTWrs= zX1fxN-Y9~yfU*xuDF@7HU|`FB`OIM>$XZ`p#Wo=?B!br4+EkWjnQJ16Lh_*$Ey(Sr zgaW?Z?#s9#u*~HzR$OI`)5nUpmLV;LqfNcc5dut`uZr!U(Tv_(ypQ)R+S^@%xs*$6 zl<6#z8<=B0g+TP+inJ7^cF=<-3@0z%-Phch%RF9ZKR5PBVljQVLa?&OPCn#uQ`}=f zIk3~E!J1Ezhi<~X*K3iRIh(~;!H$KQZZhceI?u^@rOfx4ac)>i!sWUVukL6>ai8YuD7!6QkGu~>wu z3d$%|T0q6Pj~Cxh!xi#q@;&d}ISVXhz4lS8p+qs-Pj1E@C>zxBtV9yRrljshmnOIg zo{sX~-t{ED$Xwjm!tAMc0VTq6`j8YtrwtJiVmtip_4!pe&@cdKy>(GY^wR3wVWa$Q?>QRnBS8bp_O_RzUhwR@RK z2^+hLb3F+p_4u7*N;CHvKkf$h?ciW6!u!B5Bd-uC(YMevp&kj5 zR-ha0T})=ji}>%j^QrgQi+9Gov%R!-DQxnUC@N|Js3iE(l+i))$Qt0Ycd^`#+U==s zEHS7W{{SyMMI(+n@#fs96-nvirVs|sdD`({F#Gpb%44;)j)$AqZa!7h7}n#vZ1)5i zKknBLjL6ukwXKPa$g;QoQ7c|A#CmEp3;FSs8wDQA@>s1TrmcY;$nSXopN3qX zUF418x%U{nb={%?PZP_;(^(5;$Q94zB*kK2#dhCs+hAA|B$*^)G7`v7)Y8|Ijj6?U z(}EF|%lCF;H6*tg`}s0+%I0Zg-KKY^73U$`g&HFaE-_0Tv*o*b(eE*d9lJ?+d=*(F zoP^^*N}4&KIz+(5-N|=(gv~xVPrs4J5VFpMFl)*JK=2Bc+M1*ZYbYwPgFW8aTX-`W zHnKPV;>{#T9#YDr)saf|BXUl|eKJH?ha-;1TG&H#jN0+0YdLMFZ+2E_t6AYHC}OCl z=Ah_-qtgEX4C4kb4VCUQ7&%+%e#*{Lo5c)U%Ie+)nt;#?*It*yMD}udpLL!N3Ne^`R(1qzO}sZSyEP+O2QU=x$$F25zRBJp zA0p_j{{SP2F!mVa_T#md%5n8vJt z;uIfDtH0|_Jy|@s;PcGV-%m5VHa(98KpyG6g-w4Sl4{Gpwou6}MF09r&vX3}g31S9} zMww9{X4!Rx?flk{Jk2_AC1i*KHuxPckvS1b-BZ|P5v{G{p3P770+O=z>rWG-YRIb2 zPh;(z{u8+@6)c)TI)TY$99>U{-&~ffOz)-Dk!C{T_Zc9O5Xm1xtkoJAC&{wKpEc|k z@dmh47(Z7Q(?ka}`vv~PWph>%yF}erkQ5qZ;6vywvKSdj#mVnN-C>ogH}X0TsfNGT zk)hA!y`bM@rN`8@uBGckJ&l~T&E%ytdl3*OoU5UNGP@j%h(--Nrv)2|RD-3#l+6`? zxhy}KdeiCF!J9NKmdA~Zu){LEj%rH+3i3OUM^oipOQL|UiLh8&8;iMTG!E>f1`53Z zru%3^lO!8s7C!N<(!m;Bh*Gvs2*UsN*;$vd;S%re?#HGTU_K^cN#O8Aop?e6Ih{^LAN-;A*<1ry5+su(Ml;HbuVx( zI^PVF+sBEtb8&PdCJTNNby(v+QjWV;niST%7WQ+&m6+OC&2(?)gxbdO$sMte?xJT0 zXCQ6Hht*AWwaPmSSxJH)rYIS~Wks*0YqpA5_zJc|R)Zg6 zErGLJtL22Uh4lqi=%v^H01$YM59OIuZni&l3|97@?YbhLckZbl7e1n;cdz_usaEpF z#0uKhdwFC6_9h5OSs^s!)!TtR2ZpSii^}Nb#J1cbT!a!_%Oso06Qf9~E4Us*#=1t$ z6WF&il(DxFBF81CwmC-ft2KArt0u#51EUTM+UPl;#qfNUl&0ofj6>|AnYeo{2dKd*X5_apy`hjUhfY-hQ0eNJuE^3w zI^``;*`m!Pa(k!RQW&5cr^>!M7Ht_r1e+MLJAK8pturxb(ZCW>x1&gUjXiE9smRP* z$|AN7u~rrK)PqJTU6s7)rWz7HXs3?k!wr+NJu5PbBNO5JYbH)1^br&i+dP~QTZU4M zU!Vtab(<-Ow)WC{$rs$X`?Wk><+l2xDOt%WWe&5ycEJ4v%S9D|5iu1G|Z z+^rlaKT~<14RhaOw-zr-y2Kt8-`|e!Ffv7NV`xr3LS}5FppRpSr?V>^xUcO$yIvpB zsV6C(zMHq%<`UU^#S0-u`joIBNkc$To}=TgL!}2}ah4NgBe%Q1Yg-rp09tmBn;<5f zxQcS8j+RD%tc8QwU&&(x-`w%4#9H6RrZt&V?8+N(50TRFZc(DOzP9^GA$Ds_nP|o} zkwZl4eJ-*v^(!CSr7D^W#Tdoe#oT3611hYmae7RSi#0hcZ|xFEZk{7b*v7W{`wx@A zVS8@{gEoD_&OYu-X`W$l=g=S9U}*BzpaY;XA!a4*k#d>jme?5Pu{h=p9nz4%vdJ9- zN4V;BGNf^MX|i{*&6;V~9`H$ZG=j3C!w@a)mpvPxsn!822ru(;N9;#D7M7KjB6cBS zwyj;+h}@Ox!$by`xO=Y?-VkH2?QwSaylt|ZD{ELMl1QAdqwbl2QXRfJ%?gtT%+HZd z)`mar*t|`>ox{E=^vO$`)b{@XsL?_`sN9dQkJYDxHep~l*0IQ$2qILFqs`%p){AgB(? zNddex7*RZ(?qer+17z>6@={yGmeH9Uy2AurBS3ZvzYeEMiMSiZ1W}k#CXzub7D-r8 z{{ZnQHBs~Hp#}xL+F7n`ZXujT!hCc8vCyStN>S1hL5i+qjxn zw??Z<+mffswA6|rpK|_HON_n6_h)9V;>ArNdt2M-d0r$T2ROZcksW$$PsdJ>jK*g> z$Gh@(fj_v)B*@1b##UAKt^*n(7^9-^{G@1^hvJ~^%aM7I&UYKx_adXi1|r_np_1W1 z3S^iu3IlD&MX@9Y4|RpNhIu>7Cq3j1DO=1vwZmCn$tWX?hENFLKa^-A0pH|14;h`j zx$UcY;={=ox@E{rw^G8?-BqXw-=RC`!MH|WG29n7bEWu%TNR9O7o&#-BX4RxtXr=m ztpiA|&lj2Q8^LQ~aBi+F{U_cbG) zd`vAz2|##)DYp8_HWrd7w9Z-gZf@HZYmBn7U;@E-^7~MQ-4rch4TY+Dr3S=&mh%kSml*3KJ{qaRZr zBTX=Y7_0jWJJEfaNpH6b_HoEy6GVQsX%}^<+iepX3(VX->zk6@mLApZRd$xz&e}hA z+aDUo$I=#z@=3%gHQbu%Ivq3A@fmCN{AY*lbedJe!OrR&cnS%cMn1B@SAQ)cWm4d- zH@vY$wWu#L0>L*Zy-J^sv638PZqj%b8)=MFy9!Ve{71{Lmaylk;x9xPYstH=;^^1@ zp3c(TB(tm}Rb_*ku;pH=M#HAE`~!Rntn8x2x z?p5@-px<21vC-L^eWLq0G29C@F9e-lA_@K#(8-x32{ah{i=>v){i31zO+^ou`h28F zQfaM{BW@k0j_JVMgT(Fg)Y~gsp)OgZXr4<*g!8WIs=y7kT8U(Rj-JlxBmUuN(O!@T z1|X@>W;J0?f~j2Dn2?zaNz#{0q*-+Y>@O@6_9R23h(-9md1hVe}!WO-Ept6XK0Fx z(fH74`w_i&43o6Gk0oe}eUSS`UC$6SuE;A@i`TMZw6|GjxD)XeGAjCs(9T9$+B=W! znLYDyWp^x5H`Wz+ll*kHvSF^b*kdkE)I48u9u2`a8=C%_90kaW`wg*?uC6l^H&S4R zss^11(ckYD_|*{EK_rg7T3HP=zPS!?g_qsKnvP$2WR5s|J$2mtHC3pa+`*&#mzTFz zs7Yj9ih<#y>N4Cgv;3KTFbgat6}R%Hk?De!-6p2Txv=xZuQbHU-?UVk>Q0bVSul_8 zn6KrNt$v*>4Z*ClytA0{Debb5uN6SqdLJtM^}}PaM3cQw?)S-QHJE8;Q1FXUMRWtG zE70w}k=_wpTL-tpLuezC8-ZyMc9-A(08N1hdNTh2%S_s6T2>z;Nkx=$-AQYcJQyoU z4*Y|GQb8crr^m-qP*w*qO>6dI8+(abQo>uKDhGhM9+V*|#GOH|O1HqbDzfF-uP-g) zc<8aKyrM24fAXVK(0J{tR6$N>+sU<*7`XkLz7nokqD6^eikw88z#ysd`0HfQAu^cz zZy9Wnt*zK;ltz(cKxN{`{X*(V*#7`9>!PoJAaz|J(|v8*v47Lf*O?n<97M4b0s|3hYp~vR>hm zYeZW~Tl#m9vEesg!TyvelmKzqG0>&B>@K|YBD}N9$CR59d(Yj1 zc^z#LmF<#ZyZV&Vru7=7VWL(|F&vQH*s_0bx|&`2RtUB*wC}7KkbiKnfQF%!nLu#I!*Ra)7_%!c z!%bn_m>J}_lNkhXOK%UoSCL``L8AbzPEEaNH9J+6rIQg|W$!ZgmML#=i;pt!XyPcX zHyz57=Wo|fTEZoJOEM=Jn-{Go_hUWE&Qt8gSwJmCQd7#ionBN3t7|^Zbaq|siN2Gy zuk&E{Oj5)b8xkb(eYESzTumDhUBxN->MLz5r53ikSBWMsZx;3KZZat(@iQ&T%A|q; zry6Wjj~z5mM5NK+VV+reTR^WY^^C?GK(bI*g?8MIgU3+W!Y{AB4^XnZTQ1sMl142p z?c)(eZyJtEB&L)hs!dy|UmbY1n^^T!M4ofp7FdqpwYcr9?XxwONlZ6|s#zB^KBd=?d^0$5V27j>gA{>c192`wdeqte5-V^?qkx$aYqYZfbX$PZQs|l9Q zV5@TW?68yQxG3JyC%`!zYw)hQWavwP>jMf}$!R1DUvN0SG9Pj{&di}YP}ZkJF(EMH zRpwiO+-=F?vT!siHY5+0mPSbo7q{cOy%rYtKH9qpEuAC&yzAtOcIERr10-o6!)38n z*GRsM)v%69Bd-~uLexN|YgrubMSVI0!5ce_hj3rbWCHXzQ|^8W5o8oocCjaOm&0+w1h9IkG8uOtx2HJRg*Sd+=^#> zc2->9-z|!*ovt?HYp5fXa+w04paH=ie+@S` zR<4;K7GGqnrMsTv4=YRrYb$--2E8_SUK zr$M4-%A?L^ZUZoo2*hNgiX*oH)}Q-VOepKNJCffAk+8|;@dGhn3w`Chv$R53+<3D3 zmX+|(XfkKA_m=IEyK4!(n@646*#R!A3ldd%Hs^>m+;5?XWR4Re_)Cjh_+(^RBxudu z#i_Wrbm-ut(PRpGs5-#p_55Z=9`MB3WP6TyXSRy({ke;@`-g%9C|`fyRgr(9kK(E~ zZ4qr_&+~o1+%aUm{K7OMX=GR+Srvfx#XVt23q&54rA~!|S0h|z5;-Ntwd}VxIJ|_O z&9-6#62!47;=~3ds|Kec;*{S?Rs-@~mn-ML+tyhttj;{YD6&l{NS|suhUvk22dB$h zATC0&zm0FCyuWN+ly?>uYTo?!l9-%Ii^zLn!FfFD7Kd9S8Z2IF)_fRl;z(n}VpKYN zmhWsPc@H1;c>e%aj5>L0kW58sfwj-w$##~>+n9;mwtqW$3r}ZjWK9vGK|*SGrF5#J zH^GpK zhwWQ?TQdtS+_FXsExd$MU&)NLiaH>uipVEdF^f7LS3e6DngxFohX_p(#hUSePi0U zc{@v3Z2NNh>+J8bi70uN>H*1GbYNL_=yn9?f=r|%J=|Ab)t#$e$`Co3B9i0Ug*v-Y zNeY9h=rx}J8Lnd28QU2=6{b_&&RyI_5^HFQfvm^+iyWJ9a(qbKXrzXgBkkPgd$lum z`TPz^>~aA3Jr()V0=yr*kN-1EhGA9Q815=AIPNUTk) zV|5?^VR*^eM#Xd#jNuEhmfftkH*X6*PJ0_sJ|H48ME8)<+%nMe09KXTZ5R?zuP+_9 zw{5R#pZ3X(RV(R>;i ztifV4z2FlC+W2+0$Ea4jyp_1Alm7rRNgL@0`9`m+=e_(9zUouS?GX0a?WDwD=gCKX z6mTq4U&Mt+xmuA!y%*0@`ZW6O1+?zXN+EIEtny4yl9Cc)b5Y8kL26BWH3p#UuPRNy zW_Hs@I%HhIG!PY@*`};4>;~!z(_lKLkj(WwepbchY&_H1K^m4YO+|^Jn2u`3X*liw z0I}8d>z63z+iwSg_tc%!+nv_-Ik`Ay5DUv(k}$Z2^&5D&FBOm5r%^*gud(?ZZ>~I} zt{uGSSnx2n9CKCJLUIXf75iP`cGL!yZAHd`DYJ!B{Lw2!K_tUlk+;*)Gp7s z9^=0(_S)O4&H~CdV56_cNcADBwf+nj@?U4l6`+_#So+k85;Q$*b+W87Kgd0;BN*)% znK~;n`f7S_tf&Wn;1>6~?qA$uQ6x>{Wc3<(?WgsjZLrNvpYB|ghI~Fr3og<`>QvX| zrpBm?y@s|u$=#UbSn}A2@({M|BxF{f9Zu9<3N5X8A7OKt%b5klwo=(|MpCsKe04i0 zFIy&St?uyGsC}jm%h69->Mgk}l3`Z3`J^qz%@teealh-V_9fU>sVcbb{JNHvCm{#^ z7!}s`R9CLTDeg0o28!O@$zMq&Xiv*kR;f0wfNig{F-*yE9MPIoyQNo6H5EG$X)|nE z?%w64j8quHao<{M8MlL$`M%>>RugaPrAIx9AF0-93+%XE&Hn&&%?WSq>BM-Rhxlny zL2l3iE^E4dpK2>862Gtfbn2)_Yez!$%y)+)6FhM*`4j$nbyP`Or|1x?Oxf(#?#y|vthCKHWmF&inBA;ksByGTuQJt!aEVkSwNv51FY=D zNg<8pqu9sqIC6dTUN;IXImJH^moFs0a_Gl$F4U*6}sS>65tRUuWa z<=nl&5@N8T08v)vD5dwJ>Gh6Wg%6j8tvnGtY>$K!w!-8xa^1}vE&QnIBF7mGa$^JiMsAHm=i#H6xFMEGOs&m~ zStESLOT`wKmXe=RdwUQCII5A*>U!E<2eW2*qM0q8!J$qt%3dj80ptt?0B72ujdVir zb2$WCD>H9*E!c7&B4< zJ0>#=YFw?LdEIzP6Q?#s2Vfhee5s?7V=9%N)3cu*m)7>r3>R}7IUW}YI=SAG0k{Xi z=`FGiT0E09xsKMxwT>#r%iKr9L@oaA+z6IVN0^9_>nx;h{WZy{u9?}gy%NUu6~12} z_qW$^32uW+E!@RjozPH+BA%)b9ai5%rwEO7r^w#Jw`?MbvJptD9h|D-b~Ii9{{W3? z;l81JyKp@ys^p$h-Mf>yEV6kE*s*wpQ5}lPT8>kyfH$Rg`uw=demNz3dwqbc1s5oc_!G51#=^ddqN6Dq4+TNM;TC@aOcJvFVa zQI(o}AD#Q++qt_DAG7YVO>u;A4Dm?On4+Fak^&E=stpM`@~^KK$>`SdWvuTJ-`Hhu zxNb4qx#FRDcs)f3`0JgcqO8+dVRKjaRhg}#$E1SVOSF{@s!)Y5=_imC^)S|fjf6eB zp5oY?a>X7)9V=W6pDIY!fqhcM%m6Tf)|=}G<8EHjsw&hE=c zhL_lDn|WbFky$SOq=r|7o<8M%uuU{yB1xuy!d=eRH+iUFu$vys8(T$baMv+9GKMln zSXHnAyl2c zlNbw8X_ATB>7*B!>u~G>LAaViIpu<4-k=x8xIAcj0*03q-BUYq!IzZUA z9Nq@g68KDwmBsE_`ry~&BhgDe< zc@fx4lFE0j)*|B#aoiznt(5x~w`t0<{?w`22^HLF*qL$}hRkCwjQFnS?)FQYi!?FX z+zB5XZXz2+RiLN?V0I@!X){@l)WpG-xA!e_9mze)s}ioWG^tgv?XL^ zKGH!)Qdjno)M?dZSpu||8Hl~GxU&BM>Z&A;N!nE6v{nU_CyLNleP<>ZcLWQV?i{{H zwqiEenPzLdS)~gP7=f=t^zYF|f-ssyyt#t!EU!HGHqNu%P3j?4&mVD<;&$bxNCMb$ zx0cf**tkL~MT}CVy4T`sO)^dN2GZ=*VzGC9$$*Oq95xuy1nv?(BP+JrhP6 z%2hxL+{SiSVm4MAYsLQnZJ}9ZQ`!FjS-%@P*xUAQ7CW4ZM&>J9_`^K2+?M{3BybG(=~9s0o7+VPYmxD?r4O@97KTM%i7DXnFw~nb=WYIfpNgg5G z*c+^_E(~^ZVS5HK-X%ZjIGRsXtf;${C-)tFU&p4DT%R%ZZM%FB?mp+p<}h}>x7@d{ zl(DdA&5g{Et6fI0tr8J10Pq9$>%Uf-(%B=2cKcqqvkg6!jHO;1Tef}2Be4B`8tzt5 za5W-Z-qoIBWkiw$eub-3`stm~s+tj9c2(Fc-s3nPB%XuV4>S%Tv7>C%} zHF%tMO2JlJndFvJ)QWCCIuInYM{PbXobKXvnDi(pf5TICWm8DB_br5M*2yEeMI=VT zjX~k9g9_OK$$u!@W6;1Xobf)cL#~IaM)tM}{{WWpa>^g<g zxTPwc2-3fo@r8X4@N10x@qm~ScNr3sv~n)r$4K-vI{Iroqj48;$C0vIymhQH!yx7T zGAm6%>u9>Vw?bT|Xeun%7+Ed~SJe^U_-d$?rUmhSMZ;Ob8cREvdWVgHBjkLv*fBlH zc2ghZOhw#;rJJ(8%SGv5k<(znwx$#^(Lw!1h=r5Y#f5)OY+15Ms{6R{&_-otg{jsb z-Cvf9qXXGh*^h6?ScST1n;9ub{!zF-V^wtEkG8YXrn2uWUD`)&Vv5F~ z+pTSHZ*YAB=?UskJ~Y=tIW=9ih`O1Yb-NKbUwJNP2_3Xo zO5aKap=EX2n&rKnR|jUgr`W({rR95bE>d`|XP7Mb*dqqhigoBo*zdvv$xNPD2WRxR52bbS36^Z_I7J~j&%0~%m>`Wq*6jd&{Ut;4zjq;rJ!RB3~muEtznU4 zF64hq9mCY@55rBEF$8IG))x^T-W4J zVS6-;+^!4KR^)oqfvXaFFNUp6u%MfxXHE0H&BLT5MURDUCX`0bJ+MF~l%a7^RnWH7 z%(b-7vU#h|?Kb&q?0`vNnd7#ymM2+V2dK1h)9I&L?WLndZ6z{fY*!zS?i@HvJWfh+ z4aBBnB(lg2O;u=6{05rVOq#1fxo-OH%UVXuJki(NwT3kR07ccR#&Nl2VdLSWMP@DT zkUhtK;@nRyx|fc6GsJ^{G}slOrrPSJwn^-(7iRN@!onHu;hpWSLHlckjF?%*`;$2xcsC2n(8aNOH%hnQyQbUwZ?<$di^SYn^(4{ZjO5GgV4J>zI%uAG z#W~LS!L`KpnCvvu#bm*jOE}!1HRJt3N)md871L^`6J}3t$NvDT8RKP+^BEpu>dB+G zjT}o2@i9jUH3~>mT2%DX+UY(y8B0cB*k+pizD_O@P^5P;s4-CeA!$*>j~!9%O#vq( zCdb;@PGy7Ld7$ECoGn!!`N93v@EYfLEd};?$)cV{d0-~>n8AB+rKgd)*MK{G+ih-G zF@Q||BeZ*y9Tp!fgShW5SB3rDh!5B`c&i~klO;NF+fu%_Vzj&;mHYeg!0g`QxwQA5 zF4r=z_GvF9Q+06z5TvP~QbFpq*lW+VAnv87qea~}UyJXe?Xhca_*>b7N8DE!=(yVf zZAC}+Rg7hxm2L-8DIz}W&(C|968`{nYuqdWV8qTX&7hXq2c^BRMQilCc<2t9rpW$U zgEbBUT$Uv=^5EbW`4}=zL{l?*78MFZ6bZjI-AyzgCRZJMV9#=X&Y_&OwYxYz->8*Q z&tjvd`;nmmXeqPYqibVr8o?tel@(|sZ|3B8E1&`oekJ>RYl1$?-I!U%5K&T6IXE6Q zrG9$GG&zeLz7q=!cT>!m+o`K#Z*xUr>$!KgC!BR%)RF2MBQ8Z4iwW}gvPq4yl2nS2 zNhOq0JVno_a_dHK1=c`=Wi_{OcD^nQRsHM7X_^q- zjBYZ<_Hg+d3!9D?w$BhdTghGulmMFjT?YCgJf8V%@R^)>xW_}>IBPkL#E4!@shnFKH%;VNWZbIm#BBsrT zXY(FL42|z+Sz++9t}=GFk27h&TFDZ6l2wsZ)D=FUr>>bOCfVoNjO<;(Kiy?*p}Q8$ zs|vuUTIxvJK2i%PLlZ@!APUjb>K+;iNt-xa%PI&2#H`K ziYf-*ruEapMCHie@|Bb@{{UrsOO}(i63!_hd!y`6Ebb{OYi9MSYIUdUtpR2yH9fMM zY+gRXD6H+{FBHmoO)}5w24bvKGV}mz0JjBjjo(}4YOK#u3k1>+>2otip+N?>xHD;#mPK~9Oi(;1}3x3q>+e{V8Wg=?g?}@(8 zqx*JLaY19^tt${&O4RDAt&_9jMws^P9It5icMUs%-|S#0I{p{U5qxY zvKkhU0CpR68tq$ZxJLt}*YZVbyd3_LWJ#r8FFM!OT0{ELi|-7>iAd1taj zPijb7N4kPWsamN3l~Yx1cz;Lw`rg?m2fOqC0I{~Z!{mF7$mbI~ag?&UyReFKSzFu_ zP130mSD@j`%b?X4#Z^*Q`z-7;n>~=s{nI^!FyzdF;_B`$QY=dl;6f?gc^|7?HPZxd zx_knARv8aAHW2ypvAk-;2l8N$eiz5{{R3NIH)HkMTdiUD|D#SJ24$o2RLg~Qq9ZN_3-dID(u)H zCEg&$SV!+PP0@#jomieCd2pSc;fzJU-25IXjYiDuzm9jH@9?I4~R7s`D;5M z!Pqc;?>_{q>EdKywcN4ceiFwOff}_>? zoey#f*JAm*Hzg`kc)zFx3y=ubdk}E4E06K&&Pz#d9h7>4jSpfpU%}PvE!-quC_rL!}x z!(&sVcSclZlefECd`geAxt7^itZv0q^apK5?K1SMMw&l<0>)eDUW8SQfFIX=N*gO7 zGhm|0Meo}Pr{~p?gD=OXhEAg3n7U8LlD8S4wgY;%15ejZwjjM1&XfdrByx=55Gf{J;}W*GJeltd9@0m_4xJ za-xbjQ>W>nl!;}}2nzGPd%oG77ao$tpS?k^@H&55eoXgSaRTT+B6m=f8SLVc0s9zn zKM|&SQ(cI+zbI=aSGIGu!c4`Y!FWAEIM$=#sbgj2q|x%p*|%nj7$M~#=oT%<_-MS1 zTI*vUf49H=jlcf@5dQ$PL;D8`9(tEoR~9!P-Es?PZ2(mTD$%TUs!Yr;(DiQoOhaA4_YI z7f6lN%C^a2+BWmscU(6ub#k*fn(p04rJ`ncA?v2>Co${XSJtvcCEQPVuEQ#qL+z#J zrmGBPhX~|90a9Z2;h2|$OG-CHJEN(KRnEu@NtUxfuB2b4b z>J8_qRW?@2ITH5=a!HHFTU+9;&DK8N?q$5hT*j?3+T0~ru@pRkKht{nS5~g3$lGKI zA-u?B?qRdJh>1&yA-RrbxiMQU4;1BE`LJWxZFH?^DJ1VM2ibSbS=vn$7nXL>2XSbz z#qGG|^*0a*k7CC!c0&5yQphIf?51R>@6K=GmT{yONbp`5l%jyp4y%VT?ow!YHmDcqtM zuJL9IziQsmU^JM+2nA-5l-F%W+S;~Ay&TpVnC?3+=1=W`F_T$hFRKT2;} zJ64?3{Yn7hI_Z|@Yc#k>9+bwtt3QAKJ?^M-Z)-j$D`J)9c^fQ7IY9tbYCXAn16|IR z>bon;8kuW+8$15sn&&5T+`Zk~H?!P{6yHy8%>}Cv4>jUJjZcQ$PLp1=lqNmxXUqw0 zzb9SeZdtADrIr;R(gYP{g^t{+1%4#!t!ncpBim~BH~#?C3GS~97dYr`uOb|-lzM_I z0C{p+gHUuYuZ9|LncD%ln|V+gjwBG<(zVylTT``} z@8?vIkGeanw5(vYvix&w@w!O2DSdDcw6Fm{iOGu^o~qqEHElYs`y;n)7e-!Oh4yag zVVdm1*D`Rp00^zUx>Sn+XPi%U)t`RL9oKhXP1rst{tg#aQ`ic)^0aRi9;O*t5x?PNuN9Ui({{V*j{{XVFHrCRlm%okdIbCBt z{wY12a<}ya+!nGQCa+HodH1j3+N}qlVDPpVjeN3Z;gJ2eD^~?x80czYb0Hm9=-_Kz zNMt3wgC!);MKqSzwiYp%Ev~GTC%U88L$GNaS9411KqS90X_3S(DRS27YyH9@J(s8( zm54VQ&k|LY>(Dmz)?=o2%6qAAB!k*BNm8ac12PiFipaoFf;=ms1DcNI?Axx|p8Fk; zxUKdgC?5J2Qebwv3nYHrf}jp9xvyPlGe8-9t^&gu0$fctSGX@xmRrcK{^Btjk?k)Q z9HS^UH9FX_9iR)fJHIpA*9vWN)8jF7%@beAW_?JpouuG)W&*rxqXPR4J@4f_UDtBt z?r#I-FxL_%_KcLN_QKiHg=R2DKnzdT$A2AcSlNa5=X%*+S>yYo6$Ozp$ZWD#DJW~( z+qg$3k@&az6!e2Zto61W%;)}~3tJgv!(o>nejAwgnP`mQ@OXrqvR6X2Xj@!W{^hW| zzy-c6knU(k&b{Bkh&L1Omm;JqW-S@J<#|@7P#bUky zfbv3>_ZN@Vw%RENBP*NlKIZNzBD(Ht`ETy6QLSxA;S5&Ms}dkZPzMG2Y2l`WWCLw| zeKcgfxiB*i`l@@8Mh5(1uEo6f+erq=j50?VJ%N`KJ6}4hO0eF<(E%vgiY#>uf0n0O z44BV9*>|{H1`{ux%h=49l`!J1BzbRa;~*0y!qS|Lc2H_`Mr{#Z^TKwTf!a{MRV1}o zXS%(N+dOv?H>}0=dQCS|O*K@qR!HV|3v#jPcSckT%SZzi=prmcSsT>oYNBE46a`NFY)==5q+#XTGV4HC) z1!jw)@=?&S()5N_HCcYq&Gz^9)VY_QUpl-j7Vc7@itZyc;#q%o`kdrZ@Ed*GxBc6a ziy4Evxx84{+n(>FJ;?fC!>RsE^T3wbdBh-0y=rqeiY)fvc zH(1aA03ClKWpCq_{?^+YiYJ}KX5`4$k@Osf>}%o1r&q7a+a&&kd#7!7df_`YdqiBv z4Z(%1rOspHcxP)?V#ODoKqj;;*Ig9&>phac*TLL3VRjY@)*N5<$GFDA%E=wbHwx0N zX(JMLefoi}%t@x7*&=$G2zzf2YZWdgogpWok%;|HgK`yCyp9C8OihA~90AIUB&z zK$F85;~cc3l|2{aJT%|e^bJ42cgJQYk-?5DerA;A!M6VZj+#_(O(!Qnia3NhNENOF z?IcVDYZx0*dXjujk{Hmumc?(6auU*YVO~s)^$(VsS(PeSr?utfZ*h`%6ISSu(oDXm59RL1;69Ix3Rwh`d8>Y z-M4LTSq4EG5_}C(zdb*<_y?$%?TcWdPrHaA729xime1hcqz67H9RW}!4<&pU3hBL! zRY9aUn*k7JWm0$8*KI4<$||79aMlPtYiYA;QN5jVu=-B~k0!YG~&m^`*(nQyG@GHx=?Kx)UZ2lK#@z@Bq7f zKo!!%V{lM%m|u7Pp?#T7>KK3<<*kbsDt>@vvZ&VbO^>z#lpk(+90aKI)oVsA?2(VS z?)SfqEi$;5xe6&PnD^yF=0M+6dfGYt(kIGcdk*$5xSsxNB1JgL%&ZTQ71b2}8rXjF zFTq9I7A*1O`-*#60V0bdaA10DbS+oq3crRlwaIrIUYiR(=9(&l?8zt%6H|YyNsU6S zZ_`tZ%jUkp;Jm#TcOkt}h3ZD5YMm9k@;UqLgtn@d*)a_C^+h7o4J;03^0r;mc-1*H zNBy$G+<%DGD#=?f1Y(!G>}_LsrMJ3xy0qXELGk$MxM1ZWwm&TQz?`j=a9pa;%>!~q z{WU(A%G?l!!q)0?_c-Dp9SVx`9(p-H21-NP9@+`*rMQk%@RbFATG>A%V!s1oOg*i* zlkLP(NDlF@QbvY+n*^6eYwjfTpZ$L?{5?}7Bo+4eYhF!;$#(>HF$`8Mmd@f_g(95` zk3z!`p=17Gt_xn3v@_62wIG&?BD)ja$taOZ#m|sQwlv}x3efn2t!le3>Q1-j4ZY?k z89Z{|cC)+o?dzbQ2F)zi6hkr8?y8|^W6Uc)uYi*gHeK%cP)Dzv&PAFb#ZR-PilCEfjyx9P$u#EiVwHDk#UM&_fVc_n?AybvFDR7dn0L+J=W6y!#(s|cP_#uY+c~JCGAg@v5(^Rcph}o+7Gw}0XX>3Kc z&}1=QsBt19`bZQt0Cm;9f28vtVPeJPvX<7J$9XK+3wCm|NA5rbq@3hwcSftn99uYY8P0-rLIMoFHOjf<<%5lrHo;SEi$C{{UD>y<47HtM0h- zH?~;&{?RuB3yS8iBy|rEjj8=)@r<9Rm30kts(;xP+p<^nFxkue?tdX|cior9{{Y!u z5i-PyAVu9&aZm`ahP^7*wdEWWmt@asiLO+`G;+r{Sz1Mm!Nrc{Xx?ALLe}Aos|_Bt znHO10NT!D+aSS)M@Y-GrXAnvxwon!(0=|Z&b>>xLX3s&nM6tG5SlU}m?aa|jC{t++ zAaO~lLL_atljTiL+4v1rUuJ=^-MM>fZx?DsaF-Fk9E;At%^E2Fr!VIX;ZB<6n=UML z;=CK2g{~skw=r*%xG_c)9v1G#;bRBT8iT}Zle=(rG?G$NJ@nncQwMo(1NQt=rP#S7mbbYx++AYaT%}D>8aj|2Cbo<2Pb8(YUdjt-6H=0x9{VFos8l!DjB09zSEi` zsjkPBMxk%((l11q#}VGw-M{wJljyD^9-FDA!CTL2wke3NHyIZv-isB!s zUvNM^2Sp$;E#2Ni@9k&1nBA~J4ZF)DJI4}is4Mh=;j9HCNw0giw=I9Qy2XoWV{3@# ziDEZW+uVQ%GLBw`1L^CfYDOyUZt2T*uX5vig8`Sh$K~uB`d6IRFgXfI8#34WZoZbL zog`^A>1k#8GrKP>ZE+Sozm>R-Orr(4k+JCd0pimi-Pe)Qz|s$uy0waku-5o)p(=nwL!Ix3)cGcsOXIQAam zNh6+;Pi|BI&06hFq>mjkLY|x1n7-GIvKAS|hVoX5IP9Yl$#FY<%^tR;ev*K3X&a`q zt2Rgy`|+1_Ud%0Vn18q>#m6|2gGCVfE!tpsRfg@gYpT|*qAuK?kBa<5_noOV{y!OU zitflJ5nEVX-73c_I10oO$(MotW4O}#TPp8Vjc#-C$9s1q-KZ`zw((nb)L`3NPXkTv zUVsFlW)u_y=~8NZbxP@v1fJIVG@XU`?YmdG)3~qhKe}H;J^WHJFnzR>5zci~Ay=m9 z^!U=c7S!A5YHg0f^Zx*j`*SnhH@S?w5Zv0e%iTq0UE19)WfhX=*(QcZ{my#pyH1E) zoO^dmgd1(xeT!#t7442L!rJ{kaoodht17d8;qlj9YQGL!&*;i&>?~n0O>ojiU)>>7 za`dMnK&hbBVSW?kcEx8cgL&&6%%(sp2LoCk1E+LMMQ&g*1%^f?D|+msVHsLe^wCKn z+LU%K-$`i&wc7KMy(+{guj{bWdkK2UTw2_~t@i86XuU201x-A)lT0l!70y?@EZDuA zG07ch(YMk^!2C4)63wExE_;gTdzW@Gl7H1yG!^&*rr_Byh?5~CsFPY1O75*qfayb^ z8IbkHGsp|@3ArGFQU-%?GC?hlw1Pe_WX9q^8Y%)y2J)t+?mJup{nfpn30n&^upucj z55wU@=p?W*QZ z+Mj`a-)T<`8y}dRU4(vN9MH`k9#2kA|LVGjzC6aN6KX)=-z{nO#C6=deY_L(ceBimbEJO-P=a6Kgd0F>)0Am+jn=6KY7+eoN( z=hP2~HPCcMR%0tuXDotPa`SQ&0au_uBdO!~GO?hKKW}2G9qwYRHlwekug6oiwsbA2 zc^biyg7sDGU+#xmMbMAeNb3c2UIL)aTcphdmNKh>LXHXk2U`%U75kTw&Sj3xj1ToG z>rD;~$UVkm9c?^T@+Y%(F`$W!7x?Qzn}WQ-k`Nj=l(`<4i+Lw_?Vqe8sQq;XzN0^#zaZG3#!G{f zor^GY)Un_7(_4CdF_+JeWtlI>n9PYL{{R{;nYVHX6+U_^bNvOhA$tBgz}OYzhm+b} z_>~X-Iv&=;T`3MN@V&Vh3Ng!;Q z1H@Hnne1kX;QPo|+Nov|08XA5lTs_*9f5AX({}=*_yB9iO6zX}WnV1%KH~glYc0lP zPUpmvwzfL~mcP)o?@!0mM6gAD?lS!>0Xkn*`-6LF)RF%HcJ@#He4Tjx4g7j(u(&d* zlgMA%7q^OEearwgywJ?jLn58kNG5@S@jHz}iRB#*V}>>DtBk$oQtS&D58On{e%IV( zF#$pxFrWnV4mGy8TrlfX#2d^WCc`N4O^%vN3wt?M=1;g_NS;2hpi{{59S@GY>)sDS zlr?slPSt`4WVK)Ftg@)KWA9wm+N{$G4ko<;8s}-gPL2_ymKZIjw7kE9DPXz(070D+ zH+DZt%RqS#El$!HJnDGilIre8o=Y``<*R2B6fxWeB~etLRBh%q^4CJ>MvVq0PqoC| z7mz`Dl9>Ck!9tedKB7z0)_iHDjzyC#J|(iV{j>oLvAez8*9_cR(lJmXAoZ^LwVHx0 zOACV&f0Dm~M8Xkns0&6P+PY;Mt0x*$r&jBw&%o-w1{W|{-(&J}%X}~AlZmvn5Wn0i zsG}k?06|Y3=yjExqdFNTu(Yzq!!@+3>?h#Kz=bie0G1=89d-F35DS&Z++4!&L60J3 zVIK(EHk2ArxUS_`bfML2R7Yg7UB$S}+uw756^?!{e&ad68R5L zf)=@EgDl3o-FTipzL#?Ab`XMJp~Wd?+Xh$GA!53qp}{yUFuM2*5U zw-g*nr9Wt=mZ54Y_FA@Ypzh|(St= z3nP_xSw}etBV)*a4MO@=6r!5;Hq8ajO6D7Ov&NQ|F&TSxjxZraK~;z``ktM23apV^WVli$ZoETQht7vxPvuQ;a(milQ#1G%@%B_th{ohD zFw+S>?%1IhP?*?sL~l|9;l8}vXh`%H*+OhD{{W6Xt}fRZ-FenwcUUZLV31o+45a@6 zs$)EZARScFr(E{d(OOgMa*KWl!p;L$BWXN{@Fo|RoqD=@Zr z&Udr%ILqm=i`$m6sIgNPUFbQ zVPkHRZ;XaT_N}>nE6bGtA5Q14ho;jIA8i_x#1eLvW3z58+V1W=T-VSWjB8rm8C{}r zv&rm&00&)l_%>g`%Wtxj><<_C_8#@fslUxVu1erEw^>WkB#^v{H#Mo;fw!KiZ}pe2 zWb6LIw|pa8bN>M2wau-yyoW6JZ*~Jk8bEE|jdoHbW5m;a^~ryorgp8!OPTyBeSyWx zmzF!9vnuqO=~RI#^aq0$74Y!XmZsN6dytyb@pp00WpA3t;U<#BqxVww=tM2u)K!&_ zE-DwmKIcJew8Ry5NgJNu?C$37{>Qk(T;rg}T+v?7xH0bxQb%uY-s2_Ei1Lv(Cz0~i zYxCK@h`q`?G`WAp`EKl&85Tn@soHk&#<8V@A?0}Z@o8Ra@R6MENY(!U#z>RiQE~WV zvGG&K7DqE6^#PBxxhWgWy$ESKkUX_bKQ>8`+w?>ZFaH1&_9e8oxp&9Kd2E$gp=oPv zBU5OB+#`67T77>$O{ON#p~nQRAnn_8ZF70rws{B)W-PtRL?vr+6+~eapQJ55nrp56 zHG(wyta=h#_QorH30M&vhppQ%ohLw}t_5W-+NeeQRCm zT4)-~9c|#8^NMEXex4`Ozt2Y|g-T1#3gQrM(NtbhfvN=Ny1j_#IJN z-b8AzqDk8r>7oWESpevY;F0jtJ(m18t$zhKUA2lqN3`W2>P;*2u8np-0=;O?-}d)! zOy(QAK;^n_1C3o?#2%_JW$pgjv5lNLg%nlenZ*DeRXS|!FRqAHbC>LUSmcqC59#h1 z7;xph=Vw?aG6e-c=ezobt-7UxGMK$X%&*bZu-Vjwz4P#8ST? zI_TSjAdHvfOm&HGV)WfiwGu>;e^DvtUB-fGp_*oVcQ0|~?(M&^y~+E6Sqb_S`89fI zJ=*HOkygEyd;s?~?oP+rlR0%8Ny~)XSQ8ugbkkSpPr#c#cDrT|G2Bn@6l|@-tVht% zxhetj*F(CFi8?kuuZ3QZ_3U`xl>35MBv_~Wi-w>NK60$KxN@}~mS(Lq>*h!g z>1KNG@^)i6A$x}~M#FW8vh~%Lq>g)TYzE&SVV3t~mN~9uK2FTSy=kgKMDma|>`PnD ze`{rOr43IZ#GPqFau<&Le`O_p?%GRKkLx^36QJyuK!*D&yRqynJlt*!*Clpjp>;_(&FD^RGgGyF)A6!R<}n(YtP$DHg{@iBi19xlm%UoYFq75-@>iZ;DPW|2ffv?0AGZlr3Cu!-c&HZd-*CW>pj z89%n~9E{ZinEmocLAQlL-%zuHs;n;C9T4QWhe;OhZVzt1>jhrCOn?Xe>m))9sxZ+6Wd3_M7DdQTWDWNKSPK{K7v3#H2C&;bc&Nf2~F)B+Tbb@CcSB*BW zneiH`X>dulQ%l^X%Gly|i3>Z*2*G{zylbY`)FPlAMVFYmAOw-(74{AGg zZfzur+ca^C(TUXvoED(Z38 z__NTHzdN6~uv1%E-9{(JS=`*D@!E?uxJYOvFYVPOl&<`!E3YQnm3H&d>H93{(d0At zYRzDs%5t}F2)Ib+wvU7o63beJQVj?nQmr-Vr&f9V$>?8+d$Tirl3a4(;A?C47hd)J z;?@4v+j$jakcu@o2gK{m`qG2Y`5%TA`5(QkfAuFJii@_U{_Swq!ycg;G@LS3XARY4 zU5}R9f0tbAVto!R!J+K@1@3FOpzd6(ayBm699v(-GRVz)7y6u42@DkOS-f>E_f@16 z)kf|xyzk7lpX7-RG&WC;u)^A7@8pEqz07K0 zBHk}qm6?9F6#44cR!@=|nrnlZ*=@UH`&1XQg_F2lUmtU7qDT_m2>$@6c`HQ*lrf#i z)ZMdA3P-J*p84)n?e5mU%vhn!dlEqze0ZZ4s+D9wIQZ@UI^ox?+R<(f%fIUd-##qjR*2GG@55CRPRc+oV>#tU}iAeMBR@|Q5kFmV5va!io!m-;& zfVPf2lQELy-o`nENa%gQ)%5MxUR}SlgVCadk1hPMn(oft?mTaO_JYo^_dTpFeQP{Q z{{U}&W=a*2TosO|)j>`5-SSeGPPRCHotD()670Xo{q5X0mzb{Snn<$w*;O%lId}_u zTft9kNf7H9BY^|MRQf&&RY){_j{GwN`5Uvc)}8Nt-9M9UtnMetNhP_)S-%xa)r=&5 z+!2ucYep5>wb%1np17&O^s6h2nyPMGXHU-Ri#v{NwtFG=xjALQ+ADjpnGYYkF~1H`GJ;Sq z)Oik?=B-jvyq#9N=wD-*v%Z5Zf$z+dt+mvghj2$JlH%@Y1uf$UKt+n4mXe>QlV+P% zsnK`Xb!<}AjNU`LVzurV>{W(OwXwFWmNt%t-p*Dl#huWf>KMs9TYjB2(!O--K2B%9 z`#_@iHx@%DjIr!IJ=LU^kQi?o-M#y}_}A4T0IhD}HUgfsT z;TqGl<$Qcr^C1m8IG$HZl0C#>97w;)tLoCNNx6LkI~lD10DRdy{j!JTbs2u@Xs<)T!rL$du(`v z*G*egTh{Rnh2VRF?-P_+?d~HHl|JNRPH~XJg`Hn*R>?9ol*ic&?mxP*)>y{Kv=-QD zW|}YRyTr0weN3^F!~#Vsy5pvb(`1*v$7&SGnVQ=jYhrR$x20i-KfO{9A5>)QSe>!exAr#??&pUj!4ZlsRy6CJal9ATLmS=8@ zwIe(JhS+|1_WiZG?d9e=yliT8{*=V_!2Q24W%4LLwqRP>PU$p<{#wiDKz~e`OwV%n zR(YLoGLIZeDfZUN$wGW8HPcNsIc>hyaANN)<2=6a-IhxFncay$I_jRfi!bz4nTw1| zvg4G*2STpP{6IRLs~sY=Q{9(g1?);@V`nwq}ZW z&m?r%sUBL*<-wIveAyh8^~>H(JGIn;k0?Az`O{fe5L_EB-Ta~4ox5n(FiRP?kQHLl zhJD30Zw*EK)xR&ZEw)M$Gj}&P7jw-#l1V4L#ogSR5>0${+g)m>J)HIld32!!DMnut zr@Ki8lqh?PiEJ%;rL+F*Nn@rT(g92cs|=wb5>O>byDXmxLgwX#lj z#sq&Q0>9y`AK`$ffasVgz4LaDt>P!XuYwQq|SfGu)K7q?)rp!mFmj3{^B>rUjd3{Ie z^Vaqo)Xj7qp8(cCDZh%%WKLHqthUn5w=-j%3c%M5>1dS3c*eiD6R#f4*Mr!FVfSnH zwD~{pJ--wzaX5vN?gvCcFbrt1w3YP_<<~yzz6;idgSW1+(%G&Gdk4hc+e5&>q-{IDC|!8|*yuR8>s@M~HqerBcLlm2lvpAE07m7(cLhyL zCM3@ zRRKH5gK&tkigE+TR890o!mi`H$Yn6;WA{MgLKvgHWe+E(c8QTkBe#gvD^Jm1MjP4B zNsf|R9E04+kBGr<1#SEU2A{4E7*KS(6RV6G}hr;HdyOuPSZf(7WhPCE~;e|w= z%Zf(J=lnI$?MG5It<|{+xWwdh7nun%*?LVeSnczd6*q|C0y1!3DpaqFYL?iNP)%#+ zlQ4S<&fhh0Z+&xfbYnnqS8&N1&d!U+){GAxUSQWxYw(HIy_aEs9^_JZve`T`URhaB z&g#YHVR;R=c zI+nWQU+h2_n$B5vSpZ zyskL2v{!Zw43WtJ-2|veWGr?o;jY#7PiF}*GFVeyx?_=zH$DVG-S zNJOm1lp$1}f{a0JMOu#hvevED4=BXq@$kzB-wC9dUyO^y@Qedh0FI#aro9@~LFc$7V+++W)ZlF(%kyiPGl9U zDfF+2@X^-iS{BW%l1kGsd!F9ndwZ$ykz-I>;~|O%o+;rK_g>}Kbap59>UYYnMxs}* zA()=U{E3Lg*moyx=Oc{fi+-@CH|V(#gNp{>c6SF{?Xav zwe8mG;d8QQ=8h{0qbt}IXwRWe_#oZnbx2Lw>h< zLE$~0+x^+zIonAwR+q_($KBh{k(xyInJFkN2e@j+qo-YZzfSFHnEsw`&92wkKZeWl ztR2mS{Js9{&GyBXV&)Ui?QL)7x>+PpMYODoLjwh;^!is^-zG0y9UoGQ@OhSZ{r%lJ zIWD`J+TuQJ$JuX85f|zr8-Y`bA zTZ^cn3!AoBE-&I_zmwXDiWy3h%?q*pqJf5>waYJkjTT|zm$;G~Rgt#6oteJg_C;uc zP$|YmZIwq;wRG2baxD|HA9i=+TTb)KOOMRKjqg=cG zn^vjU{{UmJR*Kr(faE(;!ynuiId0XnOl^gvzx3^EaU`}Zu``D9fagHB<@QRcqJKN0zzvSNmo7TU+7<>)RI*EzHcq5UvrTlB>c-{{SJQ8tUrl zqJFz0Plv|bU&l5m&2Mt8AG*x^BK1TzSlsW+$PT*ZXGXT+qc$%xmbXZ4Ehe7T+mE*^ zaxBB({XS&sstGpJ8QI=_;+8m>?WJNtW~a1C`1yJ0w+83P#UoJ~iC{p(XWpp45=V#2 zNiCF7YIu$-&JyAA@w5-cN{{V)>pt!iWiZQn)8_~3Qo{0ve^REAYy)|99} zF`+gz&;aARI_r`YWpYTU27q~*X_eX+8b2U0<9kxxW(zvXTm3Zk3IVlA@X?keBoJ_T zsjVizL=r&@dmh@zql(M>RZppb{l~*wCOinTUA2nIO!8#fNsC4!MtMJ~6$K+zb_Zqg z2g6RSBCzC6C>uW^+0Hv{wm>=m#j2!Lo*2M!RNpo2nx=ADwJH_-G6(8~%WmLf| z3VhB@`HAN?#G0Q*^!be(5Xe(C?DDZO$Y*BjML*-C1_w5ICZU$t`)&Jx8){)amtHOEq5%SM?g^v#TzZk~!?y`;>Xeg#9uBTIqkN({lH-$3zFJP)M&MLtSs`iRXC+ z2HT&uB;rrfTc(WEdgg{n+nHG)7jauX#i`%igZhK@3%Jq26Sl;e_t{HorRRa-J_1E5 zf5dB{Rdz|=!9%p}D9TC>fOOGv!(2!kF*P_5Q@;{4p1B!p#Jw@0C|yWD<=<4Uw2-#g z-y<7Evx&fI91esKcGamwj$7HYPhpa~um((Qs?J3fJ+4Ilr%vjb1!kDC>owf}0CVn0 zj`cMt)lh$irD$hGYP(~P_iTm)it7N9NEi%agYYb%}}z?T8-iQbtji zPfod?4~~l`Kk{VL`>a)S%kq?5(Fa4IvXo zuzyL+gK~*aP(CN2(|M6PEs_izR&Q-}12oLwE<8jUMo@QX!T?wF(y2V>wxbg&YuU=O4Xg-)}xxBLr)Gg)mmG0UG|ut7%wRoUA!%T0A|W z$wk4JXOq@1Vy<&1E=tn%yL2d0IWBkJ{@~*1kIAyGqAYO-xnQ zmt`wSZ*zr9hm4PN+lh$=pCD>A+_GsyIGUn-u0~k9KHBapDJ(Mhn~SVWGOUSvbj&@I z$BjY{Q_+8vY&8v)wOpe5?OSlbGu@fm7m_S?IN2{OtVoF6!b?LNFf{0E!1xo>O{&*j zvU@er^nKcP5Lo4Gt+4nzYe{X~6unRzf&f8!ky1yVpLDA7_=9Qx0JlN^0F!W5Q1=ax zXrh-VacH+0R{)tDjn|h^u-{Pl?>d5Q9$sdONL0`ny|M@jYpHLleIlB6F}5?e z^VvS;pSx@=AjJ0dmDG8c%*GZtZKi}$SlTvfv|v?31)~$LXLXEuXIhz(J;mMfXS=Fg zy@o!*^7j2w-xZ5Q`@eqG!wD`ul?6pB$%T0?hOJde$Tn@|K~&d$wTS-p7H-Bn*yOfM zY%dIp9BXud4okY0jFJby>eZ#c^(Sl9aLe*pD7!zkZSeUak>PzHl1I7-7AbAgs<1Me zjk=_rMx$MMzvM0BSVpT6-4?y4Z`-*3{Kirt z9Mh_uRM`nDb|LPL@W%E=Vr(a9W9G}R+>G_C(=2u zwQJ!hJjuKIId5L)C5yb4=Hgxx-0>|ZCfk#(DnRk_*L`ZLxajk(wOPv!!}qQt^7-s- zr7>9t<8+s?7mA8#%@I5NX``}@sTpje;M81XJ67iF-^bj+3@{E49N`FMAHIZoYp!)$ z6?i@cx0XGrkR`4yan~&-(SyL$_|cT@@YhPo5o&_e{B_wEmj#Wh+N6fQ>@w7H9wYn^0d99?CRI3LcOREql2FK4yeYw@v-a}naTi_EX z+MU5~n!d@;kz0u_C28({-Ze0}m()=iJs@vN4w~BbR~$g-=1AN}adiu0;%~RNfdp1Q{3Sr1rMTEpSR0 z^0wxAOF;w|5(ykVzq##%6<=jGqLcMkPgfwdVU%N&-N}8+BohaX+UM@1Ww%)v8ZxQ@ z#8>G}X4?{|wmV#$5Wx&$M~-Fx0H~JfKuH*rLY#LhJS(j*YbW3i>M89$-x_iEZzaTq z!a^8^9XSDA>!uRjge05cd``+(Pi&Iu1@Em~nL@dIRI*rEz7+NW{vX;OrqI zSV?teLmzHSxnVpMj-^|TYh9`}MbQaTIlRNJb|cFx?_S1{DqFOihp-pWUO>bz5%jNJ z6?b08byguaYi1Met>U`&EUdVrOK#kifvISixTRH&SYm%lNP-aVzpI^s)rUTHzif}O!Muj{M&_~7RECi)+Ly71R_uuB}t{kC#r zLQk|+*J3yF(%{!6v#&t+eYJ6!x0CyRLE?n{62^Gc(!G3i7Rc-t)a}ueJ+qm|TV1Q= zr4kw`Fokg<15#X_)}Q6oo01;3jD~8;SYVbri-*cfI)sdf2r&}X_Y{IEX}0>Zu_$Y? zeiOEDE+?55*5)fF{{T^>3L2+i!7EN$&dGKKR@tSxv9j&yf3)Sj+dH`AQ#rVSmPm&h zjzkLaBcK`;Y4kmoCq?m%VxJiu&ELCFOaiQ`dKsC6!?ABpjy z>7PY<0p|RNedw2 zel*j*4V7PjnNh7Ae_^n<9^k7r+B9HO{M4qET1?kG0A4PB_Bz~K!xD52Zz4GU71b4z z1}%$^Y-TRw=WAPp>9Zml{K?k#BVfUgVfREp(4*TGe?z{{Uv# zLs>JO`DqXzT3d3FzvE3p+Z%ix3bp(bUw^QySpBWl?p|;KJazY~RvQe~22+^4~+iDNmE2PD~kjckvtiv<^0N{1l zQ+*s?;Q6KG*LI3`CNAV%;huYH)13fhVgCSiwmQ9a@NsO|k7|#+d!|b$W6xu87Z!4k z3vqi2qtm9~S4ruIz`o}O6S{LfoojTF3`{ptBXYPH^3lgb;5AsaM6dQSxt`+1Tsd4W zEBkG@*fZ8g{YlaGLg2E~9htU) zuZFq*0L!#E9el|#E>UdmgfsT`Qh8?*7!9S#01@a^GE1PIn2G$TLfE1hGzcXv1@kzX}~StCBXWs&r-F z36OxWc;rPLY6%+T^jq}o_f?KCxV*@?iDFrOwj*I($6p;@m2~qbHpZ>d?O4n_#UX3S zqlh}t5(Fhr#+w~$U6NYlV3;e{nW4sIEFNR^!z&JF;sWV?tI54@!Q0N%@7qWN+vOry zSXGq`Y4YDlw$@8}?E-203%xH?%sY}hZey(OW9#q-RC^IMuHH=D$6)?K#K_mSx$A4C z8!(FQj7R;}+en7tJ1z4dhYa@|RcA!Hu3)D`6eEONix^AEJ#zx5Hjls@=FfIzQ_m z7@p$KT3%cXSW5+x1&;L+<rvcKFj$TKtb|w2GTAoEE0w$Zm3+gT-$=C;C>vdWaP3 zPu;Bf89%~zH?m&=b&hdmYRT=~BE2PLVNy#2UL^0n+Eqjg*|ZHE&)D2caVdGEF>yeW zE73~OyMQ>Ij?6}js4C7i)y<5lEyhwsj(xD)OO@SHLO-yxNhFt>~pxy{=%&^5vX5Ta1BYO`}EgSvbA94 zuND*Lds(xyTKkvbLw`!%<|v21!JFJwC1^^6(4F+uYJzO5v*28R9A&Z>mv3{BxL3Rb zmCdcf$0zhF$qNCof82a^PhunLVg0e$dE7O;u;KD;ZyP_j9T~m&RP1762o8Xvd73AG@` z(Kw_308y)2_#JcY%VOZZt5%(g`@S4ix<%ah{BXAy@=GfdBDtw*`Vn^<>9n?#KFRK0 zP>O!>?lkS#GI+Zw6DHT~XA%{7nY|%|%69br)4rWjmarDfDul<}z3Y&^xVfLU3)X}_G z_qf|hzR1eH_07X_LnSIAPDjV7BVK3Jyfe|!XWBuTzV3u%Mm3Nc)3V3S63GCOK$^2)T??z(P(60)sIbfJ+h8kRvEAEtW=Z6ak%V) zU*<06ST5{w_U{Z!2u-63Pe9*TJ$mbtQdP6Hx;l2vzp4Z7uGYw5`&$S&#buI$Nn)At zg@m7Q$LU!UVEj!PLDOm3TUoJhMyiafcAeL7U)$oQ!_4^*5@4|^!wiz9)t}uZSC5Y$ ztm~&WRVa$2_7Qn4#s=p0!#Ud@dkx80?V+CG!^YhV>csISDX{X?>y5du1G`$E$)`;8 z*<6k*DWAl}b9IQeSZu5>kOh+6L8FkT!|GBx`DrbsRW(Qd0B*16sr#sJS(lk6jzS?ZD)IV1@3B3?AWH2lJT+prMwdmTkax5Md4Zkzr#y? zkhl#rH06S2uzkmxy*D|ViL9iSWLvzztCqL7^rIwEa0Qt_`}<?V8Bz2Zjo{M+({*X~dy1kV0bE;lMDF@~p zP27^i13?vElSm|rok)!hX;JRO3Q-sNYL1FuEe^e#E*ltZRF3Whp$r=~N*sKb!u|6|ocb zvFdhJ?V$@MVdJ?g{{T_V!wDGfB%^GtO}6mRcPO=%#kjzB-CoT0U9Wp3NL0Rf z1Vx>O;iCuAG%c>lOq#c&d?QwIc-z~E(X4G^5wE-M6;p0SDt@|Aybh6B!CY0Cs`t4u z*0UJwv$oMfc1TJu6<;kHRlY@cON3)GuiMvm?Iq@F!5of8NThV%!(eIi*Fu;%?NvRE z)3bYq^X+mN$?)%Kbr_P;J6VM594csPq?THm`cC?q-lhlivAv!i`WZc}rInn8O&Ot= z+G>x1(07okViA9bg5(()W09Nd6S~aQ9};SHt9T9Sqmw;9WMJBFxl4P2bJQ#{lu|r} z4xctp3X*QrwYju0rG`c}uOgo5JeYWcthPDqE}U=$A8B5#v1P~J%!o@MntE^X2BNs+ZwBv031XCsAVlBdMceQbR@=K zM;sb#CvC@ZUJD?4RC5NKYpR;nQOAAK`x&+kmBQXh98m+f0)&lLe}Wc#_ECF#g0ehq zSUj=pK|@cTgp8?g(0k7Hk*$Taa+E+R{UqR^e!X=oT_V-fW@j!l<-?L3s3V};Z;rX`zRmD-Q|GEVX`8sUGOyPh%fe1zF{k-!(CB+# zk?pB4S!7Fxpa+MUJJU$*kjY{jahJ}|1Qtzyb0wvs`*zXtBZO!6f;=@htl1%BM>RlY zBz$+$G(4x#HICpv^!Wqkwb<$LZ=g!@KgMGxySYg&E(~wAWssI5_1A8VPs!)*+Xln? zCM+nLOr6lD)$Eovr~C%GZC5-Te%JVO8QqpRTZXbWCnaXaq1me-KQq@$WXe%bEcHIv z?vB^UTdKe!$6tQPZvyr3;&saFX)LcYdpwDLhju@Lr?EW zRr5Ao{{W>A{{Zci^z&|?_GteAlsEY7XnT480JKeuk>ED7NLm>sPIE6IO2SU@u;_gC z=h;U`d{0NIU^_Rl;qB~g)E4=8&Mo6pGD)+!*_=^o>JM7$%G-No+3D)mu@COMd{p0m zVr-|D?qo>-s;mWL9+r(${{ZUcrJ}!JxU;um&f~F|{H>fSwyz^v*_F1_YL3 zcHgF+?pP?GH@u_0$6AQ-F-IJa{b=_0UA@6aE~kD!EhQ83YeNw7%RwGDHDlZ#dus$@ z*5XIxu8rdYtMA10>8hj!!X4Y=?k?bT_J5~v@!ZO7<1%|>ntM)s0UjDg;AoJvwRqm< zOBX9F@f%qnlyY=Y^wNMG$3d+oh%=UP&1E8)E(_Vn^orcA8CsNK(yC6YMI;+?4<0(r zWRb2dKF!`r^PAh?)!0_OPMxIyPm^~E$Y5dSAdYLp7)y99%6+*EyHwVS$~QFE8&lcP ztW??V`>T)Fq6onx{*f*uAaLPJxxADLl-7K zf4s#^Y`cyS=GkrBNFkBM7|9dVEj%^R5=F{j@!&I-(R&M$``G0k^!Ei88Qym_B@^jd z^xsccRmYJVw~?$Ee1+Tlmp6AdW(4-6wjma!dJyU6I@d-;7)30N5VpEt$cf4ycqt0& z(15#=M#P>VMSahR4`1%Q^nq$ilg-6!GF@adQ+=NK?>9NfC(w$?LUsE9v%hR=fRYxMDlM z7vFgKa{ayA^9-PXHTsk!s)0iyPa*HCvnWU=Z0}%8MkYTd)8+(7i?Ic_c8)j#^ zZ#$0rxZ}UUU$#3IB}>)AT-N3ha(0qnn^B4Sb&7c9+rHLri^)s`qh=iv0;Q zFVaEq+flx}q0yJ7?mx0L_(!wu>88S7;w`P%C%bJupybx?4%|yN;V5<<8jj4V$y(!N zdG1Me^5Xo7vV*4VvMPv5Sbdmm?Yoa(0%M$#EP_ z1GF+tPfsw*U5|xzD{Pw=uBfS>{==Qkl@sD_WVyQx>dtoR2JjNZ$qH@=yb-I?(Ta#tDBroLdhk! zWtHS^5_6{DLQMf<@~G79r!GoYbZ|1pWg^R6%KSymrS)f)6`VBC+&<@zA_+b<8k^SD zO47>e~2F(H)9hp+sNbY^8Xnm|J046{nI( z46@uZA6T~ldL2Qi1k+7w%HT?~SBby4v}^31CiZ!Ie%+!=Gmw%uxchb#B2@!<3I0u~ zu4JE2vhw>w>AQ=z@$uW=oo_LroTNl4T|<8X>nQ0+u!sb zQbkhq@v5G>q9oUo50#&>(;)utB2~V9)kJ18$MrPTlCdjVy^C7=wZpiN6@8AmB8GT{ zLGm=Nok=$Utp+;vk}KP*+2IG%%@kA0pba#Nk#F{j0xjWbzw+IO0sjCEY>k6EHHUFU z8u5xXL9uB7f75Lhu^Jef`wyEWM(q+-rAkBvN6$|0!MYbqhR#`!c96=aerkY`^8-sG zN{9xU^DzMrCAD;$6EfHei zHW4Qp51y0Q%lfsxMK?K1>zcLKyktF1O*9?ZmZ}56b9rwfN`j$HcskWv;A^CA#j#Kg zdnLup%`1>O8vARqgXBIMgKV`@NT<=!xWevAw@n~jjYO6vW#v1N3wC3-qn@5&1iRHS`nwL{+kB+9%B2y@n!lf7ue^uyiJwe zdB)W7sOhNNCd;I%rJEQp;+i#lZJngHNGOieD5vSyOAHyW12NxtyhWimR~XA79?q-% zNeTD?*GTod6|U4Py8Q9lDHpV{%X-}y$8EqLk<|S~UdaPLmR~1D#o^|P-A2<$3LoG| z)mD^3+sy7`zk81A1099gu(EsCv)MDG}##BmXtF|Ihg!< z>w4&nwrnl`0M<;;{{VUY)%|~mO>8Jqb|0az*lXEjwY7%o8?1{^6D(>y)#_`@Vft&t z+p$C*wKcgt7CVS7@9gYg$TDK_=w4*E3>jr0hKz&tZ@#?CsXOav6l1ZHNtn2i0|j+w ziRB0S(sHdx2gH8eQQg%Fce$={a->!Zlr|#Jy~#-9k~NZM6liz~Q;7Y;LW#8_S)?k* z<1H^Hx3saeo82m~-M!nHLoC~dM^Z>1;xzVfiB_^(ZG&43+gV9!w(U}qTF)Tjcx}i% zI+42RCRYV8hBLT|?9Xo&ChGRf9)gzygoH>C)o8TjO7-;Lj&N_Y&GDmuBiDh=IL&wRRiooe_M4 zSlb{Z~iUX=Oz;Z)8lr}KOj(l~k&DLgR5A4A)MVTZXsQDV8 z;5sngnv+Aeqk`KDN4LvK22TDg8Cd<>DHGhkR(?K|l1lL%XazNyl3q=YChstqXm8%p zFET2|3u|)xR#@xmna@>PbW^T-{{RJ)B3WB|i}~%(Y~DSFYQ??rWje30@*fz>Y^8iP zs+@+#7EZyQ^D%YyFi&TfnoqdOT+YC>lOL;tDWO(Au09&>Ta{7A>y|XQ!{TuB-$QwS zE=KCzP&_00Y|f&rjQ;>m+GV>gkT6SuZZhV3?7)U(7Ppcids}%J8783gs~(*?dFs-V zIpMY~&E{jWM7v+MH&R@EqeFKh!tu%b&k}hmk3A~cz}DBv=UvZ{?%chwxb19mV38t{ zDJ~&s$KJ~e5$-_#pj+U>_0{!kk~gd(s5@9+_Su@_F!ougN;ESG9bC@8>MW{=A`G4j9gMfnWM#=)-Nt0MmF8zFZpNHjk>ohA^w(Z)*0SjDs(A7*%67I! zd-llS?hVDgzZveXVFd&PwRp2O#fa#2YHnD=L|r*EKmI~n#X_qbq-BAjv^2 zgV>rC0Yp*}vbh9bIav=LF!#Yoo!p4GYSlBNXcWHSniYjYL z5O*5xwwoNay00J^%M7+hx$maO+%{I>iGOk2-4Ac4AmW~stvYS0(vMnglC{;}N3`Pb z9sT%~ZKfHRY;79eJNuT7Id2m78K@Z;dU<N$ow82vC!a-{GkFnWPbl&y7Lc{V1VrkyZ;J zX5_#RrMz_8;$j1;+(^3{-FG?r>`oHe2xqpkb&f)@i7tJR{{Yo_J)uXF=eDKA7Y3}_ z-1K_aVCHfC!GE8(?dWOS_?f9?73d+_XB3dQVafS0;)9^+t_{;wlRNdik%0Wo`4b)6 z*I(@`#Js$o6&LwTMUA<8c|!_E70kTQs;zl4sjk}X`Mzs4l$?9FNA)~TUh(ZLLtkY3 zVQ0UBKW5VLVG>(KGD-`UjhJz7X}vC|bKzZjkvtxHO*uY~xN+GG3S=zpvN+VpPjeNX zW=ojtu*BOZHvYV$n#y``rk2;ofxT_=Wv;(8_x^lZjO~O&1pec;* zONY-ql#3c;Dj8fiX{c8)XZ) zytwvSDI^QZHH{2uzTCR$o$AE37zQKqtTymR8t1Gs?vryixjQGv@{A4Rig-t+zBSuP z!x`4cu3$Tp50$i*=eKfKHUaEb?r7t2bd%0&?%GA|fX1F};i&rEmnBuArc%$pqsZG` zTFY;3YmblBEZLzX5eBaw3K$0W4}cqMvC=t5Hhh`u?&86|LTp|>+-9JXE*9471is9& zu>ioc0(hw&qQ_yQ55we&wPncv00))qKHtTvTwv11{`H@q*okMJ)sxW5WRXhnV0wY6 z-&L7iduq6V2kvgp?fb(m&vu6mAw;%9@(9wE1KddHc>MIv5`!skq2wLs*m(J3Xep;XYN_yJ?wz~Xzl(=(k+<4nNkO&u#cCXD_W5m%2`SsO3jdUlc z_pz0o#8xdNI3DJ(y0nEuGh1K7DdG(&!r-AAS7!S(K=xerawx+st>$*bg<#f?ZWw31s4`**FEN7Gb?y7D@x+bXT zE$*!llg=Bc5f!Vsqmiej+9c?V_0}53LM@Iy&MURvIAv%g2A&|PYU`yt5Ne<+jutZu zi)%XzS37&wh(SM~pgPk0iywt~9^lJyYiF{$n)WaBnlbHyJP)g=(O>enNy- zF^Ea++ju}crD5UeQMu82>MeF!M)#fFn8M-PGnJAH6E6hB;O&>*$lg1TS1{l#D*G>qAZ^5g!w(hIKR?8P_ zZ8;pKx4Mgi1wLg->+;m%23bD`*Bz;Gkcu&wiy@7jstB-$lXdv4N2YbX_?l>Y!sy~ic_0NQ1>f$68CwyIBDIPl+nxplY7#i|cYz zd)pTVbL`=6=T_;#6-cjO zV;G)nu~^+|tQ0rtwwu_z0@bi0b{A~K#y{_DW*(&or2d3cR97VHB}W0A$IHUb(kts% zH04?rU(=?kl#z9Y5g%({mz~B}8Z0ips!q=$H~4COoe73n+xG0hLuYGl!GH4H1Nw%h zmKrwzxAL42l13yS&}pq?Dv@{opXH+zHlFQ%k;K&h03B-DvB=HXBGa=ZNd$97Ep9xR z62N>0jMKoa*mpiV4}c3L)K{16%l?!xv|zCK^wKuJMd$F$U0B@=>Y|Iap zY1d5MQtWh@DR3S1(68EHXS9gWtNUPA`07^JizNlE*ngAnA_;RG&mU0`a1ZHCBHD*( zctUsVT=1B{`1^&pQ$`KG{{Rm?Q-%d+_)agy{o~7< zYjJgk$h0jgJ+s^J_b!r3yG0qHQb78vsAAB~@=G5sGAoO>$J@?@O(a`_e&Lah?1q#p z=cl?dVvGERtL5eySV@W$A~|PIaRhECq_P9V{B+9E(Ke^D+62s3yJ_93M#r#)G z239*+9#xD+*BHR`SvW zy=Ie@>#40_cP+$b zao5%>1?|_^+rcAAY^Fe>@tH{WgN^wPmDaR|u1yXb7A~>UPiu26zE^{+Y0X4c8&!o! zB#pTZOE$Y6s$|6Edq(y=QWzsalQ&H~vdF}q75aDEjdy)?YuU^k*RLiLTwX%v`s80j zZFJ3Z8?=yII^E3iKP48TF|w<4E7!+ema>9a@=@JQZD*OYv&-cE-#d+zUtNFG`}17L zeSX`xsMrt+4IMPe39|4Y?tbna!GAth+Xb!ZCWCFA*E3U0{ z$F~gTcXkkD=Q2edzi!}iS2hyE6GwMF!u!!qn@FG`0zthPoj$uMZMhcJ<`L;QzRb?x z`)bbLBo>wm*LR518K;RZ8(f;E zmRlrGrufni5wyRyvvtGCV|39;BL4t!vW=sXX=~z=4nj9^6N5@>%H09 zxK6|Ep5MOhjB_p@Dvv&ICwl7?fT$c%B&wLil_)rVN_Gq8Vb z{_G9XC8SW?Tcxz0>Bn!wlP!9h^zhZ`jxdSdWGgRWoUy?rzj5V9bHQaCbJ-I+@v*nM zA&R0AMv**9dWN}`Y0m|6aF0f_@4S!q+!f{nCx4W-#9DhVaeWwTdA-B|z)(3N#y@kd zN!KRL38SxG=g^P8JKwhR@WPk))sriPzGuLF4X`5#B zyAj<*!nCyKORV9?Jg!?w;o%ZtlF=Sk(UjtU2@tYHO!`FCV0J-At3kzvEoT zXk;wzv#XcQRNu zUftVSS%~j`*4pOU+JA4*_iU&}+`n-Eop!J7UQx>0tKi>ady~E_QxR%rvtHA)hAD0^ zRu;k(y|HmaJ5LJxfzd76}u_ zYd&i1;FcIOP{|bb@XBDef;N71jK@-aRN9`Nny2{ig|_)&Gj`rTBaMi6Bwufsy^1Mu zQdz`jn&JNd(-F%zFG_$pZY!n12in(0mgg1Px2gSvL3@vy2x5*PH+iIyYg7knP!s2+i#O2KwNQQ+w5_Z= zL;c0v)*_eu*AD!|tsK_l=$g_ZB~+ZBM6Ix<+6~%ZM`a-0wP|r@bB*o{SKHiQTS*`G zoOVS209mpTx4OZhRiyB>IE8lKM*8Q0*2In8R|Nk6lz$xN`_Cu#cAeAP`Ee!8Fpsmm zo-2`AA&MXbd=viw4S!`mI_1L~s+6wDqh?0iwfkQG0Jh~-%3QyCS;(^EtbLcB$L!XQ z%O{|5YW+=GS6#S6IjgZjzCE*YncR1CX7R9M`-N?V>rI26TR*wFYJI=EVt9o`QAs_o zuT%9;nKicJp&*XygRxi`!IEzL*3|eJDEaDo>8OX-gxWT15HZ z%h(0PS|?-K%IO?#_Yl35gj&j`h@8-c9M-MMzdcRtj?Rxno^|;bCuF$~XSe&E`?ef~ zv==huKHgggvz>u5T7>0BE76*Sd1@Ki0Rk)i)b?F#txV0NSC@GBptrGW>)Xjqt(rw4 zl0eF}JRx6DZ}T0grSLUqq$*p^!s;th|R6W--ZHU3TN-Fxl?c zzsBZbVD^uCB#PqRIaEApJWiZlN_v6V`01;<)<(9KP&`(8>fJ8UvbPxcWrXsI6)ha@ zK9qF?0H>)sy>>wdulPF^&CTp{Gv5$nKvEW(RWcH3{V`GvI_di-7?->W-@TvtQMI2t68bWYvA~s=LfH&lF`0L zeFZ>0kl~s{x9#5Pwu2v(`}}3XgB&*&?=sa#RgkzlSD~rbE%K`@vA19nei)fgy^QXh z%uJ_}4{*o`9t+eOY1Z%5H>P@JwttS|!cKA**?gVcp=(KEkz4K?;v2w^mZ_Cm?B~YQ&_&75PbfCl zQQZInv=YfZoZm3zN|W%?w7e9{#1fkWkh-_!Ze_=0L9B|BEVCdTeMm~MKM|x>ftr2^ zByihtZ0vX390U*Si3FhSQX)Qo4Lr{%9Qh=1c-YqBENpSfF;hrok)aHvRDYYK%x%bcAn`h7 zX9C)lj=|&Yd|pB!eUFxQiHS(zxxHw4k< zgKCo)tv^j4Yd5U}93+7j-wS-ULH!|NS+*y@^ICr$6|sH_^|%7ac8BEaXi`zr zu5J(*iAc=yNh%NiK0D|-*U0r-J2p6P%C@;VjjiS&|7Yoi~O{Qm&lSs(gt(8t4xi|LBu;RM$J zeBP`68tATs`y%$inLWe#ib9* zHa^t<0IX*P$shj!1F!JWda5hg&jbGe{Zq(){O@b^@c#h)Ykfb%N$EppW8SfN{5xZ^ z_85!iwa!@FEU{ZfG_%8SfO?FGXnGoNO?<9Rxju@tNkM9M?o!LNudT6sFE6j9_Tx!q zF^30s;CO}v4xjPT`x|g*XmgFm=8L7I^w@Qx!bsN(cC1}$`Bgxsy z?TnUi;_!%oaNgtyD!d$lKtbpM(X@evV%okzfYi1;qAtH*wcCU`DYZ9*`X>oX{8s5%ZI3?}0Eq7@fKN$?O zeM!t6__s>va}qp+VXbl4+=bP_x0zwcswXqFN@G5hiK|mz9ZO}hf|QYdUL22dPnX6$ z%!X`W`{l+(Sl(z9P$(&}ua5QAs|m>~%Q4HEy1?H<+&DZMz3rr6-bxqUNTQQqp33xL zy;{9>)rxDgo!O%Yf0w_{WU|-TtWVz~vs?*hh}ku~wB6m_rPLk0G}l#es!C2vO|2}| z_Rc>gcLlxuj7?#iv=T=?PR@ANN1dYPWJ_rmgC_&VfYhCG?Xy;%(b=zEcr;zZ+Lc+p_D+nC@7W>p8#w?WrU zjLZnE{D=2G53)1y;x2MXGT(1(u>Isfy4*#>)f}|fg_Z*8kxK6@L~+NLV@Yw;n!Y;G-F;5I@|Ja%kdqnag4`*yZdU^41P4bMRRj2B#~|j zrxF1Qqxb3F$#72(A_=lHUGThzyOPHQU+r?Yq%kZI@^Ne!QBs>Pg>)jdaFESep{<8x zW97o+yU!i@5;nK7oZMnCZz~&yXxMvYnAIdL`-Ebi2VA$@@`Y2by6TrK^;vU=x3K>J zeTKh^{{Zq=b;2eK_WZ3NffO-oq==LR8mfh*e09j{Y`HofDR6mISWf24_bNU2a9XvM z{K*^KP69;>&qd&sRb>jsfd<<3Ue8@RJo?ez(0XnI@uz;zf0M`LQo<_?OSA_eaEkHW zN=GCKENZSJs8-^%^4FJr_3b{+_472K^O^qu7iGkWhssAgS!J$emOFzKQCrE7U8iLr z`-^O~45qs1Ures#g}!#5P-7m)FqwI5F!zfJ*eSP@C2I?^T*(17b@xRv*IAXOQfKi|!=tE7@__$=2&Vk-5993kTEo@hT8rGHLxqt7zLMyA@Wyg4@3K zlQo`8j^D>cafndwYYp|pc5*ZkdQ?b%YcK6RNEOpjw1D+h+m`~{4)XkpayB_UG*x;k$P2 z@-~@hrcsfwBp9w3Mq?2U3d-C{Gm*FhbELE2rD^6zIG)&s>TBsOts~4^+AFoTKO=V~ zx=$>ihq)@C5><}M$5FgkwN!t>P72F0+xG(M~Jw$z$Td{mvsRY3yZXf-8$j87n@owh2P4BVfRE@E7UTH`N$!XpIN(oWZEBVosj z6)ZsG>Gf-223O0OGchAuJ+0l8QM9p0c*i9sk%$`ygo<$<8hl3f7Js*L%@SS6f)9Pq zvXXiwa!pB8>rFSR#2)HQNM)yQcLM?MFSl3rmOGX(GdG0R!UD`n(cI`~GX9oRWZ z<&iD~LRdf4SZ)KjBc*uMZ{S9{k~r^Xx}HObuF#I#m=Z9! za0ya6s3n2bYDUOY2Vz`gW_i*Dis_AHS?5WkApJZGaA8mK>17O)J1642q_-w`?GiMt zc`Jgnr8!jYPs4o_T~4w4oOe{o3HiLQu}*vdmQ1}YJ0PZ zV}3{ZmMXEPxvj5~)V!c5KPvVVbF$0bHgejH?@49#}9f9`(K{{ULj;@Ha@586Q>{{W7;{VkOCKfoNP<&%ykR_yEc zkOB*|(IrRC3Ex?Kv)eQJ8t`EZ%8v>^08wdY@mZCBEoBkYE4(=R=w5Z@e3k&A;ydt0Pv!=0$Y zZ&>;296t5Gli$dDsoQ8i3_P*v@C2wNvN=GmVks5e6 z7blVUZKhQMatC|deXDDZSRlybr+HaQ`I&D=bx)}EeJK6;}`3Z0nq6(4NaTgfZ;(XyH&&5Y_KEcvzmsRpswlO-Bpo!<|RzrEpDhFp9$49O7JE z%#Rd}?ftm9KIMFfdhMaW^23T{7TNyu6+EdC_B)S3svCn~%wM z1k%Nl3F<7 z`>m5j-$_3crok~?h~V-V+gnqF zE$uvxV)os+6ju6z$a)1HXIjawg{`D%abu6i+F?hG|6U!u5h0W^1TO*Uc(r?ifCW?RWWs!^12FDebeJqD<(gv4DRaHX_K9mYZv zJ;dwxb9*%j1wO6!0lFG#@oXI<>^yCG+!0N1&`E$+BHci8gbuAnpcJo;n(iu2i<4c3 zA*Y@IEupj$Gr@EZqAoj7hCisMj<{^NlchHx`Ah5UY;oS>k~VgCvzq;iyogTq>MC3v zwOT1Pt>8PiG2OCbyq6s-TthGd^2SBs>@XBOfvrRJrlo7N_yu*Q485n0vUXe`wvDm? z!*OE5q@X;H9m${{4L`EX*3^I|{8ffoBg(~Sk>zpI39aI1KV}1XDk-l1C#ch{@1cDu za$RkP%3ou$R+rWgV-e?Rt-iqU6V-T@kh%4+@U1iz`H`{W1zo?}t%kdd+(Khn2vR0h zB?#zLfOOZq^iGuLktcoPtgW*bB^@lXQgM^*SzY2Nt50#}Vt=V2J1>T-qQdP+%^P?i zx0M#+FL{{|IFX~07X9OZs<`;q<*PLNIrtu6@%A}OiSe0hSZ}e?NB1oR$-*{hHxg78 zH63=;EoQkzsF#z?yX;|;xINCphZ$y(#ssZBxt&%;-K7o4voPv?I`w{cX1}rLZ&aQD zqq@jsanAkSfw<4%czLx%APP?=>SN+aS)yw{%`1_ofXk5!_XAfr%U{~cGYyZtA%e#hL6%-5uOuI~v;=FH z=-pRbQ#(F--mYNwT=(S+#!3~lx3$O3fy=yt(&8BlEMC!}if24PllK64*Uw&Eb*wAIDEv*-+ZJn2erJ@#Zfpn(kb#A+0SkA+6)a+pLhqXypWLB0C{q z&E&gk@r_cGn$IrGVq<%1#(8E=-?_|OwFD8H*qen#L1mfC7NG=CYtUAdar)GT+;(P7 z?bgpJjIqDM-g?<0w3;iMX_!}$kzHXj0kHt_9lG@IPZml0i0aU?=}_>p2UC(-ORD8PB1n$`L# zF3rfVQ-FI8-!oiWwf0r9c~o_R^dp&ssK$m;!Fa3qwFN1v`+SJCA&y4(3ESCBrIqE< zUg2%-77M8DCHEG3En|40pzGG8?W9(A45j1_uYR4U=@~l$aUEaSLkQ$zHRC*6q@EW4qS%?R%ewu6E z#=h-v@KGeLPdtbM>fo>#gn;46F<7nkVWGr@8jMwzktGU|kI`E6zRy3J0xK7XR z%be~OTP)@y2PnGS`wp9z6O|t{d6b<=!>f3f&At5wUt;+z%_C5TKj_w>scwwPo zeKEykt|F4&X)f)h|5X(sPWOkJCjcB=%27)*pr>yP9aB%qS|r!*?C4h?pN248fIr>NQ(l6pLP2w2Sax zXFb$2_XbqC5Ug`!v0!oMN{JRiOM1Mx?XGvV6ie`;>+!Y+8d3}kd!MQcGAZi9iy;4f350p56@OfoY^@$C*-fknE1>%{@9w}#6lbCm`gIK z^5?ku=wjEAtF1>URh{n6#qK)*1_t_B;{+%k+@U#d$T@0?{B&W4sVBpMP7fK_wMEF> z-eJ~L#7}D>dE-<60GNyEApZcA=;H=^8+@C5cV>P$zqWfxa~VvSQd%f3S&gwi1xSyO zua#;w7d}T@KL!Kw-(*|b#+EjC_-+;X+)I)($c&?U1|>k!$0o|p$Zgkeel50#+{?ib zV;L3)2{p^Avu<|>q1JgBSs5#C&Fn0!-u5>;khYx-W44<336!q%29dA_^&TLouCGVI$!e<>S!a8O*`tE?{bt6${{X5-C9|*| zJRA^M5IpOrY)l|EvKUIRHZw!aa**1`I>e^CkcH?!hKxVaU5-hG!Q|wQOMGqW^Ijx~ ziB>)YZV1qpyJX)!2;@6YA7yRtT|)L&fP*2(UJH1BG*EeO<)_XJsrZaV=W_PFo2|8z z8Ief^?I1x-`UaPC@H!7^YW(f?2ma*kn}Q9(WTteggqq=FkB`7cHvM!K$sOr+=!~PY z?|3p^C8#5Gk}@S$ALamt2U^yvHa1-VON{M9M~^C`)}%isAHXQ4k`YI3ktNwfJ2#^sR7$kg0ytfsy| z0j5?!bY#~0)By6uEQ)sbCS-^jewES53xhb9s$*K|4sH7~6L0Qk zZ{Pt%eSrKOK0pmoQ-hiAwD2&rz;;wlklWp@?C(MmTVgzeH3fbeIGZc6&BthAV~u1H zHH>wt8;6M0e=^aicktGbH2jn$wldb`3SQf_$s^mAFX^5`Y7#4^OqU}Y?2l{Mv@vIr z8>vp{BbtP<@FW!gk29?8B`a3Q$2GO&zWzSK($!5pnLul)K1YEle@bZ@9w2Ei`=Mj^ zklM$v3v~<$ZzCx4Ji3pTg5X?)ET53$xLK^Sp6ekzM7JT04)h>bW96m|SQFZJ43`UY znZVdjE0f0VIU3eNfA7b&fA0+>qOB%|%i0lL0WHoFXl0d!1!K6cz`Sg=9}+dPMAsbz zN%*@LDl-X|(udUpC|0TXvC`(Jq2kZT5B`(cfA7235G<^EHs z-6TC*@-v!S6~^1!#~hN!?v_WlqC#XnRaxk}c<-qcGm~U#;Ql zD^5liAMQ(xIzsZd*z5#%G5Z$nFf^!@fK@(KJ#>z>{R)#wCAMzvSVWg!YjPn)XS-A? ziU-udfM4XjMy1f{Phl9f%;TnXnn-Wrb@tco7LdkU>2hM^7+246E!=j}z|zLG^j12REAiDT-|{7rGk@Fh@?49BnGkz~Bymih-`ob> zokLQ;4OVz3xhrO*-gXHzC%NL(bmn<}2s8m-;Xp zk`{DmsaEz@o|ir*x>k^7jaed#CNdj& zZ6FFAKbQ{zUWY|K0SLkVL$$V!=3l*IELN~^ndFr~o=LujWmXMX{58|_zD{k)7_QUB z_Vv}lgE4UzvJt4)lclXhIx0Qp3$knVI!Ni<-M`UI;76_u-QE3IW6uJf4YpueYaK{dwZQq*Lid@Tn0m7 zd0}O37j`wiT4hB&uX8obR_c)QJk+5oBpkXG)4SUw>Wx&Rm^I&wF*lYtZsEMhX0fLy zcQZwZvoP9Sy}OWo$sjwQr0>?6;`*<5ZkgGlwN>Gm>z>TDx5-`IcK35gZZ5>HJ*HYg zG%!6Vf)cV8;@h3RlcuY)?3L9dCk>4JnSimlw8doYvKRRsuDCX9uj%MhWuu`de|r`fyIV|*_BkshmgRC6@MpUZo&0Mt1{H>1`v{1xRVgV6VLHd}srBz5ByTArVH=Vaz`#XFU zt0B?^2n@q*MraK`HFApA7t)uscw9#52;6~6%Ap$~AR9)$)T{PDtRj(!| zySvx9u6umj+xCV*VY+JHEzx+fkUc=Cl>(kMq2o|BWlAe9c?GQh01Uo5>T64htnwI~ z1=Q>~ykB(?jx`_<@m-l4l~2^XcIm3|B<$RBc2W5A7aio#+DUPqpOBgyW!SoY0N3H| ziukUb%<@X9#|N5TUE-yhXSBiulaVr;+u=YD^Qtn`{06C#=qjyt%`a=;ck5cO`+m>b zu(vJlJ-0Wsohz_ql8NJl2 zI=3ouZ>P^wx=sH80i(1UoOVCD^7GkS;Bt9@)nXj!9DSjeO^RjE%#jj-@- zZr)BlA2W4qm${DM5jmM-j@ElsSy@k3j3X&gUX?Y_pTVV+Twth-F7m)JW%kT3b?$>+ zzOH-I!0o4(;FX0LyI#+VMT+9~>h4H=A?_pgA!_bTRMeX3)vPQqY(>xE^)V)24Cd-4 zFYYbuEer8G?97cqIcvrRgTvG0JR`Mr;W}$#`PnoB$>MW4*ITd%4FS8WOxtAs}N834nA9U ze?!L=v~I2D2Z+#juj4j9$=SPaykvmJ`TI1qsVhC9fG;3=6*XP_b(PohHZ09v_N?u3 z47a(S-@Lhr$%Z-Z7RlYK>f&LPdc6HQb+hw>If;^EcJSM1@3P{UffDm*ot#i#rLURLdIw$ zZN~gppQ~?%sP;bzky`%%S{!405?7I;PVUYNh9isnsH#ZwBD4odotJ^}K$-5w?ZNED z-WhuzJTm>(V`%7!{yUB3fSbH`$Ne;a-t_Wj6vj~5J!>O?tr6Tv#rlH?utP7bQbpG)#%)UP#S1{{Rgt zx9L`;a8-TVV!#F$*!#HK>3A=oabGSRxewP>cBvaSTOX=Gb|E)WiP(_i1sj=pC)$9b8`#MY^`9iy5P1 zPk;@kRbQZXx0G>gBrQaq*b40JENA>HT^K=-gvQ9kakzn`uFUgA8ix1|T56>tJHNr4 z9it4)Wy@x)Ag1LF+$`jI0n1sci=Dh9(0g9rwQ%us$4?d1BG%P*#d9y@g8opp4gA zM2kseIG)(GW%u%u&MUKC3h(|<&8)2+254a%@x(-ZzwK0P(g=g{9&18rrEJN53@ux~ z?i>L-eW|5G+rfJfNd)K;aeSdu~lCl%_o;~x-%zoz?|9<%U8Di4Y($#`sFbINy zAL#E4qz)ZNAde#v$B!eApEz-xj)94Rfu5d$_0;Kqn9j1EJ9n0qo&7wwFz(;kkZBMEuh2{rhODl#5ExNR1rWnkhlXxZF{Vmf;Z+DG>evklJgx)l z#aKdod^iZAtD|=uf{F24pwUHeG|OX6^y5-OEE|ddvBSmq%!~AdN(teX^^UK^ED?2e z>=1Np*~)jR5Qc&iN>CUvFhd2Zp%k)2!60)n1_)v`Y7;X>Llu^2B*X++!n+X#7_gis zgs9V_t%u=9;|lmPx+`@cKA~?Y0-7lUs)OLA;g*OZNH~_A-nr7Tl)$8yhCyMY9ZWXr zYvput%=iL`6#>H|`QU^?b{zbbhA_mcj|@*L0Lu`>EYT257lT3AfQ4egFN_sYh=v|w zAc&781EOQ)gCK%FD;+!CLkxzg@*3DBs{kCSkEk~tH0`DnW~yU{36~x1#wgCu;U|gs zhEjHO2>v<(-U~56$TS2{A~wPjVyMReNg+B@WI7~f4zWRyKsQjgr485`gkgoju%-|@ zLPd%>e0|gSQvw7ZLJLENUpbhwpRkP)fD`IsQG~im4NI`5H3Xw~ zfao0w8L(T}ZUjWH59HA#U>W$*>X=aU4hVCgiV8SP42sFX#2^$h7W;WTwT=9@cjv!* z?l|=y#MU;Ba<{=YIJa@=QoS^Q2sAJc4${|0($(Q0?Az15S7)=5S zqO*jU*%>l$CAWT3*8Wr$v7y@9qG$}(&K0Sgu_^rctjwkmw znYZ?ASK?$MTQFURlJ!Kj=GFU?6w|#3&Z6i-#(4$Z$d$%%MUbSqUHt!LJeE z+YY4&Bt(E%UK7A0gb?c%CZOopp#LzS2ZIm{5p+dR0Y+F1!dk)$gqczZ8DcEO=*e7i z>ZFn{DKu2ILn?~A8&dPUlNhQRr0Aeor%IU1ATVU~rdfeiEK!&O$Wn~ap#T7z9s}&3 zPH(PJ0lNx+%Ll;=>Y%F_h-Pg#E5roDL399H5EB|nhbSdr^x4GtaC|TaxWFqkj-^+h zk4{rd{?qpJ&BN$9m6i4FU&S*~nTr!yi_5!#8FojnyZJJgPaa@QGZyU)kWiAADqjr=bIA`~Fr1M32Lvuhpfa z=;|!lQ2ZFM@&8x%5F1i2f}Q4AAfVKl0x9Zfp#&;o2ibrDL=Yr_iM=!l35S^AC^|7F zAR;})S41E91{F`n<94Lw#mt-@D(T zDn61YRR2P%)V$r4JMt4`kz8Z@B$aa@GSuS;=5>e1%CkTqhdEZTvxJwz*dcaC_6QWs z%f%RI8wDmP0FFQl`*1$UlmXif!5INO_@Jw|8Nnk6qYy|@b<9|xn1>=+HSAF?;33P>B&o!bDHb{&dP$;tU%Wt zqE?m)EcGB-@?>C014dzIh^d1rF(?dhNO(aZ3Un)y`>`LEm|t?R|4VAMpHuQ>Uxo*QQ8=Z$02vDF62FR}LqVoP zaC8A9Ef>)&#af3m7rqJv1Rwxc1_Td>ATeMiI02Xrf>^2mbRY~8 zFJt8XOy&-{w@SL>Rba}`K=w1bBMCXZ>sgl<#7~K|j4Dy1{a1SncO>(512%shg(b?W zF9+%r@I}-+;8fAN?U{gi7{k!vonA*5dsM^7q|%E7xo{fXyHb) zVE_UkgP`;J*)uEilM6rhcE8NcyYKpJ|J*cwpnSMbeO9q$?5u1Xd`bCeg%Pvc!=ze4SFcq1wJT|ZShTq1B^TJ7R z%L)|FCS@4t31&(F(eJ7U8;XwRde@jB90ph!LSo>rfVzbH@{qLKH)%q-ga$1VOz@aM5~*{}Ls z?r4(bWeTHr`_G*aW>>7Ga7rlw71h~qddt z6wepRFgQxVdvOmL#UVN*{1t|lylGh%;1z@*0)Q_A92S)MsAE3N|5<0KvT<>_%2D}; zRnGlSp)GPCnQto|+z2&l>`I?}_k1$S*z?@%bt9RY8-l6Dnb!K$7jI5UvTWX84ERdP zy`14&rg*`pbCulRsB=K}zp}JySh?FvRsWkEu1b}+;IQ&B$W5G*J^K86S-;CQ28xc*K&LLRp2C=6!?{DBx0Rw zt71c4ZTNL`vm}GwF#=N%oZO|t4prcw`fJQsG%E~~hJjfCSHywX@CpOFKQg$ys<>@z zZ#5Ucl+`SNhsbIE@vaI{_S)2Q$Ks(bwWq?@bC zJ#Mp_{R#P(Gs+v7tvPKG75~CVJn4BhW%{4`IJf(?x$eADq!L4U?p70Lznl%X8dG@3 z;Z<|rXR!KB>eys<^Nw43qfMsUr?0)=HK(29C76RqwjN~h2KiiXFU19NE0z@UAu`U&T3<1pw&Tw@0_7a`O+7olVtNXt~@9z5__$=eeVG=48TPrWkdK2Gv zC>)hfc1UgUx|H{ZzCJSQB%2@El%UHrODoRISW$E&Y`LZbJ@9 zt*|TS>bEUvxPL+4_0;DEuI(0ADSXqV)%+{Lfm@+x616$|RqQBAzS-og@-GhN<0ZtLmkSl9X=T!IgAeE{YO$cM(kA15x3{G zt-X3)Z0BF;oP`H(Z|%4bM@%wG7U%G<&HpnQCiRZ`GSRnOe%rM;M?uB*AV}pL6`dm- z=Qq@l>vTO2pGiEGYI8v@n{kA!8X7=JUo5;>Q_|>ZpSXPg%e0D}mpGk1grid_4iRIC zsS^X4-x5TTy(86;!>z?_)x=g_36{g>+qXPB?NSc6cl$niRt0#z6zrX>v09q_yyCG53YzDOh%9;l@rQSKOd?_2HXJ-<*`qz-Rcz=n0ZURvAxKX^_mD zY?UeB`o&f8MUstIprSS0?`F_e*>?1eP5FdCs^Hy#DE}Hw>Xo+LUW<^aW-^B7Pgsabn5Dv`iXj(zg8Hgs6TOFDnkMxtCFD6l|03bQF$Lv<+c~g*V=z`CbX#JVczTU@qt6x zu_>nz6gvw+)S>cfndIA@kDX_y$R{t64VLW=mS+q?W!+b|gU(R8QmZ;bZ+`5o+WMTe z+k7*>Tu`)7I?LNvHhpo!j(!5SDmwV?o_oLY(z=k+Ds#C^R%_e{m8s@L;4b6DZOQ}r zL+gMm#;!v zWTQBRy2~Cptvs04(GVS8IKOgx8&H6RgKk2W! zbMJ=k{i`nSCQLUKhvt)wzfR;xwAGW z1sWUMxvctvZ*{saw*)GFbpCeg-~-j5QI;%!KjTG$(Gtg0=bs>>?Ip54xi@b^Ht;-I zvZS?EB`dI@KTzTGMnZ5i$g<^J+pfBI(!b9J?B&%8KiUF^aAATT+yoW$ZiB#vgalrh zrmh`%HgEs#>&(ynz7_Oq=j7oK^zI#iwZp@|o*dcT4a?*azg}~>#bsmEw@>*x zI1l;V=}*m8F%2@18HPx z=&J;c>`B)4v$a9s)Pn)H42(Rp#-itl#tXlLdFrRP6)7vIUQCXAL_O^r-*{CreCHa~b~EW;^oZ|I}f&Q{2p%9HEF z8b90pr4Fuxx@u~yz6w`BW8-83+x_+x*C2<)JDcW*N+F$zegS5d-(T(o?vb=ig16@+ z%DeJU`Ku1MQw(MNT@-IA+-~#!HrV@>xXbz7s;WBe&f1)sT1yAdy;)%lDB2)kSa>+Q z*_czvEindW2Y4y(^~F%h3&qPn(+=#7KlR;kSKi22nqDj{`(rpNb7-fLWtf>?x#g4C znm_Q>-aawG&{g5Q{Rzem(vV^MDjsCG~Rcj1>D7cjq`lIhrQ|cLJXVw{7Xm z=A<;*luLip)o0V&S(X2#!X2bM=4y8pBb>wlw}im$Hyp>da()5SE5Q8~-`SZjJ6@}M z-W18i-B6{2Q1%xxk1wNrE?F6pYru3)sSR0bmwI3 zwVAlKE5vt$MvY6SsHQu&a@PA@?)=P@G!Bb+b3-of{#>*ddCX%z-$FZ#Bhq*D-;spQ zps)9p?L6yWA7xHx4^UTc+Vhfsw$w(=O>Or_oh}?)*!5gho>hChmY+AjVHI}aK|q+# zgXYQ~FAx8ykBkpb+RI(2-c>ysM@^KeBBY zYO?)n7rh_G+ch30xAZ`ZYE0$+Q~uRc)oy26`Q>tbi@JeF!%CiZF|VYen|#*j)Z)9J zH|d^@XC;_NT~nOop)6_ebBoL^QuS9C2yPtsXNcOcQtncJ6t+FjZR!vjkVAA znfRxyWrkOGQb}LgpOT(u{}#X68yFhId%@mc#8O!?FJH~dB9p%>?Dm}{z5UtK?+$$P zA5P?6KX-We{s(@wRrNyW^~5oDi9pWzD8`zQnP#Fx^M^vio8bH!VKqLiF!QzsSQ=*w;7q*}?_`*$q_ zHRnI0Zd1ATRlArEX1|{ai<1!P*na^|TVD?^rr))+oJI!N2X* z#(Ankxbm?93M%aZ&s9F|3;gB|!yQhAj0i5P-tJ7umor9ve|qpM(E2PwNoe9Gpa3gvbS(`j(RA(7o-|ixv>{wY#wU&$F*8T<)HD( zP@rK5v3K{NZENz`lIQEA_Fr4>irY(6v$xw+*M|K=l^6T^d!hD>Q<*c93x_^owJ(=` zA6xO6Cx)tYx)#|R=S#BXC0?*|mk{-o$*G#FmGtu^D@`Z_9b|IK8yu#z+aKHG&05Jv ze5t-JTVQHoQ=R zSYK;rJ-?~ib;@}%WD~vNDX~LtKkfSVK-pcbs!Q^d*UFPPRpXfh)1$wTTygJ}$UdH& zACKDSFOH2W*A`OOC?Orp!EY*deo~*UuJ)eRlJ{{fM<2*;i0j#Yl0<&nJci7+m*4fD zj~ZL;#s75sGHvhD8O+n!o|~`knO_u4eG+u<4e>gxmg6F?#2;>r5o6w3#(de}`N~Y& zZU6GH`@xDJo&AN>xAPu7xV~~!TPwGd9p*C`A6jeQJ14i|^mScD)%Iw2ZT_6sguaUL zg=^n7dQanjP%N-@pAXe8Om4k!{d#Q$?_1e#^P4B9^TFF)6;;go0IiO|25N?=a8p{j zoE3@yB?iqM%So{`cqs<{lz|a3m!NcDudUol8d;f7*tY|P1>ZdRnV#UI&Om#!)gybC z`dxduwC^D~WdB5C^mA7Q_j17+?9MXPuEQkn6NP7YdE00CwXOR_1)uR;8~miLEXe6L zS7rwB?Oz)PdvopFZ11<)`Noz^-01dzUZ{;}oizE}6DLkL!F^N7(U)~Dbem}Li zG-qKK5Tv-ZYrPPQYPes~pg0K+`u#wpd~P?)-J{Ep{ANb7c5-mSzO+BQyx~BpR-Zf^ zWM_AM;^4q)=iq?rTWD3MmUXbQnced@wWaIp{foiBCAIS`SAiBl(G=9nA-;4_x5lvY zg8>b=%CQiFrI?9{7z4vYeA&KFe;8Ty>|&^@^rW&UN#)$sy~&tSe{?4~_fx)&XOu+H zJgUPbo@GefsAkKjWtzA$8R%6WkmbJAEVFSYhsrh=ypwlac$YdVk}2Ua*Cp9GTz+}Z zAf&%MLC9^A`~1hMmj+tD0#Cf`I_+9bjd~gw`z_DNEad25s!Z9r>Of97)qBYIBt}?g zg>8JX@+O+;gpu|QFEgVCtJ(ndu~Bv1kp`n*jThJUd>6Mmy7X)QJWwmx=$62ybPI!w z1JeK-yQ&cj!A+4cI;1cRfg{{lb5GZI0EJPgp%4XsMJ3IA{&Beb+<$)0f5g>xvq`z_ zaKCNKXLYE4-VRNwd0AEVqrX;bY<_0>uz2xMH7;{_C-Aki8#!Nz!!@I9|7)w(wNNhn znHpE|^?chY$LdK{v(C-vsv**+uNJN6@&Y(ESF@m4Wr{Z#vCL zj6hE5YK^1aO;1}hZ8;NHooB8__^bwzhK=@v7e6;T?JwHbgYc|0{<4-Q$nb0If3>|x zI$Cj;4QvfWcL-Fd0qe{smIUcycFx#VKoxo@P#=cSjQu+M`=NiK-1*&umQ8!f@@4-o zGm3k@OFQ_oJiF_kCKH8zafdyKH-780HMTKHy&trFkf(W=_aHw#^q=-nwPM z@jt$hYbigRvsbGY#uu_uYlJJ%MM%B|OMpF|W~+R~xEJsG46nt%y;r2qR;yOH`ey!6 z_1XC1k3--43nH5imT*8`v4n#MCP3T*I)H!y4p*c}fCwl!MhwERv$7P>1s!kuugob< zfN0fvOO6n7-6Cb%XX9w&LSuhxwkr4UjsUk+GHf~U%Qtd@v6j_%b2CvT@Z)@~lGSL9 zgv;#t&e=ai-CGk3??^T5dP`J&d7o3OW0&);x1MbN<%8I0-~`cbB_p`> z&5gsxi*s_yFOn4|g%e7i(g&iOMrvPLZP~Yl+8L9B|D<&91Wo_~8E}q>IvgC(7)%f= zt*%Uu!JrXnR&42GL_HRE6=KHd#aDUeBJ}_%ubB?|CxCxJXGXrc+FvC9w0#-olSq;3 zBKaQPm8l(dJ3KAaC6jNQo#@^#r{q)a=e)C0b@cN+#p-}NG`8yK`qYxD%CA3b7kABy02K@?lSL3AY+z9wmYn0PK^`=fafaU-? zc*K9@aVAxrTY?ED9hA9YrXOgN{P#DkI7S+618U&30ywyYBWbt+x3Z!jkAdD5I=}!w zbg%?O3H%}W7=bAQuPh7r0TcEC`(L*K2K8vgcLWauT?hnAeRwIL_9|HjU?zk$wiH-a z3uVMti7U|%ilOqPDgVcv) zCE7p(1Oa{RDh4!N0N%C*g2IQGT0nyf=m4lQ0e=sf3j@BDFj(z z!63Y-0=#55wbV-k&!D{}1E?3G1F4;cSj2y0v|*SAP#TPu3_zcia0P7u1vnA3oPOX# z6QD78K&aw^@O-K=-s=v9aNR-P!+p1Ahqgz{Cf|I)Lx+!5@Q1FeeOyz!cCl zMQiE+hj^G6p!%578VGa{9m3;E3}~FdmKLxxq(cmVwFI3<2owUy%O;jo06Kth1qd)) ziGg4aFoyylJg9ymY(Vw`NlaGA}&g2*8j-rrrN3iyZ}MAsYV&E)0!|q$~K3zvqJ>W;Rw9 zFf|wg*2T3zOc)d$L=Tuk1iTxJ^21S_Cw(eVVxVb5Sg!!M0ATK73jU{BT)jgDZBAO9 z7UuYr0ZVvX0VaouIzW6t{fr>O7a##8%_PPU-VLThumYEZm^~o6G#Dez7T~*d%$Q?0 z10T}ZN_q$MHK2JcjR^vgkN_GyU>HDTf)~Iw2ypNOF1i8`O$jvqAI<I%RL2tIf? z{IMkrfuaLEJ`j#2iDqS(m?eWde)1Avz6GB)g1Ub0elVKjTXbft?3wH zS3w{G17HZ;NdgbX0O=vcA77C?gsd0pVoN=4z%v z=BzMBum|%BfElo(|9k?t5xCHR;HJ3&P8bl!1)!$}AO-OKG)4~S0fi_OMHixA$P7jZ zj)D-tJeD*kU?re5AOuhV22MC$v|XtOqJt%fILL^C3Q-0ov2IK79)*FJDxQXy0xBJN zg9ELr2m~|GAxCTY14nhBHVll`c!QvYItU2?!1DpiV~}(hCcqhE0ncwDkW_+(OdxhM z^H#uv*5g6IVTIwZVj4hy49vltl@b0LL`m2!KCmDgm5Okkuej2=uQ24i^;I z(}csjX_PMV>P-kqFOC8JP=uj(V02&xP`ZgC0NC?E(Cu?Ygi4$kh(_V1ARsU>gcF!h z$nXN776^3S5rCK#nh-sPoz|WOR-yyVbVwF}R~(R;se_cj2&O2p9r>41$A(OdtxJndKN0KjI9Z z)Kyl2OZRXNNNJ29R!AnP8#Haw!9cJ?!heUio&O8%C7y2G?WOlBWmF`-?FefnMHpFX zhLU$j(=`pLYLkqq`epMsiWo9iwSMXgmadEz+g*zKrN5i)oOc*>SKGLd^|pMU%&%QF zs}{ND^VWVlUvC>DpVcgAUSE~%+cSUsn`~&3D;{bicsObh{8~Z2pS#&b(|%P!r=u#S z(TKI~%0khDM*FIg{&tgcmdo)s9KAdJe<91kw?D(!nyx(;v#%2Q z3$e#NupE4c?wDPp#5Z+WlEUqdes`eW{kA2c@6JR=+o8u2zwPz)kp$PAH1DX3ePojy zuZ{~|d6sHxV)qZl_D{7(eSL;o{{=lI+?a)5Ki$W#k0sQuf&IqEuT%Qh)BHNB8mEMZ zew(JR?eh$KhO(u7;cbaxF_F6H>0G;OV6tL_kI#^mRe8aE430zLS=6yVMHzRM9c7ah zSnvs&Dapwv6~1xHX`34I8#u{}vP7fePcrVx9j1)qXBvFeiH?TJW7(Hq=n1~|FlCLD z+7joybjf*4K23k;V=jk`%$3EpYiCR?7Nv%N5xF@AqI9&i4H=U08TbZ)0dSGyuO{wL z(oY%2Og;YWFf^00w~&&`lScd?NT<<}Mx1p@icz|gn_)6gBH}C>qg`L*b^g|a(ogkn zxlK;mN-D`(f;JZK9Zep8Y0m7_vQa`Cc*L>}KNm_CKD3Bqs6EkqlC7ERaZ#dX=E1q= zbNo8>&!mJZ|0MUuh^VqPOUD`Lp^Dl!`i@Y$3y}hQ?|*X@eQ2_5dWR~CGx*2A-~r<% z_4W}PRiLM5AgimWm_sMgSVSW0!flkbw#PjwF2AA}F5L@_PLh6m24QFSt2)3>$OenF z(0W*;ZiC_(=OAZwBPl7V>J4`mDfJjs$ra}KlP6DmYOd{1lO)}_9&gDe2WyIDRp&>3 z|7jzzZ$DS>!or>tS?>DvzHi-*~Uq%(Pn##}awOr)DvyRH8J*iG}Y9`u^oSRaN7G>$k zKZZ~AZ&YCZG4b|RiBVE+Up-g*^?!NxB-eL_h5SnVESpSbVnn&p_8R)dYw@xdUMDT| zkhqeG$r&H%Gkls;SiGfTI0eu04{GY;a%$aqHayj*_U#S>W@`rA(r`yr9aCE!51f0S z=&TQ{%QX2V46(;3d0l)Rr#C%ppsigm{K7!TK$CcKU6Wp_hE)$`VX|C5I8YohTYDx` zN$t4fhjBS|8>xMh=;Amh$@Zr#3nq7(aAeo&s^BRR_31yYu}a=bW=iO_+z3AbKSzg1 zmKan|&lgXFqGZFT$&ZuQzdlNQRASMBSjwL|y&76w2Bt zB|`Vx8UHUEK`gw;3ycBe#gr3q-F%umEmBveT?=kPvQiO;X- zCQAk>V_z~L=Z@yNyq4;YczyTj=V<);SyJxllo%-`mn+Q~&Q>m(L=JWBo*bHoUOv@h^xlAB zI%amSaN@mFtDudEhKY{O(zjuY*$-3emmfU~78{lADa>JyTmD}B-2b0s^@Nd<8#w}` z>7HswN3-c+61q`f^p=yB(im14$sZ{be{*iBdkk7?fR zI=LRkZWVm}Yj7~CM!3}7#OYkUcQNm&5LM>{BfrvstrQMB>ABo`DJd+cJm)OwtN=FQ zy@_M6Gk;-*)DNp<{Q4l!JumY6hrNa)o&l1J^pOdR+AB9Vg`{^ny8O(V0_HN**D;$0 z^$!N|2jaikt=7uDzKlPSbx6r!o0OWzH~Vz3hDbj`6(*NmHVG~>C~Eg;7&K**dWt_6 zeJ}HDL$Z_8RN+1GRhJl*XfF2H={}OsUPpfV_oN=n+3|(P4~|im>BYCpb}RC#6HUsR z4W|5?nH~zoX>w)$Xl7RI=x#yBmT{l)ENN{nMgslxf{mSE{X@mlvE9n%dJ z!PZ(@PQ+vvgOQ9LA(d%Ow|GqYd0&rUK{07*1+>+vUP1n$u~#lmM34F|23O%2&CCvu zJF<{QawC6^s;+L%OZo@7O(S-ih2 zC3UxVAKmrJaqm;w5B*pz9pi|!jH=tJ3tuJsNSx^4kgxLGE%I+CX5(TzvN=1lgukN} zT$N0=tcb}Qw{`C87B=*Duv&~14g_1wDMf)GFx5ZzVZlYg zlUYg{JD~@|0f}!{@NIVEb%TdGiK-9UEVL!RUG7hmhJMcl~QRvF3jk<(r0h zODrbrhP{{i8>a?LS=*YNUF5#tOY) zU>l(+XOGTv35c;ivODLwDGRL7wUcWT>zS>^0(LDncG}D;d9A^6^XJ-_DE<4~SJK}0 zcMaJHX$cr;7t+;t6vh3c)l&V3=O}X?|2SCX$zH=x8|Moz#vLbkDn%EH_l9IB0`Gl! zN}P@EkocQ=WTiY>@4lVkjbx0kvirwig#UJxZA^VXo_oV@(8S#tXry7(D1^79N+(8# zl*QCXn#yN6H#hAdE2N?>CL`046U+I-#3Lao{Q;7~pE7fXSp&zORDhyqYY(L>V$AtR z_f_e#!Jdpk;h4LNO2ZFzKdU5S`b*B)-p|0jC*C{8O#Ra-{@5eXM;((kDs#O+&y z0@9kV)vq^ag0sf9g`+9j!#Lw-qkx%~g_WjP^SKxiVdf%RC0+q_tY${Yg2J|ci!h6H z!?4Htm>UZ|e~^<%RwRv4NEswwGskkK0~+s_OW5ihh$wESEJtt{*L; z^MbuJMQAuyTAhfGCic{y6hj*{F5b~3;-(xk*~Q1Sdo#ZGO(oyDoBxkvi0Iw^1{W=L z7NPok_cznbrd#etfs=+uu(KGRSoC)IM5(J=Zi~aPftHnHvXgjX>X?g*pR<*t?PZhY z;lYe45pS&vMP{5lBl~j+IcksWh|v$ZrLLZIeCE=>5)>(IH!s1d8J{Ih0pxr*pYs11HYEM>Y>T<{8NVIuy&fkqh%W@a(?QRLCTktO$xGD zWw&B8y+^Urc6~xp4TJP=Kg3EG-sXOFo8ORKFZSGC(T4@g1s4|uA_sjm)2`?#7p#kB z;)EObm*K_S7F{8gu`ugGQ-Dv54!Iv84&Q{N!#f-gOZDudaG%02OL%Lrg zdNTi)DqC_$$aE3wZB0Slt?wd%ufvv$?6SEc1JHT zezJIH?Jb3=(DhdL&V@H2K#QI^gGNJhZ$Fll?l*lo(x6*={3|C)fW+!yQuN$WDG<$a zZy`b>1(nXc)2Bid(2II8H!=Q&G&iL#d3(x}JNay%)00Kg_%GZ3rwTIzaTS!@&ZEnh zo4ZKm;@8V-YSRVz^*!C46BrcO8c=cH&)UfPqrS5&q@3Fu9&Y3xNE;)5wW{a<7 zV~HP?;^GpW(2dflUN$X_X6;IRg3dr%zch(CsqNy!R`LAL6w03q+D|lGUx(;f?8OkrmP^jM+duYJGCxgp7+Qwv zvD5f!&(@h3fso}Debb;^$vgLiTSXTKepaVSYgD-QB#qe`;zsH3sR>!(_urkL5pnT9 z^@T{}c0Kb#-*h-)U@S-Xb}mU8-_dZyAfa*j+5TwuZ{yUzkO^HXnzFY*T%oXBc#qQb z6;CwFo0slbTxk?>zOlAfJVAD!oB#K#fk*V?BGkDU!9?(TeyXR4C^RUdEAw6aV`<;C z*=u_!Ox$-a^>EZ>PUELsG}a%Gq);&grMV z(w)u9KNFSThz;j+Dmhqo6xhKrE%WmpR-WT*Pe-3}1%o&P{BgnM%ebPDzVlu|Ta=8} z#+WAE^}U2+6r~Fu>xl+I9@f%I=%;M_FKE4p6Jt;f{hH@e)iu7lubQM@Zt}e{o4+6LqJCs=%%XT+QHUz5Ih-bKw!9-`eB{hg z`A5xKs1OBiLo}I1gkM_tty$}2*CKN}C(kq+{ElOuJIi>EDDF(JQHt00n|BWjSYk^`A&}5!kYjNKBx-d>3 z&%*trUMu(9l$M~nCcRi;_qr93wVX9#LP1c8y%|L^Qt$5j2d62dcgsgwK|H$td#uRb z``DBR^H+$J2XXHx0(C~VMjGCCp9}TzpP`sqcl^USF_w`Xt$Ak|+`@fl8Rwc&a6y-u z*etddcAayZI#+rW{-w>z+1Z{R1hKJXm&6&abv4`TR$_7bUyVK$8eRi8oFPSf9qZ#6 z;$K%D#|Vhc2!ho75^c~y+-^R%t<%#N?eTUj+Q#H@A4x{IV)Z#CqvY|ZmN)AZN25r; zN1xW2F_bjKKE35BjJ+cv~O5xIa zF8ZWFN(wK-T=MAc+~+tO{<6%ipu3;>J7uF?)Lo4wo24CpWtwrYWa}$R^GpR?W48*E zoN~k`7xjen;4_?^U7YcbL=ciW=;KVwNqUjZtd8_e4=|Wlf?5P}C`84GH5={IC?lma;4MHxcP#f5#ockd>FP0_C~6{F=HfyO zQRGVAe6r+!Li&73-djHL9NqTo`lr_N#%6Gf{}f?g-g>H1WT4Yy*L**tXgscIF`r{I zmwO_r!ezMsqU4}Qn_!7h=GK_6sMJYoqpZ8yrFlQ5eh&@&-dbN7x!pO#IX`vZ*;$sB z3!SZktft15X=$!u;KlqS#WLWoWz7_ADlN?#7s)R@z_q@;_VgT4VeB&Q3n~6| z6ftRW*jLxU6kSi(fPUN(BUsdIwHBul&4Sink!cFK23Gb;4tEd z--?xt<(JY=2i9%yMjxc|jB3n@$2W?A=mmDdjg?^?7#b1Nidz|SeA0{*Fy;EQa^`-O zakNz0hfH?T{8Frtqwwg38>Q3lw{;$+CsXtfmKBqJHjtk*I6C9CQn8C6Q(~1XA`6uR z`DG+@1BojZ-O$6&AyzNlHyn%ZsO{SuXdp?SkwzOB0E7B`+ z@F}NhlC;3```pL-aZjy-a3Clq`Ij0a!5)#yEI7^KPb?%?~&BkP610hDi)1{C-vtp{wMgiCDqf5z;+Dl ztulqT|3Ws&E}BVga&Cog zEwTmnO4U`S=-6UGL4o18UMW&s6gXBr>iY{V4-68CxfA|YA6>kqT~!%m)vqSMi}{m5 zVyy_qjYVs+Ob?H)avrg2$)e6h)AQtHybI*GwbATCOP$$)dC>;FPiHe*8h<}Mju0?z!3@WhDFbGcnJ z)-K)XIQ2-{+gO)qBI@-Q68@tkEs3X>y1#waK%A}+d-3q7sHFMwM?}v+N9rebXXghi zr;1fn^RIJT>7S9_|9;9`&$;>3^5UD^`0eI^F@skL;yeSrtuq;>6fgJk4C@=rs_{K5 z_uf-7B7!1oDaJ-B7jRAZ_wN49HWINwOK+lMq@-L#M1(!@-9^f|RQa%=S~w z_fMGsCl}>lzp+Nue?c*GscOq8^Nt%6xAqyziX(XPD3hPRiO zvpQrWcGUWZq$XDHtu*cI?p(Rwk{^>SyQJ>C7MEv0rRQ8BSO3GLYC^gNl=qA6- z7Njuh(Ur(+=2kF>J_stNd(x9{L=@*J?9)QO*1qlPggbPLElu8udRM&S5PJD^*~6WB z)qI1)P??n-aydmc+u-mPui>$kqEKnobY8G5D!?@EdCn7?_L95bPN2_z6Hb9RutO zxWFssV+bY|z`vYf<-de6ali>+ZxRarV_%NJU}~_xkk%#MoRevs^wS|TmIUo0uY)qP zy+WSo(SsymspMet@I%qK*wV8XI1V1QvbbMb2yUUhIQgbbFX6T7&FY?;SDtIWEj$yU z=ast6njL|!I*{7>e5UBmxp9PK#gX9Rl%6jJR{DkWsS@*nMbk@-A(MLylENy#Rj;L$ zn@{w`NJMyw9v(emA?iYkk+c6bL}?j4!?@c6@`NCwt`8WlB1rjqRj_S=z+oUJI!{w8!4HdTwn@EXX$ z{n+IG4em+7gXemzd45CxEaV0*fY^(rR+^mYI#8Bmwe$=Hr zH&)`umY1NLnd+6iBV(s*Q*reaEXnxYXERQTGogHM)ih_%h^ibSNPK?=tXASP>GNp+ zV0p<66eS76*i^^Gb8UL=>1A!V!;%V(-?2WCwZum9R?E2u@BFxB^%rVP3qejNb(U0lt)L#s>m47+XH*($+{fl0Kx4P0dyumDtRC#Xv!b(TL&I?Dbzq!Q4 z6|kv5#(lY`QT_a*-EZERPuZ@6wNQ@-~2o{wq1r2Q8f zr1&eluT&46$~Ec$c`RFM>9v;5->ssVk`{eSKmU2lYSr{5mbG}F-1Avr+wNmYYrO%K zNefhKN>Q=uxKwrfy4K$I3qT%QqzzH=wOz<7`v%)u(|joh0kTcZz-?dLSA9*``t8#j zoVpDL?f;D;uAPfrlBf0m?DfRIP2@}3MDo^M<>ly5r=;WG?Ke0K&smy0*P*i%4-erImbjSgZDrGOB*qaAxFi3oJ!?U(aBe zlX5ms;UxiZni#Nk)?0h0*X~!vOh*#N#t>SJg#JbteH2y6!sm82ZZ-QF!Oib;R_O4Ae2$1- zE+i>MG0OFiQ_VZ*^#>w^$zq?EZ-!=*;4IH$MV+yN-iHMj0qn&_+vK5C1kc^{z05h8 zD#n6$OQ30uThY61lX5F5in{l(*FHqsGdz8gTCkw1(fMEcadIR9+&VnW+3&wC zxRA*ncnx?s9wGQf;dAcJ4V8---p`eeqk;p2!nZqS^}qCQ3%!rnC6a{ZWKVO_U zV)-RqZE^8p27Rt_M(y&hk*jZ}<6=x?7Vg)#G(O?C>Dp86d2?zLmyvN>QDOe&-$~Q9 zu*GjDSKJ5N&f8MgZx(ac?;r7bKUNuap)CAy7{E1UKw>X1FHk5giH0FIhJqypJK_ud zE<{i-8pRtc`2Lx$Xa2rlOQPEwh+{jqsu7beIM98N@-4dYLshpFUTV{r^VZSQ#$$F$ zOWNciC-3CVd+jzcI#q5%p`AvO$X8ldEH$s)OI&eP>yMFuhUv-ncTF*cMn7dovBAm2C_mjsn5en3}4z6(fS48HpbhGq#p? zjGTSP(UNFj$oV{NwJJ@#DpQ2>`F@jEG$} zM#+(Zv*MynA=jpr#nIi?pUV}uk6BmRFTQr=CVll{dp_jZIaE4QLlBbGP70*#d705rB9)LmN$szy`XS;qe%YRq z|EQYcF0exbc!3o(bPN|3U9=4UJKum(b0`3X<@NMwKrlsX8&8jrP;fllmQYE1pS0(d zL#$}+>;GTw2fZ%!KPs&BOjmH1aaXMUOqZR`$JZjzZ;KN-c86PwFQ0|KHCuibM@W2h zxb=@}b>g=D%H-h5b)|15D{HuhZ*gXP@Bj2wl?Kz!(5>; ze#kCb0M&qfoVTV7doM%%xcQ5E$AI^CZoa#hgwK`QFy_3`=-r^ed}(5wyN&Ir)f1nu|L@ZasdtGhst|5j`<&wr(l>Bm2+ z^gG|{AzN~n{mPL$4b=`iGV^t{qtl&USLL92Yhb+sBOA7f0&|#l6g13f8uxdUr8^L+ z2#U0uSfPep-TjJ#2VYQT(n_=JxsU-tbomQqK1jPRzXX<*}&DhvG@;96ipbsd>Fr@LIMbM4qgBH;G7 z7*)%%(Fw%@iyzuc%R`TFntmlGdnsG`|Q{KO(=zGGI}@0ZwPTJJMa4bzQI|6`Nxkk5}^u+-Xpye*|g4zp#B_VXa`o{ZW< zGX^hD@toG3IWBSp&!m}lTfA9m;=2~9Cnp(}KLYse7RdeEBEX3(6A{T)7dZP7ks59* znRA}Ly$dZ3y-{O6J!1F5l}U6vtK?Gd!QihfG3yt?zPRtIHb38gtpIkQX#QNQI_VwOsL6FrkBNmy~LW&n$%oRttHbaU6$s9|>}$Uz2yRO6y0q zmM}-(&=YiA?$cK=^h|B`og+i*M434(XOi5^-HNo?s$lN?AI*u^|QjYK-@_Q zcm61&E>!2WJ4-h_HRcJA;a)8_{0nmY_@iW7>&E^H|7d zo_y`Pbs=S29HVi%v-TINq`|&8pCQgL3+$)xk3LOhU9>qiW<85n?zPF5C@#^rJGcn0 zC>sAZ9-&HLi!6dtEx0&`7B?6q!gy{5mPYhF(tlp@wADFeNqFTl%fj`mGwP7;uWOd4 z)6~a=EG2!idw_t-pJyFNSjF2p+;7+N! zmfPZOu9)Yos`#sazG$)S%bWNx=m+GAZ>eo;&fb|As|JjQe++iye`Hxi_D$Xix2!i@ zX?p$%*S@)y_%fF3U^JkqrgumoGWT|Ot22@yueqC?8cVT4^QekkDNd%e<3TsVI32nV zpTZ6jA32y?dpuaP9f{MoVr>e4`&>sGM9$qUJ7{B2*wWq(xHV((k?Y|ZgS3%;Q&V1g zML^DeHb$d`yE$~}&H?gA$%DGqF><)=NDMHfgxg&sWlV!q2=b)h(cONJN*D(C`a$#t z6W#~rm#hHvpPZjSr97Wg*@{<~(bDSf7&*->6l>kp7zotxCq`c#XDl|oGI*!xrUXFj z+Kh`Q_W4a?D~_MM3)f4d8ZgrxUs=FU&U1ej+%&e)us>-35EDV#y?a+Q9dEY~rvAe| zaDH^404>1u{bE1?&TTWa{IVvX9}U|P3Y1;etU%B0KW_3@KT@ogf{m{+$qzY^(0tk9 ztYA+Y+i|K|FhmBW1AAr+#Y_=4dc9D;g#~o)tWKSM!n48=L1lE>67hB z!AGS+kGRAM9YW7b2Xf7xD?Xxm9U{UzJ)M zZnM*6zJB@y;Oy+~y+$Yb5RwUY^R-JiL@sYS+t`H7ym`U}co3St#e?FMxm({GTo6(m zdUu{^0s0TwgG2DnvV~@Xh}UH&bW0lc_O6vS^1nY)SGYam0A z8~ewSk}_8s9c&*vDn5R5Vz2Cf zY|D%75)BRQMI!${Y)cNPfz`Zu+4}#DZv ziaf#+aOU}$bT)6h7U%rz#8U~JQ;?J7?x|v2#&sy8Qr=y{VUjJi!gT$tO9XEH<0R#* z@z(K<&Pv>3;LI5j1B)+H5V!6nl~-8(`S}OVhbSXwR{U~+emdw%%f z_F2!@A13k|JU+m8?ba5{eF+>9c;+3`mgCH{j29=OLi2Zx1Pvp>YD9AmpHzGKUEIx9 z-i($W=S4NRqSzyg_%(lkc`lUCeNpU`dTCKLuw2yXBN&%N@F!k3FP1jd`DpX(#A05w z??aI&##(F$T{X9*)3tv-Z2X~VUNJHkyJ42aQkZ>;ts_2zkNveIh`V3t_1l4=?c{}H zOOW{ayq}D2S1~+`H=guBm_T|4xBW*oVzZ1*R9qLm4=0>fF1$Q^`leHsTV6L#!$))Yov*11|{wsM5wo zh%BLlthp!M{NQNn+Dpg9HLKG`2Zx2z4xxA`BP?-dxS`1 z4CmZ6^4sfP;qnt-2xDOf;F<?A69p zmRE1HPB8`kqv~SvcT9i+iQu6Qi8ZEW6!FF}-!$hpR{QDH)|}zr-{Newj%9TUri6c& znV5sEgla{9$LDWO*ibFh?XeW@gI`3VkYz&yFQEmlho}%RB%%}`KoIxjNdJnU{1M@&bg~` zZVu@Y!>j(7EB*@iNI?@u(A}#cU;P$?F33h`y5Qdg}W0Slu#xE8F7%QgkXQXi{`~#M&M|`5) z{aNpg<=xGjU7*~f#eLLG9ByA?W#qx8c;C|Qo6V)oeMdXaS+GT8W`OP-NrtBvRk^sY z?sf+X&ztRwQ`~m|2S>t_zj#?A1N~WBV$@x{{3(7(8p5V&>mCKFx}jG?&;;@#uduxo zh;c$Zici(%VVaqLkyD42OrUiM1JV%GF2_qk(AhOD#^C5$+%T z7~&@rurll(8k-;XQPusnc{W3_ z7+u$$9Z{euHtz43LH(oJSI|A8F#@Bk;@}oylR||Rv2lH?c<`UTnG4Ei8c%iYgLiwD z!lId|$zl;%Lor#Cs_XGjS`Aa^Dp{Kz)=IEy@KlaV8<0#s9$aG)c$`vOmI0RY9(rzc zdyt<;x_HCO#8W&Zkmxu1!@Fd_D|o<{csRTi%hsURl9TT*hY=i%wi}hIa+BA$Q85Xc zQ?*gq&5h8hkETsDNhb(^(SNYXJOMs-T%q6&oF&SD4XLM)Gf6}`6F9Q@-OPJlv_^ws>Kqlctq%) zXwmo`pi(HHa%wP>du%m7nsW>d%`_&tqY0!^`c1;BW$YG44L5TxUy8h*5B_neO@2W? z0a7?hZAQqkr&^5z+IZVqDhH-B9|~`EqNG!3Y{zmo+8hZPES9^D2C^&)O+0fF!+>Q? znl}wuA4r;e@(;VO3|+S(uYU|rLV83_$FRaqSpt_tQw;7H=&*AmocAOOxaa%ELH>JI z2IlF!2^Q8BP1n7V*=dP}3;W(s357~0#kQs!w1I))yd#vz%@3Z3i{YXhKLHh~ogK2f zGSlfF_Yo8kPbh5+hc)i+VJ!mZ+VuO1p4&3Na`69Ez|qq$Y3dx}ZSC+$@-V#?3PN z^~z$^qo4y-C=E)koQ|f!^}}|xjtZpk&z*ljo!*hQdsqP^21aw;iSwc zQA`2)R@p7N49W-xPZVES!fLFrzs4~te@!-La)u6dP?C0NG?*1M5g*H(O`#NS&g!jIDRpcEaqBA zy~6by;TxHe*9omb)BD!`%^CMJB;rBi@A2l=!}j@k7c`XA=e*Z*h8`!4^x&cPh_NGa z`4Qvb+`LE+vfVch?ifcv3Y|fF9-aul`>rPP4Y1bzkLq~lcl+7y zKdNZt&GC&`E3Qq^xLv(}RC`JDrvl|2MzS+wzskotXm{hNh4vWLQABpM=0<^4t^pf| zcpwU;q+@xM31CKEb=9=zi)4b|<-h*1U;%gZzZS@0!}Fl15HEkEGVR4LIzOpd&3Nh321w4^ffc z)~I7}8OZ$08o)%{eJlm%RaH}FBno}{L`fvX!~l&Cll33s7(8PiD}i)i?#cxLxe4F_ zMsdPk(+ESnBzi0#P++|ke)h@(_ZSi5(2<91>U}6?FLeW+k3|qBlW^=)RvireI|+8@?nCia zsYqCT?pUrF?1)jg$NPC@QIR(;BU7B%mpp=4MZ2Y0@rleXms9(Bw& z*QAXX5L7L_eKT2!-58?l>dn4cQJ8h|@^yk)UUwuHMFLl{z|EBWz)3qt!rQfAMC?%@ z*h(6BIJMh^pq(){y^>sLvaPzClLtml-9d!T*JfO=bQ%Pyst(~USlAQraoP_dZEAy? z>GGPaZA??#ZPKt1=r60uOQqw|JOyQS+_0#+{arh|Jnt=dG$n-MgPmq7qhCVVhzwVD zC^~(AAT9%tH%vD#G9+x{GuQ^jOI`~4$=pIRDiZ{8f=P4Ai2gMul&808)xITpK5c03 zfe0noz^B1G>l(WPVKb<6&O)WTWmNROCt4pYBqn58P{i&%x?DF{o`MR=lKwJcr| zqBWqMhRMi$YG4SZQ#LUPyM8~&P>|sH(~Cw3;+@8qpnHfY0%K6vmD6jM~e0JaYh|BnV79UGjFGXZ5T&Dz55(lm!!GK6 zA__e03A>8Q=v~or+GWw}IK!bsKCoGYsKIOWo6D@l#yR*#P+@{{y{C0#8=Qg%?4owB z@DW-DQp>M4r z_W`VaBpCza;8CR@ z&_p^UzJXH(Vro{pTBrbWK?U@uDJxXqS_2EENS0bi+$!dXZ=CR$KU8hk`5X`~JQ8WQ zd($kf;pg}mF)UA zqWINusbZmzg!B1w+xmu{$PCUvsFOfY*jH>=bEd;N=9CqT%1Ljh#X-BTa<0rhnw-`L;ad1gS7?C zEyr>>(U-B*HwcfCdyhb!R%mgkihR={pyNScaa0@+z&0y&ZJejo}5i!Vn!U~o%c-Y3%C_)eqBgm{e*HZbC)kJdA!Ht(A z)LD~H_}`4=IZatR6G~QxO-hwjUqDOmf)h%mD;B#!2nlJPHls*#!vkYK@@~jREhr3n zsEaai!G`8BQ=wm$#XC6PkbT!a@bVbd1?A*laGEZ;P+J=R9VuH9s@U?TJ-Iw!O?x}GGs{1j%hI7Hl3=V@eV3U(H3 zVtQbP&s>s8wJ@;zImi4r?xmu14XmIy_b)IkO4dK!jsAW`9rd;Lv9t~TX!<<-&D6k* z{trBuv|oL>{rrg08QNZvMBy8Irs?}Su56{3Ir)d$3=;Nr1`@`0E9pu(K-PBwjkLkp zChr_~YjmIhlt_kOr^fMWnQa*df^=Ybq||rDsvvs>Fp#n?vUin$DC1##Y{;QEKZV~i zy9^g}{&jHRHIit1n+pyL%Ipw5v_eOUj7Z+3wQGz`5=A%Z4*Dbq=GlDL+2+thP7S}_ zB&e{H=e?tBmpTl+OtbR)r<*#>P{oc`G%+I(lJly5A-ZU`SCN&wnI?)*&6d6_U`7u4 zL*G~I@odhAvh7AZckm2b)F+Vto6G5uwHwIAMtNg zTq6oS2hPYf$d49-?rZJoj0A?;kjI<-ObdXU{R#}|qQQC5$EYj#z=VDd(sxB{a#*^e zLlpD?)~4*1%D@62+vDFR)cTn=VuRRwTxe)(4OGq5w>p&`XcK{+05HvJH(u=wvWG=6 zdF3&O*)HHo>7CggFE@4-Tyrgi_QXfUC=BG16lLmQqEu$#=-5_qdS9uFZEs6WKoU)Wi1idt_HltO_GZ~jeco*>% zE84T6*^HFAxiEv@xDKO&8HK7p_5Mutf3oaP$*BBCmECm;v}1Lo-=15=;s-fGqI5X1 zZE$N!t@r+T-D*h)f`T7PQa3ot6nu8Ay!))O$&B0#jIY7>e^=v67eKO|^5CY-2^rir zj3E*xxA+b~h;@#aq`Gt;hDrYEgIf^o_C8m%INJG{s9{nMwBs24WJv}xzQHzBqM!HF zWTFI2$HSHCg&N=!ViETBn33jq!LC-u9`+Ip7+MrfKK4NYJ?!7e(0FGsSB{wBJOSM%*gRr!F1IF zEqD4GF-L+;_TB{cOZwc__g6*qf+>FUj>KE!RJ;1K=Ymb#<-FK*QCgSmLyRZzdv7k( zW-LcmoOu5t{9Xezv+}Uks0~QPD_SS$`wAHu2l_9pig;HU6|++<&9Rd*H(#3@Yi-o` z+h<5;h|qTXp9)Nf1F!NqB)BNViw^yAmS|i8OcCa&tt#he0ikUHOs_Kbu0;WCp`KP= zVnN`6ukk6;ELgn^na*FdcG*WHzEDwpk%ERO5V@WdJ`}W&@F8D4PrV#vC?YQ@o9c5X zS5hW{8E#i~0`8R4+K2JTw4lYYSHyXWFTYOwFe&E5<vDuy^#5Vy%0=8inb!r>w146(Qn<^?DTpbCEEfmyLl-=Y^o@ zrRY5%nNjky5BX|&go>i<;HJEPVeb2g^#$NNmE>fMUA*1{W$^`5I*|6 zD^epnU};F+By{)+zdEAur44x88(C6S0*NXc`}}R*Gtn_B96m;zT|Dq@80GRhht1&c z^HI2~kL6v1nIR&4a5C}6zyYtkb|oQ-?+*%!Rdq z@j!gxF~d}Etx62YE%g>j!-<0oyuET>uWAUt4ktj3R{Dl(q{LL= zGl7=Y<^{YhFx6ybB&kEM79$mSk2D1MO#i*;T^z{@DLB&)u!v#13w&^|&|0LH)lA1E zgq-Yk)Kj^00e%}eNRIPWLld6MR#NL@V+AtFR!&rqH8eD(D|_&V-G#dOJ6Ca5?(|p zj7>D%ip=K!g`RF>6@UlRco46p(SH$*Lx-j^K235ucG(jJ-r99nKzH`ihO5MYu{AcQ zdWSEaulB~*!cabxtJ76_2nu?n*uV2<6Lu~$|7s<$&4%?V0> zh)^#Pf_aI8V9ugD2<)9sLqSY|J@o<$4A!-@0W7YXi>S9;3vTZ=BOewee01i{c$6*x zU@0P|xiL6;*rbh>$nX`nC8SnFdJ|AKn>VruxWKL zYJt#o6RL)rXt6k?2~gbJ&%6xX3pX)&$0s1D$Tz3t`B~e+mr! zO?$t4iC2BPE(@w4&K)YxH)me~&7?(Pu88hg@(84m=EkZOP;OPvM^)S48k7?;wi_=x zy055D5En!-zbs!^N6wB%=qrwf#V;;bPw}L|tQgxk*!40imH5oS@LseBNK*{#&C$_Z znMPluoc5Vz6MoHP%G^8_UJ!!o-N%8`gEue^r(kujD=ZWXyrS48T8ZRz=7eO*9gx6yfq2`n03+V7 z)v=z_f|4a6!*pG9EKiIT&}=tbUz-Obrapc&n2Sk8S|=r2ZsEK3tjK$Xn^9wPDaP^i z#@KZXcIf?caLtRrESK%NRSBR70+(7_a68jX9+QC4bca=q1|9L)x}c>Ro+60%czB~9 zwGL&}FfO#9w7ZQfeck~ShOB`7?ckphK7x#>0z|@9`)6axpHd9~zv<%-ycU_){p5yR znOk=RwqC%xio;zUX{3;WGmlc)ru;*uGFOL%51DxdQnzL4nlr9wh6%q(xCS=lK>X#) zH8~rxR_Q(kyy0Q?D8hF}>U%QELWZDNn*)OHB3*<_)kZ;YI*U$c= zI&zm%J}ZRs&)X?&V@D;ol+`(cQ=RDo;6`blFwNQGA`V3NGv4@nNv{m;y6>tPT(MF2 zaLt9>vzox>FD?v@s~J83M}rIQ5RkIk3}Kx~E8muKIhI5SwRNPXPt4T202#oRg2CsJ zq|fF(EN4s&APo>zv^W?M_+84Ry>H|lvlxvd;U1`>3)+I_V8VBJsefiowK!gr4XKv8 zd4f4V2fSf*%pI$)C?P-0N(H{71t<|*IEP-VYN1?Z2r{Y#Lt?cV!4i#o`i~y?1thE1 zctux|oau{&3_ip^%>65hi6>TxouT}TWimKS&>z3zT=vAR12b3%v%2EzA6b*QB>D*a z3wv>gm%oFOsJ%a<3370&1m6)`MXRyZ!K9`5Kxabb+Zw~kL`mt&2W3X)EnZQA{k@w` zjUpdo7z+hQw}J8w@gpOu)k|h`fQrTpLNsuWqBpL_dIIiPHgHOcP-m`+q-4Hgx`+Np zRZDtrBb?&6BnKPw+t;{pIRb^2y`p1UKRe#xHIf=Q?yaT8&53|{MPW?R{RP^%-y&>= zS&tElt1j9@Zqzaz^S53InUG2>66?qDT3#q)J5o8w0m*6S6MnVlFjY#da7#57aA?Pvo@iDh znQyq|Nl+>3fR$Ql3HcRDR1e0}E~|!UAk;%l6)w>)plDeC~-Y~ zH}rIZ$xxf?ONK=FJw~PY+wfH!-M$Dh^Q~O}ZM#whl$e(QZGO??z@*YDhE(na>h}-$ zuz#NMmQ+f(7=;^bV5i>_v-Wrp}WhR{O`_z3@|J_U(8Td@8&oiCYbGqOorCzydMv*)^F;J%cVwzddXhi8b))u6b}3gvANClo0aG01Lt>9ed>XGFhD_ zjF}w2XAZq$s4K{9gQ)pOl_xZHHu(K287%R%GO2~+4ZfA2AtK@zIQ9(Bv1$WM$j3PG zV!L^h@^*)R4-NhpW~O6@`>KvYH!2?4_be%?X&`A&_$td!nN8Q`6r?9v3z|Y}u{t(C zP1=yJ{3Rs{TtLYBYe{RG$dQNCqW-Ckg+$v_Pen*uVx^R0NUrImeW6!3uoP`}AZv>dDr1!=I=Nr_o5q*L7?Qk^Q=0Uw;|6Q9K-;kA zwDb{od9JGTfMO+LD0M}H9}LmXB$muMUrtqrvngE9aWk;|Tbn2RizG}?9>P0T84?qT z_gG8#Tb1stxqG?n|U3 zxB<-4#P)xhrPmJre#|SNSX^kYYW<(ycGch*R%We*Y5k?!*w_8b~r2+Tx8v^fSb( zgCP<69{GD!=-&y^n|-e-@vD={GP_Q2EPxeomuoMz(QpzxY&|GySGopeen+g@d9Vuci*Tlh8Tt#~iE?&v=O?IBw&HG_sxb88C zd5offXpMvztaZOnHAp>U+(75B2xFr=9K$6#Hb+HyfL-JHtczC+7(F65o68YtR{b9N zL=E#70hpmp0Smos(B#9GX%?H*k#`q8LP`?4wcl;zxP$uS$ zhV15&;pUCuBc`9!fv}L#eAcW|C0WQ=_V~K!$ONk~lkYrZ@<)Ymd-W5E$L_G zRgAq7hRNO3R`&jk@G@E*E%%Oth!`r{Dw<|S&yiJ~3F>^!+#fFdNkZ{(JHT$5SI+N5 z!`Brd-N0q<9oIV6D1jacZ`;ihih-!$q)tJ~x_cDDbSj$X$;g*E3*hD5F=7i6 za+bD3xv46YGQL@$XME7XhV-CUujY32B9a7XRM%LWL{aBUo{qFa(fD>mkYde$-cra zWTZwwVx!X5;zb#5VN(TjJ}%Zr5}rd*G-SBQ^&Y5lhW`Gx0Y8F@{5)C$`(7Y%qYdV; zIp_0iHNh(&EcVwkOU4!0wOo>}y^{l&eW+T*&nJ1`BKvsWijs95e-@%oAMT6MC(~aN zy6&MsvVsvfrTBQs>kNWM&$&-Y?(1s1WvSoGQe8u;ag3timn@#FMG~Bry41d|3L;2r z&F5Ow-_-t5B?sSH(%czW$8e}G!R?8dDkc|Htx-S7cCB5eOM0Qa^Uk@hzL88rNQwrc z>CPDs#0Mj?5;FbWfBLyQ#_nuyAAP}o3r$F)Xox(`;iu1AOj z`uh4^cg7on0Q)i|@P&i#mDdTOd#R)+4C{i0Wv|zE6QjnKohUvQvLi%gk3z&x1kpoo zKGkSrPDM-TD~1{HD7j<~CIqsgM1e4Hgm>8RVT8^QR?qroU0i~sXR7IZOHh&*J zzKUbbMyX0cdkH$p=m>=;-J25WAM!J_=!T(YW|d5ejo^VFRrE7$%h{s1tigP(biRqr z=E2zH&Fzb&^Jca|n`1&{D7nz#jDB{=9`-Ekc9r56l2X5-+A&xRFZP=R%_sv&9q1(h zp+J2>8|F4H7A=9)gFEHE93qGFEEzrisSsL-Xc}sNbWg~ZQ{lH+;3B>Re zRuH!5cr%F#Gmg>sk1 zDezNVSdTS59u*x~rdw@JCR);Rm0fRHK>VXZVGuDjWwwwUQ*@*SajBf97!#Aduy?(- zDF0qBP=B*=7d2hy3wU6Tvmr=I_HZy7Rak-EzaHRXk$L9EsQ2s|TcrJo>InMhO}Z|x zH3<%hnRZbIvvT_DSfZ)lPv$4G>iTVrqOz5fIS*V!HccIfu6%pek*Y<>#ftn3H}VuL z-dR8vA02r$yS!y)Pm-H}Qd$uokz35Qyk6d=wya@m7j3kSw5!2vF|_UhqqEazljbM~ zYtqTSqy1%u-?Ag$RYT!|I$QoK>^Ke21#lCSiOt>qBz1*QKRbPV`27A=Oj{6}zYWKZ zw1LC2evof3yjhv&J;04TE>+5#5hV1IwL2Mw#50g+RpNu@-t&aI6X!OH2umO5?Gwpa zV>b84`XsL(LT0PAqu|9>tT~6ZuhyAv-}mqT*pUxx)Us#>MA7c%D>0C_&!$T8yziB; zOO_KLeo{<2Bex~KXWut@7|VXpJD=i9|nXa%iDXG#qf_qJ8gmyY1RO25BWnt2hjgH6pAU%Ro3* zW&2rUQwjX~w6O*H@`K~=wOPMn1^U-`Pe@l@&%PYm&a9kV*#?;uD^7DD!Vw3_t40T> z$%U;@zurB!k&ZfEzQ)Zt{XY!x2f|kv+7S|HE<*CX=>b3Uk~J+v`L;ek5ezhFyPS*& z9u|OD$x9x@zSyE7I=y3StOQEm+r%a3x>-)`#ceaKyTkuc;aQ_jX|?h2u_}+edhUWz zDg#6L7d)kQ{KII~gbS-CIngf}ATtCZWGIvts87prT$c#?G`Xe(nW9lRtv`&mqVIVH zKq7QN7|En8p+s>d*ejIoSCy{aM)v-KQ-%cW@Sg?ayrTDC4ztf~RNouPveW-r)%|{#;NhHfYQ<_TXHd4G`J2ossQqSO%-Y+9(u9cgMra8{N^)(y;S7&1*v+qAO z@OT;4D^16Fba!acCtqyyUSs|(Zn}G1|$f zeUd3Zf){B#sWG5mL^900nz&(~%yypocg#kJ`p1^NvuUvMd)uG9FTL`0$STW>RNNZ} zc}Lz~{!v}gr-G=^&xsy&Peh7ebODv};ERfaqoYKjwy!j^;lBowGfYh$-7ggS(e(T3 z4xQnWA?Dlwv z&Iy@y_a(07;9A5T#N|#FhK_5(~U{kg0ha)d7#GT5vv9$i9qAwhIRiWMA_pV_vxS2jZ8wn^@DEk0idX#g)xmun3GnvK5 za-pfN=sa0JFa1Z=OU16SH>wrAlMr{d+%zK*&Y<#-s`XX9+RA92#BHM;hFO{H+s|z7 zZXNynYw8luQ1J&hZQG)KzF!dckLvj&Io&dK>9*tV&);8C?t;XwYqtU}-bj(5u)}|b z?ol_mS|Rjb3(sr?(N48zpxJeuG9mr9Z6=W*jCC*|EIe3da*-X`tMS#msfD%oOQgqr zDysWGr`*()=XWlAhco0~*E{}ge7#WdBf{43E0y&xY@!I`c5KXke1)Il}7qkHrBQ|>)Cp_uHwkaVy*_iuCexvZA4|Ez?bEgr;vOfsDL zU`IR4dGC;y-e^L?DjaZ;!kq;V@^|jM?Wd7$>imjG=22Uj(LTxlQGL;~^MIQ#GIz?p zko9STUhSx?*;wmd>T`dP?YziRQFHyiq91A9ScwH$~xJL)yCYk4A7{x3ols}yQkku)O&-R z7!osSxlr02qN%8qy@w2Fk-uin`?KZCzBb7xoUf~+f3f^|H7461GOBt)S<&5xESi!H zpFLTSHJqsLmQ25NU_7dQ3-}bc_meL|T>Br@r(XgGnH-}t$jH?(APw8H^t;o!WyT*H z{9WhUR04EX$iGkO;?4&^$JVZ0o3{easqURe@N#~0_ha5^T^!QgRq?ZY`J}s|_aD`Z z-y|9fTI9i=MYkpJ-G#>U*LSfl>A1EuiQ>0JW4eAO%ge& z9}|)b>#3ujHvgkS@Z|QKz3Sd*pF(V5t)dQpSs?#W&0MUHCaZ6BWvHDqqG&(o=>4kC z);;}-yOehKre?s^Ae}3mVZC3_aadg%;hx}xS;$TQn?aV|KUkC##(s2aJPefgxJYId z6IiOWzW>=(_^?W)(N(I?aWmzn?wML z^IX@buIrOYTft;i`DV}*AD4uT^6*HGVIAgIbzP{vz^O$sgT$9fYJ2HFjc?%qeqX5Q zyHNKNIkk}&MXVo+)jr*k5;v&$H_bwq;>Y-N-)r}0oZ6N6qY3rN*xFw)`_aD}L z#MRn&Eb87NyRe(}8yx+PmXjDZbU&Ht+=gDCWX+rsV@oE%QFL?LN6Y0=Z;7-AKVxII z%6Z}zAunv9Ds707`PJX2GW`?it<|qxErroON+`YZ+<{c3BoTH_P5FR&QwwhOO=*Xh zmI5W`=f8_~PPo{ZqPC`93=Rx;n<&9T?3{_+$P7*kFO@rd`+=I0C*)*j#uj<+1(J55 zI#UwMgHoe@q*BP=i;An7(|ArF6ggr|`}REI8jbBkz!7F~wfwNm_`mR>zw0cWHA-Z!^8Wk_Z8ezP7xx|cr&1KjL+U_3{q-EScH?)RmDe0XdO6=yYPL`8 z`A%=3K~HpmFAC(Igv=+qH*%3%dnsm5hhsBWm)Zr`3G|LF~T{9p+L<&dpjvZ@vyTI8YH>41-qDK^!%#N(s^%+tA{BUvom|6(mvqaU~B;?$5@_;cJp5vWTD9*{;Nq-y5Gk?LMz(ax8zdA^_*;P_nLHdg|-`!4^ zId`QzWoklIh~VwuVcR(KOL|-nLpGFqLqo+2HO4nn=Hn+ceBrsN;PIIr+M^uU9Szf83PVy0IjEihI1dFno@&Mh5q9 zqzdCxiM5F5q@+Ekj&UyTJ<;N<3R9mr8=mCtcqHz>th=E8^frR`JD#v9H|&qhTTeoU z&QIIv$x8C&!|F^Dr(BOc7ex@_JF^P5FpkylocNxibk{w8vM(;II?I2`6mwnId4;+A z6eSjWU^^aK&CCQY#KBgEb)SDHQ!;CG6U~iEIi+(UKOi#Xc+Ii@XXE1Al&pf{hM2ki z3;II}O-Y9IoZwNbR-R~uXPVDD9S&35%cle3c&Ywxaz9Hb_b=bShH%|WY&Yj59ss5v zV;gGeqSukGB+_BmY578mZ+j+Vh(i=Eu5r824`;vQ&R=OGJo$I-Y~Gwm`k{KRQ|23Y zW?|*hExwEOmffe(8T$+m=rQ*<7g_ z!W#D{NDi<|rG{RY9By=ooy-2!TKwv&uldX2{aXv>x+*RIx63?Nd2k5>9Zekk_wJOn zW@!7EP!8q|TAqlHLAbXBO@^qJT(6LW<+XzjtCGPi0?zSti0~7gFt3HmkZmpS&gY4h z<4`HbY{k!_@tsF0TB# zUBz9VE^)G{SC4<={HDgfI!vg)d=m5TlE}c~J@3+f6ei+;QVA0T-Vsjl)0Lgzj+gw0 zW$^F`*}^Q8iqEF6%bOz6DP4Fbwv&1M?Om-Eg=>DVIHwA$^kWs|%NrT8N&&D~c9W*W zM@@-Op=j>IUz{>fHoS0P5EQ~v6R2iy_mWs3e#lB!m$ycTPwA!R&n!si07fxNn5A)% zCnQ{KWE2bE#1uw!5_r9!DLt-mHKBA-7aO6Gi$ES#I}SMU8Y_V=G&w8}2Z%EGuL4Ydk4%&K&$wOC~As(jIkwMpW`Ht2VE zxKR;GsRuGZcJkHnjkKwe!k=BEA`|7pFi`w|A85F@v-kwT(^ZFe zYYK37ECTizmT(k!f`g{KV2zGFBHX%ql+Ty$7O0#)lh#M(^|I|>i zOQtZIh`X5ZT`S#$LNs15)Q&HnW1_QpJ>veHc$~jbDegZk(N|FqXTU~`|BPL^7M}r1 zv~j9$sn-~4^pf5&I_&&%%aBAu;u^gbO|akn7oc#CMKkxwf0%uJLh}5jU^M-N4AdAx zY`qDlI*03TZJ776#d80l__Wk7+Eg38l%`7iiMD+s+Tav$f#HE27}kTqikGz?7f)m^43)|c zGgoFM`VILS($o#DRq@GXqSn-{PNLa-qrnpx7Nsy9X}ITr(Qct*4=-d!IB_UNVPV6~ zM8HN_wdZvt&JCi)a4rIDQem0D)49_s>J!YOJ*rrQ3Mh{MuozCde)05BO(;N_fhPd< z1NPKwKq#&y>>?{4YHk!6M@aiXl;lUsHhzGF4{k6DjqyVaQ(U&4Q}EDTZ17>T_hWq8KJY(D|1Vb?44-2}&r{CHvr9 z{clAU!(vIg?sgI;+Fwp%{s&)N#QES|l>Rlg!UomRvggkPzUYWkeIQoEAum4@+~$#t z?|jlKM^WFnX8ALYFsVcnm^|#}5pxa+c}a+L-EAe1%Ii})-)#$pcHpE%?k z3GZKjSW*Q;h5o~8&BZy!jVPo?08~A_`}NO_+5?YpiBm}=s+WEJUfkW;Ec0`g- z*Vsj<*_s2_vckoQiM7B;Zzw9?uxWK~bkDODtG58D(2LFH*=5z?jeZiaKG&ov>G2PAakP4Y zSHR7GSdU!TU_G2m^I{U|ldcuto){pBKyhGCUcsn+NZm@7L&1iDtCLGLu1$(A6&TL` z?`qoQ%gs85Xop@5k>X1{{@Z{(ee6D2BKc#-C(d9=D0x(fMdCYj2X*?1yM%WY3XtC$ zgZN;MgUx|Y-Sevx8&~#AzbRNo=qh7+>hAB)ep0?ZT~a9JR@+8GJReXzG7QUI`<8vR zM_qAUrk_B%Epb`zTBUes zKGjpPm^Mu;Udo*gW3%o5#2)U+o`AP_XT#~S8b2LmCBdqY5L~$sEd_>BDSvPZ3?H-W zJG#_Lm(-~JYWvp!!;5)U@)`6?BM_Lu5j2z!nu>$v0f zbBunOL&2weU>{sdkB1oN_!)DeMcx@ zzoxdGX&2@OQ}Cx{gWY`yADG1-*tX#w86O@Qh3_7rKddO_!v_|~=+Trv7Buvpkvfzl zG4X2{J7ki0s=LHJrS8-CE8)xMD&_06OFZ<0(s4t166y2PZslDRW_mB*3h?(45wT#6 zi>3@R{OSvTX|qGl#K6x$phoHB$k?x@@r=hov`)LOL*mzq!p7JHj4)~)`8VaK4Kuvs zx!5{KXeII~B{t+fdCwhb0VmzWwMfq27e{xL|6wiYHf+%C6Iyfe^#QW;2pmT_2)NV$ zP!6CLdh!E~glcgr$pZ2h3^8&bw^345v`@;}Gsk;JBtxl; z9_CnD#(zDlN=Nw??H2~qptS{APUiQ2)ov)e=3JNh9G#{5937n_h}YPsd1#I0HX-ce zFJuDvjlO73a86#DeoUU>F-e*JAlzr<`q`xjQVOlK5(tIXF#Uq@Z>2nOyITf}(pRYe=BIpRyv&y{!`-FDKI!y3fM5_F_v?Ms~bb*y=e>nE*w5=>U~ zBusKQ#ftXh`kxgk2uj1GB=KSs={$OX8FdSH(*5`Z zp;Sy$CLV%E>Jz0PQ?xS;zj1MTDN}S2?=rpu!5n{);BAg|x}K*V(qD^2x-MC27n1mE zsrK7?T5Xh2z z!4CKJ_;qq~>XAX_VaGdIYDh{ZD3+t7_bH}zrR*6ZVbUVL{P3eF%<3yeEGogM2$h^j zUCIy9&1UAAc)`5%Psd9xUf=_|c=9C|yyLFHxiqZgfU{)*!ZDS@YzBh&%CfLcI4|J~{f z9c=vFsLIPtr19mrK>5;_cJ)83D>AyTcVtZOFv*d^;zo_mcnv;u5SO`w%qi^{5vj&h z!&a_r$(YQLdC^y7A}B7=A>ii|0=+vj9Znad8AGWWu13pBS~enzgAlqSX+NB=bVhCA-V6? z{*6|$L;k}cFVD>b;U*|a%R(iRW(;!h`4osORq)O2 zB>%frJ0?jN#G1cr5`F1j$twpQSoL7#0(`M0Q2w4_Xf^)%bDI~XY?zi_*Ps}Wo6JH9 z>-r4Cy04rALGwhrrz_1`TMmDCjESKaAb&rOv@E?GDdzCZ2o^SAZgJjuVvO}OrV}!+ zuEAR$sDqA_@z0HHjC8JoDgig34o|d|zH?xHn(yE5Yrn(mhz%SW{Q~rdYa=Hp3`2lE z_77ZI@o0tqa6HyD@W<8l>(GLx(DnKe<>K4$)E(v2y+=EBpNLB-Od(FnZ)-<+nW@#& zrPeXMIH;46kt&v7N6IAKkcc-M_m*!Vfk%}vleie5tHI92#YIZD3z2TZAn$yW)L-qD z7(h-R=00c(8%d0v{LoAPrK5-$20UvOnv2ZRi0u8!d_4V5M8#(qtxY}1O z!t~O6U5R!;RNZC=FH+9i+qD)+fPf28TRHMj78|Ffy|CDRvHao`hrOUMzwn0 zp^FsAqo&a3?7s$8(5Xele}=V9ag?YXZbvWPOL4t;z7Rtp8neWqJ+Tiq+?xU1J2L9!jd74A^rXJW&p%2tyUcIzBGF zUc(Fy90fti+g%Ns&bk_hPsJ#BGL!)PHbP4k`46OCtdPqc}I=9MdSPZ3Re zRZaOB?3X;okBlan!~p1k&Cr7EcC}vfDx-Zh0)b!>zJe$Z`Mh*2>jMhQyU2+M}%!Y&~ZT@5UJ7W$%z^c zoxh=csvMkKMjyjl38v}i{@OStiPxFa?tk`7K>7uWb9!0CpZ#I8^d!Ym1H`2YA7ff^Nmx;X{#8SztAtG_UWFf=ix zUy}W$3xVVmpvi>GuKC`60Lt;2TS5c#SwM^iBLMSk^Mnczt$`?3QzNDV_7)Wr68Q3J z;zM1dT?o7<*eP{&Z#;vO3>3a{`6=O)7`bMt0bE_P+0h(?F&aGVNCGbH=n-|}4bcoK zUd=uk_76jx0oM=smYd0X!lF>1r-x{a?{?5GInUo0FI;078F^oDR^Y@#C8Q`>NQs!@ zVVvxF@q;&PeN1`e*>Cfq8N%BV5viOdktIsiv+9mO&1|=YEG7U*6VTZ#(0E)CTS4*B+=m(=Dz7yBrAzJ9i zt!bk)YCreMxToFWwOUJj9D2!~R9xyD6y444b2pB>@^6u(a)sf{>W~^2@ zAZEQ?_${(>nPOdYT%1MNtF?@=^D2U}NKx(xD3dy5%L`n$M4&)3O-~X2{`W&ey4}5l zPN%@x+zGrYfB#)=-NW)B%h^FNB;;veQ=?hFCwdBhM4v*DJu zwk@bePLZbg+g{j^&?QhJDED4iYR_2*xg>T8u{&k0DIa{bYp%QB4R;{wB&AUefW@g= z?|JzBoy}#zf7zTB2y@gLU{O@pUvqw)fbA4O`?3L@-@v<;I~J$irte z&eal0?2Jj&wogPk&tALfn|)Nsvbo#+xIg&YbjST*Sg7?d8c9<Sx=Zng1g60LWo067%9vgE5xdpvTUV!@R<4JmPO?*tWO3>Mm<)?_&i*(ogNgB7 zem=)8RhFaNO7LV%iOgP?&lSEjsVGcbI>(b3kT3kvPtW?%{X+4&{rDv?+w`%)l@YFtcNZ#6ioiT!OF4xf( z=3lL}8`Mmn$2Q)+mco4SSiHXkQZO4d8|PV4)N@a0{{vaPKRn#@h`-C*RU|*)Nl95k z&rTnf?xTR~a&<{gCDQxvcSwi6&RpO(NbIT`Ozv+5FBkU18|toC9Ni(452~e;o!-^Z z$_Z`vg6yEl@80*WK~uYwyV-~(k^u$12Q>=I%+865a9)a>p)Wbs>uV`!$c*%u>p{&{ z$&8Lked!^hHG<54YYQbe$L_v2)DQ8R`i{GSTz{?fPBzt?v2A5b=U}Rb#_0s$l&NgMwso_iu`B7(3j8zqbba>Nh!~oZ}5uT$G#* z%e`&cMG6|~Z3W^j>3z`1H82RVF`YfyV&D%h%9N7>;#Pr89at~a`C6>H{b9>k1*jjG#8^SMxV3YBt z?l7y4x}^xpM9EYaVb?Tc+ zwyu0mR)2pd7PdIo3Ddb6-ID1c_2OZY(Zp?spLP`*W*t1+^G~Ek!thmK4^R)N9FR znvy(ryd?#aO?uZU;@03VaaFwg4b38(8_M)4xuF$4PnC^Whqp299UDmSGM=$q-Oa9R zZ{D1?$;pZB{wSfps;Z<2U;@(+NyYAo)6A(eBqn19Sw-D3Ehgh-#>f1X-mhVC*@=k3 z+)DtRhev~?oGc7I>mz&i95M~m^{A{QW!amVMHl$uUDyhQDY#D95xPVrNslinQ?grR zuIGu3<-?f9-zhU-gDoMmv*5W)(Bz=p1?x9)%1eYHuW3n1p2fc;r>x7u%#&!TE;3|q zFN%sORL_O-`tz(-WHx@F9Ah4CA6W6d&$2BqV^#oT!ZOj7!pF3zuU3pg$TM<7p zz|vFg;4(LxOBaFBc0%8E#Ff+a5Qvy)c>8Lp*b+={d)-g)r0J>F?GXTq2)ngQxColI6zmUJMI5E5sJWtKnN08!kV-4bo4tXuLKy^(Sr3eJJ< zKnmgwy;v@HAjsG^fwr7of}E3PJ7a8?D_}sZ@t;n#>>=b93CeSq?7f>WNdA{!#t1~p z^`Xo;Wm1~Usy$c){hexn_ST3+?4QCG#iZP}r)IAipg@G8$?7o{-cXObx`|gwv+Ax~ z+WajtXHV3g-v!YLLL&Te4S@oHgZ1y1cURv$44$z+hYh*ilq=R~7iLY}%!g5DwttyU zJ(Vr6VZINpoSpcQFBd$EoX&@dXTN8$VX=h)a||S1R!QDF(esY3$d4E?gle@-uW*tC zL?-lqDUV^#7;=!-U+xTop#e}S7%cp$+2r&Ei}$9Ydf8kKz6DIGeuRbNwE8cIv|-m1E#EyZc(+V@Ix=bf{>qwc6(5 z^sI!wkI#pKE|JPdvf-qNA~FLet3O=YW_9c=E-1Cnq0k3`a!AFL&82z;K^6787~K!4 z)}W&tv*VqYyi|vJ!MU#fVST|>ZUxnEuBNuCS2|w#OC1vH&1cA@YAY&$rRTk4DsugS z{}>RvC3Cq4hhft6_ss7>irPi{cZsXB>1V8SC!{cE$KGQhwT&Q#EBfz4AHVJR)Edt@ z6-~y@aIgUmIAr#B)x#|8$khvA<{A>q&Q@-&SX|8gpTO1davMLpOUF1o)7a06R`uPRK2%^Qn<)n;QL;Yu-5=4 z0WfMjrdP2cwL;t+X|AC-Albf5V#&C-nQ1DX=ll zDtwx36t7Hb1h@43!7~sTtXUelzpic9I&|CdULM0>SZG1YDIbV&kK?pkm#tiu#0z4M zgAM~*lP$(EH!a%N&x9@irF1rB+D!9*N!E#4GmT+&{uk}jr^3)Y?$OYmyT3-cDK(!x zo=L1v>TMUKUqs-3lG0W&BznU7^;PtZ#Cubk8bzk{zAGnlTe;u^Nd78GS6smV&y1;>+PBM+^&XX;ZdRFT`TnOnjA`$l1U>UG(fQ_Z z^Qwj_PpJ)zgj|$Nxq!bpk)j{=yN5rs*a)E7_njv9uzlS#csT0$h}#iOyWZT~Z*St? zvbQO5ms$lT{DJDDDW0lP+$Iya>+V0e-Cuq#`r!^P6Zg&tnNDs%BPWr$V{JZ#z_QsP zoyqK+;LpQO=DIoRHd%+Qpd{nb<-&DEy6GWv7GYy!t&DX6vnPek?AsHG2+*f8Ec11{E?d2QWFL~| ze^o*ne9M{$tLh{TI}9?ApoaWOa$ato>4>=4q)UrWq1 zPPMA3r;xYaGH_Xyo*P5I^s3%{?bzBC`SZ$Mj^a!%52E%{69n5 zRPY(IfJeuAGH#O#-zGd1*!PV^(VKe}agcU{BLMF!WG%*oeyWU%B@BbE%j$o|a}V4G zyG=)T6-nB9oAs~m_HN1;%m12dpO^;^Y0Di+@A>aoqj-A`-Kk>Y^Yy)mIzo9Z4#p*% zO1cq4jBP%ZtS~vTp^nvlQKzi*pPT-HhLxjd4YPPS2MqfSX&5;L>$0(t4n_vs8( zxKPnXoSP(O2>Hn4*@p}(XyC_dQH2E`Iu*^Rm*nArvJu_zeHS!Ma9i${sR@`Y1B~>Q ze0EI?UzOr%Zj#ulNP2YMk-HGV%y$-fVx5ltnQ@9S-GmSwP0q7%P7*~?Q0qAF$*ct- zo%b$*$oaX{lqQhu6skvTBhjBGd5fn+vj#=F+AlJLSKp~p)RNav6wr^$@bU#oAB}kB zDKN>QXvzSD3A$$TF6D?PGmDU4_NwRn|HBf`?e|D%-*3tV)X23XWyK7>6Z?M z4QUr&(f%QatpE1A9NBrt{eInT4J1;1F+ZN$OQ&P~j_J~8YHt9!Kj4*haBzt^^Vi)p zeSolIizT-u&>NATKzB2PO`Pp_3@r6Dl_qFYPuzt5!JGD3#Efdv&NA-U3n%@(1^Re*P+JLu>Pk>w~S0mc6U`>~(XiMBw^?4>gt4o#vt$9oea36LX6OQLM zY*mJOKzyp3fQ^@4lLs!mx+Pm#_hif{oW9`$&|petYJ4UOTm1Z5YVTkk+BVMIDoRD8 zuAOL)&?8sX(!tDUMe{XX)}E*QObgDvZnNu9FN3;orY+kFVgxMj?);tT=^v-lPF`(B z7r?TCzW{AGcVbg#qyNG*&Di(^!sEnhx*+DAepy6ferYxo@d&9qm3wEPg#QO(aZk1c zOgTTByA*4zJy0$`DlrYmB%8^u!{7Ov2b+@I!SI(*BiM}!M@;2qXTsmE zXX(;IKf>?R5<7mxeMi?Fnrm0g3S6OnId#ZWq_0!RVV889Vvt^>pTt8D07 zO^vbZP);;I7e)kUxV+ibQ_jyb7Ru16iK9KauSy40Llj28Q>+~C<)LLJFojjv8boTZRE*4B;`#60@AC#A zna`EkhX&5BpFKQECNJ6Xv?hjnt~%|;Gv}^?W26uK-yK$tR|O^-+YX)>gQNlyb9v$4 z{@%E3>~Oe&{py;j#FxxgZ^U%kKkwnQkMg~0*nHfS2G4B0xlO1_dkqqKX3%@YfRrm^IW19ne{S|cT%F2+YZQ6y&J^#>Q()l@l1`Rq-_Z5PK;+ro9`Gz{DQ6w;K8rHg%k!IwIe}EW@Z&%-0?uJmLGRLw0`kT){-5A zakV8E{9$5}j}DX$uK{Fsxf*L2|LNGJPcRGNB!*vQ6|R&4EwAC@&eya16oOs!G%K^S z$V3*_GRp#A=l3Bqu;#L|uLn2M5ZUSA?vaVX&o$+H<}%5)^eE9Y)_l%WP)!A5s}vbY zZQ;G|rM<3u)+Tm#3T9zpVF=!L94YjAiM>G(<1UqDb>G#H09bmDN(L7jDH>h_#Ix*W8`o4D~p{+{wv2s%d6iFK-f zBB-upa!7mQM{=qDsQB&dXzS=zMMV*2R5r?nX7#GjO4rt@yRSGcN-Mf8c}@|`$5iC*U(RJB(v{SGUqm) zS+f?iY#_OstG>Ofi2njMd>_hLhS_xM8^)V5Ibo7Pis^vl`$%J)y$h64mu@YLS&|04~OV#hs5~|0{*2~Tb)o46%niaIP=fU=ZR=Rl=>9* z%BRk(m@nd!up)wD1_sNucYI#?8Iw?!Wv6U>Mw$Komm%J{VM()bUv}Y4MR~AQ&o`7o=%;q=j`0lv{PP*Rulrc-6()^A9 zXP+3zt=gE7N_V%k9^A-&PPR*)_2=+Zb!AplMHA@HUr0IK7Zs@1MXC6scVH zwy_;QjU}!33r=#jqZj}N+81RhI+`p3xBf+nn;Ba>vT7=Wgp^H&|GwpG58w1g1;r4F zDkNScQm-QfO*io=z=>L3B_&i< z;a-h$-e3_s2qwgO!V1w3+dnB=*Sxn5RbSs6`ZeO-a%&UPJ9ibXdql!fPLuoZh0&9) z|CI>Si*1~@Qw~a!#8DJUuv~bqW**Qw zPqfyG#YA0eu6ZW*b;tWpTwrB3ytErFbn-&|i_IYl8O+UTc}kQnb(cLM-ehNFMayb$ z#oNLyT>!xCkd)dQZCHDgxc;O`(pPkJ@f|ATbSE!Q8af*!k1Cp0&5KGK&69(X5W=uJ>4Gq3w}zbv z@!$q#6xGUmPV>Z?%ym0C(BybHz8d&!edxqMvO99>2ahv|bwqxaqLuBbIPgjAYj~z> z9Ng4hexMBZXh-~&^nr6}*>C#YE5d@uVT~6@AOj+FTwmo(v)_Ran+7)S4czQwNp0nl z7@ga$Sl;ldqm3<5@Ut0e%TP7nG+U1&)@al}YORG;DnF_okLe*2DvtO`;y$~d`h;Ly;GxR~zNzK}gw zE}go(%Nzo%%b{}&TSOTs(RDXS z^mH+crj6S}d4|sHeLu|r*%hUC!)fkB6SvF$jyEw#Jo=fRdgKHog^&1z@|i6cW!8-| zY{I1at6f&gpFh-|Nh8?SuY^i?XSk<3>XzFZ^phXd#|1uTsWhW3nj-%sX9gb$EWBMR z99#~}1U%17+>FHb((5nWJ2+y4?ss*z5ja{)UKNf^iWG(e{aX?KTV;7BQnGTk?a0jV zE4kpkcXHxz36xFiTG(E%HXF-W8H;UEsc|>Xcg@x>&fb0S9Y54bxP_Ja5-wXsZI|pC z*<6QZr7T%Cl<2GO^%{Wa5~ui%9FbMvu9AH zIlCaTs?(k`r4NEDH_Wr@9ZUi9GtZdsU!S@iJbfNZ*cAj{odgL=bpl3B80fU&xt}-I zyb1n-z-~fkbVj=g88>vpW&@f6_G{ei9VspnPsMJI?aODy;nu&Y;e+tbMay6Jnl5=; z4r(kYQ_zXDT8i+~DFH`u+g+5v-iy7V%GBstYqwD)rkHqmC{ONX+saQ6Sq}95ZUu6^ z=#?;T0!YL_&Rq^HQj#o{i44=bn_utAL*;(O^|jNSxcn{lRP$JQg%0Ps-T94AlaUCj zm*31zaCkF-`~uf#U6tPwVidPrmY(`5D4O+8FA?FVw;3|Fn~nkZi1e5yb}baj2>5#{z{&QobK<+|6*`JVOW*YCx z!E)W&Ns#wvuKG5sdi5}<_T9x(8cnHW6*8%Kb;s*u-I~@E;oug*=)8j>9YF&}RkZ$T z9NdDiZrqzz2dGoCpHnOwXUb*YO!avQn`3aKoLv_9)^SWoW76C;5&sO}ZFeRsY~FCx zvSy#ve>)i1TK}2gMId!6R=Jey{uE_DzKr_Uw9~$N*juk*S?(j}oorMjC z_OYCdo99NZpy{{3oh9AnEG?ZC?$T!fGvrTb<{h z^RuzL&!g;KZ!+R$gK3%A}UG=mc@6^g;X)DP`1W&uB}o_V_BzZ0z*l+F;kOTocnsuxvs-U`b$4R#Wv zS_dwjxVX$1qa3xLEOo`(3dFiU7W0hs4Ed8UCS7;E$?`gm{@lBU^>Kj)8y{f~E8b{Y zEhKT=)Ggb2`&HOf_?;IS?Ykf>TX6QFynZqZ{XNgu?$os`Ok+F$H$~2DaPFQQxT2}R z2LG2iCS9Ox8ayg_v}`CgK_~67XCbxzfwf<8hRHAFoo|Gw4aVPrsU@WRupzAPxM zpI0;rAMlCL<(gkE0(}EHUTsFM8t*8!G5z+`L46CspQ$JPtVc2y*%4nyYdMtSFm|y9 zY+}NeLAWR`ylPxbuEP!1$YNY>)Oo5F;AmSHKtx_)zxX>Sp;PLvp1!rZ&aox&uWt30 zV&UtJ=Q!VFT6$uadMfqgt!b0bQfw=7Q)t^c5f%E})2r_Ax{AUzIpt9nP5^rwj*^na)@ zgz6}8H!$naN}urAx)AM%J9_ymk{in$NDKtehk0YNGSXA`mvrO#SGJY&$@&H^$6fDP zWO9cTBOn)nWlHw5ixFWm(Q1i%IoWq(?F*k-S`>fI(G~B6`V@Pa-{5!Nsc4FCx9}01 z>JNXd9yG;%&|k3qlT%|sqX{Jie@GxODv73t6Meg%kDVUjJ^H@0J6`bFuL zPz7~as#RfiIPLN-PQq*aAM&L)%9C^q=x6IHQPP$t|Dt#~5klO^9{s=M<|I92e@Ptt z2l~<%OkIWVC=BrNvpU}f$M{*z{182(uqX4?L`k9oW0HC}IXm8z2bQK!rH-!X=DR|x zv2RTJVnfxtWD_j9ye;)as2KDIhkO(?R&Vb6%`;{R5M)Tuft&{~6~~&VgGV<&hH&_M z%pLc~Fx6C~qu<8$nr9i)Os56KPxBUy=dsqoL^;~p;JiPX<~L#^VM&Cq?@_!W6}cHC zbTBIi7?!Utzr~B;iMCQX+!n`5tDuy_7WUE~3vqgam37w$%N98DH$a33@s!EQR}mp_ zVr1s0YBbJSym$YuKS*cptorb9yDMgNx5PWnyI{Atq_iP3E-bLedL{YV^q>8!#mpsL z$Fk7??WJ+XE8+)NslzMrDmz#Fh{nk7v=-XlyB zTFPc~iBYhB=M|C8z?{W%Y8N|@(HpgYqqN&+6f6hVCnB^cyMU8XtfMm=dCA=@yct#} zhTe^2;*ZU&>?Nf2k=;Nni|RU)9y|sUfWe=^n4+Icwm3RRBK?b_IyNjN>9BTH+_IE2 zmqihhz;dbvA}>>>Iflr}839~F*>cl>z?WTupG#csRrr4fVJt;xexrA+rx9}Tl=prvSC1F)%AWMBuo75UKV|GStz;ur z+r=-^AXibV>#x;oBXjdyp1qxGP*opTSPyF4jHFK7@l;_RNq;)9G0^+diAg(`^h-uY zhk@Dk(euD3Ro*hj>g1w8B6^xN<`wzg#+9=mm=M{G@AB&vu&ML2Q6=sRRckGC{+yy= zIIQNoZJh9AY#}@0hod#mQ42|+r5oh%a3*){OKacAB#LSD;TQMlXmT&<^m^jDaH=-q z@6+&A^pibh369x!6{+$@s3FzZZo>q5&=`Vyc+38C0|~Ga0b!=EToS0mEB5StnXT$X z(Y1W-oUs@Z{5j(@t*&_t1uw@Aw?ljUmmYQ+A=};t9B%a2IIZf0nYlp zo?v4SG-cyWx{B0=db(C?{zav=r8A5ch$Ae6gngOtC_DK2D36xv4ftCWT#aG7mb?X)3tXYc!gTgy3Kx|#P|!=9-W%B{mP16Fm>XhL zBj8U$C3r&AYdWlWbw|p#m~-VW%X?*+XnX~sQ?f!yoAU4tdyrP=TxK^5x5JJEcQC@} z`9cP%RC{*rf?bv^ZQi13CT&v^78Mk3Ln1s7s_ws@IJ)H>5P4?cLqc18z$^CcwFYU* zirBnU$|!FCTcakC(IDYFU075e%AL)~eYlxvG|=%DmR%cRw6o+j@>p!mcau$8eDu)c z>D@8JG$U^~)9~#&ov;5(7TyKklW(ft&FP(q&%~XpOGyQUUIqW{NmsNEe2Y#lw`+;g zI%V$7^7Pb+m(m@?lxH+$ zq~AzF5}2fqO~h}Z(sl@k1O=23?a6wBFTv|m{S8)S5II++Kk-iy04pXq3aZ+2m8ynI z@%0c?qr-2CaV#Ps^!h47W+#EMQ4vkT2nFG2=Zo)y}G zV74p)`(brX>IDMscSi}d)5-!_@}#%0R|S53DLk)mSfAT~Y>P0nY8qobA+Q`VBFQh2 z8L_KIE1l#V?>E+j7sA4~1ltAi9yy#zJ!R0a8CLHA$4FDV;}cTZHwDK`r5&$c_mBlt z)S9J8hM@AN?OV>6H|t$E+b}b~lz-KQS$;@P>gP}1TJE%?GfDV6Ui9iZ>PS0|OXrxg z|A+N^G>PECTE&K#S>^v@=)C{gdK)ktd+$AKlp3*XmA1ClXze{?mzb?ls%FHdR@A6b zYVR#Zh?%HTl!zdRe$^;yw8s1T1M=JXCdRE>rpW%c@7<$Q+VE(Kn{iqb(vpVi+2B;b!7D(vZAD_Q(t+;%eeHY(SrPw0JwvJfzSJxuPqC3pS<6>WQ``ktbrw5x z`X=ImuAn5kqL3guwPPu>(QY4GT`rie8j7Cnm~;NWT_#^LhF3TnN0L`=bckbV2?mAx zJfSi9ZoSfDtRkhS?sI4N5}L7!A5lsqJZk}LU2q9i6X`IwQ%>4{_~6_mM#|U=_TNrg z0_(s=A^we>C_G88J;7y|uW6%ehG0wF4yS9DMuTGph1AP1uG~GU@iWK+^G%)>ie!U& zwv0xC%W^~v{70>+`DKBrX5&gv#Wkv|-w;t*clpx$O?&M+i^{Jd;I85G>iQy*Z zo(y!Ym8xY{Eqf8Jk{Y=*Q$>cG()w82k#3}sx2~i{q>k!!r!^pL>3a02cQJGL<=Y$7 zrN2KdMOs)C(vep~c9b}A_~0Le$op?DN7syY8EQ=Tt4^TRd`xaIfmZK`z^lQ9x{9gM za5W7Pz%7!-vYxJ@*tg;-KFN;Jo%cMC8T16md{9)9?C9-Vz^+WQ(Kv|`3QH42mZc+g zJceM@<2LbJs03A*|G*CQm%L)#NL+->f|K*YiYz>i3DUUfh z`deVJAv?_f_<)szfTC^=v?kwhTEAlEkd+ZxPo8|W*kNhgrG~m+2TvP;|IOw5PxzHU z7!>qTUc22ZRKQQ9d;)ktd6N~>GWeUz_b*g!Jv>+C0&O-yzTYwhSrx*65UbgZusd+t zC!dQgkbJj5#}e~uQfhlB#3dsFH7o1VE)!))9rjkjg~btdEBv%sIA$BtPEZL<3Wzq+wn1hEa8yL+LeTg(offTrFR|J})x?=V zNsD(Oth+DWlgFB@RwkJHBqn3JM3x<|wU*HpIVrj9DhK!8%`Z0BwoBS1-c7^^#3r?# zu4+h;rHeri1hLf|=X(?XU*uz>s|Mk5+>%jp;`#M(4ZDTNd0JhCh(f`4*9OicIFXEr zJ$k+GNUfxM$d}%+r|b&6M^G4AsDcB;2u9a4B>#8t9eG#5TYG{pwpUDyzP zCMi8$DEJ6ejw~Sq4f~I?j}_sGrAesT&-akffnZngof( zig{6DhB$oQ^BDm$Mz9&eFuH8anXig`|H~C)is6vlt%x~SV_E8l944&wkAG0ffmYLp z0i)*mLJxhkYFzy_0!ejc6I+4xDG9XiI6jGn^d}frSON6$DD=*6nPOlNf-3Uv{ z`R8I&Z#*4%2N4q4V&m2hE)}t`u-Q_n zUF%QmoeS=HU&(5%ok13~=ca2xWn6?O(g6T_Hdvw}(>Q~;Wq5S@Rj$YFJwes1hsgN; zeK|kX1Bx3{a{J483lN$5MLw{W;0k0RCphOCyf!a5#edh+dL<~jnQcPL__C~(pg#HaxbU=*2WG3I z>Ru;#k<^h=VuI$|`!%!Db9C{&Cc|ujCu^hRRt5IsG$g)>oolxhOpi4!#E>6l`#fqo z85Ej}!5Ng#V*n`*JfPkp=-gF?-Xffj zqkWI8U3iEwWu~R+Zeo<|5*M&8yXtj4W#g*q{nui#ztFCDLs{ zl8Q3E&hC*s6c}F$vX2&t)uwmDA^(iVw$C_dly#avxYdZGZv5htpYY)33_#qwbw8>A zAwJ!S1OvM$`PnVV5MK2b#Eh*W1EeA!k-B7zx}}s$NLB85tLCTfnm)6SVIt-p7wOqC zBi9q4Cyo`px{C_zXfj(08uugeEkDm7y8bctS!AeCN%STInAWSxUeA28C)fQd&zIh{0NTrEtvq&cJr5cVQ*5w^ib?^b$fq zC2OAnty0h9BcS{-?Q{D~+Y?n&@GX2RGyM4IJ zVG`c%uqF4lN^6RAh_31kgxmIz#f#!g39P@%dy(ZG$^=m|>#uW3^!%b+2!a;`Z)yus zi3^}NnHkOB#jg7Z5mBIpRB&N&lK%sk=-jAjDq7>jlFcO^I*G6!pR!Y1Eq+!Q9ed9h z>LVhNTs-n!WVl}$U~3Ir7ZLCWLJ-+22C z3x8t!BVwvyg1{X2F=z8iyf;l}dR6vLSH=9dfLAq!&)a!4mSySOAxdnW?<&L%n~^mz z74}o{d8+l~OvWv5C~(~y%_CQE&xCB-GR+!zL2Q?$LY@y=6;DR z@S%4$XB>n4ENMJhBL@)cP_a z*+eH{sy*;l^i+6l)(5S-Trcu@q{nQID1sB0+CIU=s1le*sYG%zJ^!5|VU(NrZ+`(0 zibAZySX1s@$j8>{zfLMUVzx$P%pr`|mBqh^4^QE}@T(r*t^dPw)t`#R43Ul}N2zQ2 z{?v99d0AcRp@Z#OG~S@(#61X7>S^Y!0E`Pu(Ht{bDsSWu&zy?6qtafeI#!Yusi4Ei zLGQ8v5{IZxHpd-HcEs}ZWuA=t%T_>4kor;(QTRYHzLp!=V11vTq^Qdi} z;q)f=^-k-<w+<7^SNy3;X~ILdMziAa7y0 zssxF~NICP&U~GH^WorVWM)tcx!!xqhT{0b_ODgx2KtB$ND|J0Gvh|A+9u5>Sv8O2C zcauS2#LI_5!b!qKXAW4?mw5>mPCf^4faBL0i*=FrEDv4noxZWIB53G_4rPQJ%PJKQ zSS`RC1cB{-kGMLQbP3%41HN&Qnj6c0>HU7cxMfnc9%zfia;QMxLdhfxrDHRa8nrn# z+|q5!-NiCMzbMYyJ<1mx%S^O7aEJHBXAjCqjdq^Rp()M`220L5yPpZpJioi6g`Y>h69_Pty^XyZ5UM;XIg@7QMr_sxdZSedyzAv zai`mTOCjIj%e1FU4{{WescbESfo~XI5d^^fG0hL)UIfox{Qf^N`C4It@d!z#>IRfnRk@tet!Vtl=O?pB*vUKszPd+ zJ(>oQ9vZDD085C{FR`@%_d*VE6)PbP#WCYTJ0Jk>@MFoHdSB^BWkr>Zld&j?#n zey%$NtMii(@{~g(zzpaC$deP!SD|Yj;PcEp4xCf!!W%7uMlx-O5EV)06(&(3S(eeb zTqU*9&v9~G7}e=nIqAB9N7Hjr3(buBm0;(bNB1bW&GSBb@pk+%AhWnTJbZ6w{~sVF z{~2lQ!IdKWgFqPeSM z+uzsh%LY)h?+A`;c@y=>_NQbbx(xmDJ>5btQl6YcmHFBNE+IW$WOXdV68{4nRNmF{ zE`V)Axh5t`Bg4-f)OF&HXfRHx)T$6#%9||_Ii^m>O49x~WonvmEM>kd50}hPl4pn( z(QaRq|JzsnR^yy)ZfHa^A3_ z82CsEfAzb}fvvVo@glXX;1;J>5{mKnxjG5XaiMWx8H|+~E)Bt(Jy!ZWMrrkdcN}8F z8VlbiA`LxwYmdHIso9X^th=y>$&Ck00ro%1DTbnnbDh>IMp7KNSfyyv(#vf12iVY2Hjj`j}rt0phzJN&I{p^d|T{=1?)0#8a=1^ z1RA^rdBdTDzC%m{DhGTHYcHG(1Vx*CCk+UXA#D1acNj^HNRR5whL=n-F_K3b4c}Oh z0(8G;B+e~frY#WeYJXA25c7zs1GF!+`-1^V$?{D>K=346D8wj}f)O`Xw4evD+DCC- z(2rqp+$MfAMjKJd5e&0XNTp$~WJ-NoQMtcOfERP#Z{~)oh&)_@0W-A^-0^y)bj!$`|jlANHl+Cev}cJ?Yvp3V}prsQ2H=IvRsfwiRH< z4K;*4-2h`NrR-W2Ff9LQF$ zt!mcg3}`cYpF%_TgS9pt?oeZJt-(FVnnfhtJ!q_|qA9aTicF}9?rTotC6?#D1@KCD z_M3S+!*)36@k$tmiNS1y-)$yP+FvtFhN}ULuC(d8kb0bfmgeiuAWQ@V=lH5R09lDz z43^(o0mP?Q{|68x>FzQ+?*jLXy%1VQj@~DcMDj)@Zx8Qwn#p;Sc6PP)MRY|8KK}Ne zal`rbm-pp8DKHB8@=$m-5A89pRRDsFY5g*nD0<6SfDPWpa||`B-Sv*O1Y<{k>2oF8 zq|#8ihuWV>`hS74^`X$#ctHd(;(1mgqd@si5R}Tt4>+9IuL8v4W#D2ov4i|Uh%nO5xC%~r~YOr({+L+ zfASUDf{J-YEySB5QkEvDwNQcU&GH41&Cr~{)x}(mRf{o2=R=7G#!Xiz>pc!qenHS; zWH-H4>o~~Jgn=uTQPpz920 zeHs(-PNQ!ndHrYxZ}O^{XQVuQf0ZV$dR)-+@ zTj9Juf|{ClKkjx2Vrw6|Zzj<+zFm?0(k2mMAd0zlTblTn?lS?ABzgBA+Mh@!GB?Ba zm3S8~K_2_<8rhJ4dB6>h#si~8a)Z+si#({8?lzWwB^B(mS^2Mzu3(AXtU8_6?Q#zz zo5N8&290G}c=I>;)YE8UiB->|h_`7$#3>IN@3vi7K~+e`O@M8Axs0}x2VNGW;DQDq zg&M$Y!?$G;$0(emU}z>waN|tV{>uB{j+b~umo{tTq9Q z`yuU+wSoEXn1xLJl!AEOG*OEK>Y3Y^_Y0O!raXQsb((QXO$G7ieu9t7=Lbo!M!5O- zhL|PL+4*+3c*nyv#lKr8`&hojlH0?G1V|^3J8JE@52(4>f1`U57Ur;o$_KDK!BT$F zfGBI0@U>wT*BGm9?{C+IH6r<@k-9MxBoIZS*B2Qr;Z5)5v4M8$&>Cq-GrSBFKbK4D z>wjIklPLdGc+dZ&i926g!xcQ0aS{XckI!{WY{kh_L`!-z+D&9)scl;D);csF*P=yA zVr6@#sO<{?)5)RP$vfj4GE*QNuNKp-j2;!%ds3LUgFVs9j>K10Sr%)qA-`a>zqjA+ zY_3kmPkaExC-dS^21Pl`>s~>->*29k0`9aoizLWNX}@#H(a|ZKVDCrY4#UR=J84{B z)(p5kEtLRAaeg=9r(>iz6byz@w6?(e1H@NHhpC z%hpEwI8C6f-|%hO+Jcn-LK{r*OwUhlDg97i*@ufx`E%sLS4kgq}B9o+}WToy@bRHGd_VtUuw|XjPn{L>4qbKxaK`oORsK1BR%Xn3wWp z`=eyBwYf@+RsxSDiu_~n*7@9D7;A1Vb%Or~SgT4T`tWmi+yn72-)Jyj)gZ-I!MQg) z|642^NS${i50eo@d{Q6(FDFdg(7Axg#pR%5Su!$!!z*{XQ2|G7Ic9Fu$r1%^&}X-7 zSLcEahQHY8LjwT)4wIG9k<)Qf=LMQtgH56Qtn{}cIs$y@9|Tt128G04_>PT|swvpwrE-m|lL#I9FV&;@3a099---!y zv$wGF)dVmu>Ot$D>BXAZA*s0%8-fC9h|C77r|W(EApJNj3Pm$xjM4FXA^a-Oa?JsQ z42gh%Lz1)_D#hPzZX9UdAGm4~4pL{<9^QFU{yN@Q)W`VdX-xq$iOha-Zh((RinWZD zajc5eaA*PeM`Ta6FPQX65X~F+ft_^g2cLp8-RP3DLQ+K@NGtdHSSVsksw!`bM^bDe zS?IPtxQf*sE**J(QyP56$ewjXO{zK@-Z;}mTh>9XmY`|wxz9su#M7zXS}A#0JSJN$ zWaU@f>N_lSU`iX2rmRo-IdzLytI#q$pDb3&KV)!GHRhr>-MgThTmVzO&5r24E>CgZ z4V5G-)+LKX&_PLC{hzzNzcv`p^3Y0+I{h0Dzm}dGOJBP(=$Zg}&m4pS61&i?bjLw1 z<$-Z-s{P4+2VI_yjWPZOu%6UDR9DSd)r)OB+kD_-90a;jI{tJYK_c_`V(i0FjN_L4`M)P1&i--!IoixS+}ylYBW!oUj_#L_@is3< za31WSu$1t)5~k|5`=s*LFL6j4{tv^(0R`-6PKZEf~Cr5o@Wu%=Ld~G)*)!-3vzY zCKhq*$ewuGV%+4S_c{jfjtz&JAed6mSj&M?GyA&Sg?NYRiz}TD2d3FDS`DQyai-hM zZq5OCODRg?`Q>yMm_nwk9q2qY3LWd)%E3#ue6Lsg-A=v4z5_YIMIzuHLO;~ge0uue zdr;A91$gLUMv|>+ymZx`_FZdn1>!oe{bA*6q+Zoj*Ka--j{qi}m665Kj{#g)u<}h( zT%8vit=f4hlW;)qgjx4LT>*N4Y_x##E~w{PFD@>Zuga`NWQCsF@$2tHlhnbVSiMX3 zrQU>!;qu*E;c;=QaRIWC)Z22_d&u!wUX+1FD1y?DDTTl-@Fa+HJ;MeFf2L8I`D(bIC6@Z*<8>!vk-HW60}6?G0J`HVFcHHoyO6B-ps)0K4;b{4DLJ zoh0yT@hK10WbN32BBXCnHi4Rp_n1{x;;$StPXR;@daV3`s#Do-*n{2gh`&Gi(-XH2 z+?9q}`cdf|Df#~2$g%s)A+`_rn~w>mi8m-8jyS8G)l6A~09q|OrnV{}G=WDEX(Yd4 zBQ+`D=d>Qw+pZDd?b?f*8$HKM1%&AR`gE%y+_c=Z{uXmv#uxP9t{zI@2AsbXTVC(f zG}+Kpa8MB_iI_Z()m;r=@Yky=m)KsKKP0kOl$R`7NRg)Ku|&P!K4OE|&_Qr+b{*k~ zO2uAinvDpES%qrMDy##z`yMV+dm zFFwY~oL|3_srhAtW)nI%n~uj5gRT<$$&$%-E+! zG#(uRA!p1(S^L#{NIGcMOs~k!%j}K{9xI?*%e|ms166+yyQ^hKqu4VK#S&dF-JdYhY_{$mwc74I*EaBU^n zs&fQ+)Tmq7%=xOua?=K%0whQe(B6Zg6@D*OETBsd1;NSNI)5`LM+ldY#o%`%mazB1 zGu`b(U*8S7WYv{3Uo#ABls(@1>u+u{KHKT_%LfFkoS-85By_tW`3!8D5Vgt;`Pj2- zx6Dt!zq?2GNzLPotjVfOu2~HIUvaU*~YR1u^5_~;qLi+d87NlvmQ%U{q+{) zSU;d$J@{NZ_Ou;_3QkDP)%w zB)yWYs3*LC8-`&lT~I`Qso^VPC=PG69BHa#JgY|9Ztc49za#67-IsPwpK8Ms9vM># zoow8@OJE``TIQzUJ(ZGxuUrCCL3BFn;Ue{v`7hLU$QK=t@0sx^SW{~I%M_(CY5M63 zda|{I6-XNA*&g1s)(wdiJ8&;^7FP4~5R@8i#cM=8q9mMotFpv-C}dy@s2X%qFKFjVq>kY$G!t17^J2ydw7;}F?r>8#p_T5k7t9LhrIg*GnwpL z@2Kn){nOLa!X-NxW%P6fPo}Lxb4pXpy85=jodF-;ax^#}hfvF=r{tNHe1&)qJ8S#Z z(cw5eewmg@dqCQh_bZ}1y{RYlTe~t+IAob(CGub5{T8D9Bl?p@O;Do==ssHz&ONwA z|6APg$4p=HUn5{LCvJZ`eJgxdvY2>D9f-tx+qTfcLa79AJ8+Pxz$3bq{6YT6GgRZ+ zP}DNkrK>@r0@G>N988$;W32P+#Q|QxFA40X*4a~+1x^jTD94YtuGQ1_al!0eKWcsf zD&Js{w#vL!CfW&;=slo*5VHSGK*7I6a(NJ4C%4j(Y@YtBV~P7Vgdn1JW=`W7WR=9V z{@>Y96S^E^MSXw{QFY0(&^WK?{NJe3`B{Gv9zUt1_Esq)`NX8Hdp#aLJ%aDqC$#5l zZqSvMfnX(MV3!*ht#NCrn8;C`L{W>e4l! zYurPiG`TjAk0mh5n)&O`J|@u2dUtSJ5_pjpLj-a&xzKP@*JiZM7KV!(+|TMCA>6iC zQLD-3=zt%igElP~YU{*Cc$#a zYc_*SzR48Z(AY8$tlC6T0ZUwj)fuZ;+BeJAm$*x>w z{p3gs;yUy28lsI1;1+sC+Kh_b;Ohg06p>yRXV2rR`sg~3W%XUzdP>jS9>~-M>F`kC z2rK8{J{`$@!}@~Mk})-FStYU}WL0a^QV1qdo91Nv+AJJ1S{q-b}PD<9DWy!cy`+qu$UR07>E zLh_YXq)er+O2&~}lY7{dTKkwv|A<0aTJ&qt8~Y)o7s=7x(PDk+CZOYv>#-1`>9ox7 z2%5;AX#f@ps7U7kS~V2&|6ui^IXolYn7-~wj-~q`WJk9j8~H4o(*qlHl{+U<^rh7G z7moAfKNM0ESI>V6`xZhb_v%j5VymV*k({hMzC-(PIf4_Ctg9?dlM^j1NpkxQXZ}!= zZ`FZ4tR5Nor^98oXWMD%PVONgD!;A!2Xz7X##;895wf;K^@?NRbFj_k2{KK(%_v4P zR~pDyHJ^`VjI{#M6ckNy!2?PDjE|(9Jn4Q?A*VOryfAaF?MVzy@)cF=f9Jw?hueWR zVmzH`CJtTdt<&*c)Z}vj6-n0+hA{6=`@c9I$!FQ#UlE-7dK}`k{+gq%hmtO_F>$x) z_!Jw8-3~+^dg!wNXenS@^V`xbc~JH1t(P^|GNV!6ZrTy;tHytN^zXfvBkI-hRU8MA z(NPN6gH$iqqksFcGj`?S&U1AJmGgGH7*h%u?q<_&{{ws&P&VbzTklCr=4ua+OMan& zEwt7c>1que6`a!PwN-Z*GH1?$H7~TWZVrl-=PY0~Sx=Guj$J8dK=_f$!{btr6-U^i z8dVq$zjQ!wALrZo4cF^jYxkLewh}|Gv_|5vTp8*S7Lu(#m_2jN`W~w#?UHI7N)AJ! zjxP%Sbbf+gl}m!R^z!cm9(p}4=bul#Yfmx}AI?l;NH}C_O#;W>n@BxR^wAHWu}q=O zyWL6gE3EVk?%=Ca>-x_G%}v9-7M=niUWLkqke|}j2>SV`awZP24fM-BR5aoqNvy(Q z-)R5^TGRqPvIRIW&Ytt$Fs@8Bg3$E}P@h&4Qo*x37XlSF#q2>(?% z#(0$i_kv(09#a>Cz0iI&g9MdVe?=k!2cUuA&Q)l>EfaZUyTib4zVL_~kPmHn*&Em2 zf2SI+R_QN-t-?8&Ud!}$V3z*}=w>8qaO)A%B8OrwpPtb8PpD&oM3&CUq0GfH-goAr zybIoRMf5Ne#v%&Z0*<<2N*$*w$S#s~onn7Q5vB92!hc-Um8ReK00&lL9X8P5A^$yl z2Hl|}f&FxivUnMRvQ%b@EOY>0s3a71O9S;sY~Fns>1J&SKMcn)kdnCIof<|<>d^vH zkPD>obR;uctcY)uanQ$kU4D`n!L!9+E=hWre`Ua`iFaPN$9i)_Htu{#;r7808MZGF zjRub|w`VS>#%1xp2kHl)?eH7+ur-$>2`=NB0vY}4kCy@3zxx>H|FkLvyl|sanLp&r zxS{A$z4?7Bq6L8+Pa=^vE$UKn-^CG0s^c-v!h2VS z`2YrFICT8*#Wk}#`Q4mYwFi@4OVTMT-}Pmh!=FQo`d$0+?CNk4SnEJN}uNb-=kl-XCafCNGRuw#DS zCKHkV_<&O~-LAfnpfBQ6L5P-q$@ViP>h2(qDmuDcFq>>Jn8WL4;-Zhmd&f`31bUzS z1i#@1P!5r*CA6S~()9+u7z&`ll|F6D!?^f&UmE~8vIn2hgNo0gFHC5rtckO8 zA4({J99mxl>wV$3LJ5}#bb@yA^{}7AhT=n>7M|T03HI8;)ljsE>lv$ZHPOn`;Q2Q0 zX~C+c5bDjaFp(7AF&DZNtL0SI?7Uu{Aa-<^uJSMiXF!zqL-x`|*{Y2zJ3TmHgG zKQ19GYSwgMbJ{ChNpb?3o1hdXhjB!JZi^N!@^)sHY(rXp>MAig%>;){*gk5%Mr(P$>c&FY*gIi2H}C?qW+3(NGtV>a$CT{ zJooV;;PkJ{c??+K%8NNuy*Y0xyce|^a|_8}!Kb3q(nm5?|LvM9fFJ*PTR=zku1~U* zoV#4B)nWJuK>(5n`Y@W!!QQ-9^Mj6WFNeH`DsAo~wc-I5_x5af#|MTN|1PV^Y6J4` z##5{@l`)=Eao^)O42Suei*Tm?$%Y&=t@(-4wpt*cm!x)Uq({KokRV@)FX3gK%B;c7 zYS?bIm7uwBxb{gG`Am1OHc^0l?$hMt8^b{7E;H7e`(HrIq@SJfHgswS)OLv0wYwPs zc$b_)KE_+sO#I2=yGQg zl$PxBsT|6kj76CZkM|3q2&%Abn{X@03$Uyu4X1`!MKa4p4`*)mA7Bgz+|wt=W9KEjky@mD92Qbw_jW97}r5!TPgB%ty@yNG<1 zkRW~+HXR<_FW%;l*TWlvUzIa5?9e7k?XtMj-#)i?;k5*l^;%l;+MXAzNL*<&{G+|w znRUopCQ%&UlXa*25eyJ0E~4i&L79d{Gg8}y-ObfJ*I{=78X4I{i|D0Sly*d@E&eJo zAFk&UoovP8JfQOTUM%kM3&=V>Miz-2An)KxO;Uv{fjK8U^M@FLooY-U$x%g=bDaSl z21N=Ek@}QrPJc*a0w_hznl2Js+Dpv_VXhHRD%LPLXG~Rb87StJfeM@S{{iG0w$Kj| zA6COTNG;3*s|7(T5Qw|7D~>}ZZmH7gKFa$b-a76LI|t)})*wH5*>cx6VjLM1;d>3iJ-33Unx4;!sukeD@kI?md_*fLZqlh%yY19E z@a@KxL~+byxuaNyu9q@i`tW3eOL;BVl?rbO@?9v`vS$2hTvAcSS7j}FqhY{Yp=?cPb`O={y69neCfZtphw zNWAWwlkogIW=7wu*%jzi&1;!UCf-h$VWG2HLU9ej$NO$alS%-4s>+_O^H1G&vbzXBg_yCzB`R0LOE?1u1o);7l{1_ zvvo4RDtLhPui9|rDZzgpw(gyxuA!9ko5;6)n~Il~*BlqHrPYcm$Thdn#!T6w=BtMLdd+~w}NUD4R$A9MV8;2Eyx~k?goM?iE*?GvEYPcic+0w zx_t=4tGX=`;&B!#Ng|J?^}v}NN%Gl2moLhFi#n~-GEoN-#uKu>y|lwLqhg5if$#&? zMk)v8a0t^ji5E749HJZtqYNj=(jSDOsi&BUtg@P1Y=1HL_ZR(;^TSf5H(!YJuqGJp z@`JRNR%zrNYukp*732Nbg7aa#&a$vC3)A8X!Dn5meWq=y0qg+BUm-|f7b^md22(Fl zgax1<27~=UHoW~v;=dki1!@*%iMQ>{?lXvH_3>%&xGQowPl+8IBCQ$uLQub`M?iLn zXSnfucAQ4wM1YB|x&O)HHoi%%xYArI1V?!~hNy_^N7nj_!_sNAXR&5!ZA(t)$NvN5 za1L*{VGfd2o#bPvR<)IyLqv!M5 zQ?y1Ks{Y0>&O)Fv9_r7P0I_gN9s299#*AE`%lg}Ubx zguUK`r)KF0HNzQ_w_$N^)RRtgalibK<^m{bNpY~3{PcY5tQ>PnHix9IS>Wwb~oLZo#S`y4cXWtbePb5~|aB^yszpm!|qAlj-dEh_m}+O2>0zw*BL zM@Bs)$v;;j(E37*;qGYr`(kWddIyY?6z9|kG=;_b3z(7lBlXyiZ**eVl}eb;ZU_Z^?R2#W&6$IR^A{Q%Vq^2wv=1F`t@TY{3`{(0hJ_(tH3At~zvv~3vk z@9nQbxuIO)E7X0Dr*);O&Ll1K4*<+{sgFO*im*l9_wpKw(3EHvIx?m6CRu3eBt8gY z_m6Lvmr6{IupB5m82Dbijko9kPeAcsWd0=@f?W$TF7C)pVseEsrg=HSuWs?%I~lg& zxg;iKjuoauwfTo09k%JMoLU^d*0d0382I5Tf654Du&uR)ljtjCW635xuski8UZ`s# zK$gcRlE0d%K54}N$QzSjQtO)NqZbU0V)@e>V+OYzDg43(aVnkg36Jx0W>JcRaDMAN zj!7va-x-zg*tZ2r%2XIUd%|0?<6gIaEvs9A;qq`}JSz6I`Rj^35N{cR0!-XCuZpjM zgaDO{2anWze(4jUN!~>yJ7Dja(pBF*S?*K3iu;5Xv`j=CKJenn3AQ`b!O%#wqd)gD zkr|v1{Q4ij)dGy!@YG;0fY*(M%E9Dq8Uo;QdZPmtm=2r%-sf?D;To3PfnkZKuP#K& zENBER=ymW;Hud)M-?LbcNxm^Kx7bjx2iDZ}QabRC1$~@0PVK7@;5n4jBUeXR-BzFV zsylR4#IXhcs9h#IMe%SwF1UwnljewW6SvIIeR#ZkEZ6&6D^Z>ELr$Ua@mMXTe zwF(s)@un#6=OZ6|30)+d7?icLo$CaNC&^0c8Ac1q8Yq)lwcoVt2C?%5L=pra*r1As z{o3j~Xgi;XP_-As4cHw_V2>QE;haaj3UC+ca+m(dv9A3@9Ro4)XMi|t2ytX*u-+i^{*2a==4J%Hd#@H;7^z{DA7~^| z&`TL6)cHIDN%8hy>@)kIJuZFLpbj=N<)XfoYeOSC3sbfTA#p3YVb=3w3L^9VqBH45 z>P;MZTv*2ukfett5|aJLrJo|;CQ0II2&-onrXKFW_EUfy>l`PjPrrcdiTgpizx-vw zC%OrCAwf)&M-*-NZp^>#!?g%?pI#o`??m?4T-eWX`G_ba9PdOkKp?(jW+OMXOE#8{ zYUWSmn}CTRN5d&HFo_(woGpTUE<#?Lhj+|=ge!>oD!M{G-t`$Lu>C&>HK-L09zHh3 zSPlm-x#W+fwX{VlsFZQOa4X24X(9`QkG`F_le(uW#Z_k@)mYcC1z1}Cs)U&k0FY#0 zAJvxGJKVt@dX>lPzbhw?A+Y~VCy~UM5p5^ZF#rKX`p$f`Zyx`BAI(_qk~ycg$r)|E$_( zCg=ntCy1{#R_glgBEtafq3wgh)yGCdcLc&{ap+PN0v5LjbGNyxa;s@at?AT%VTefX z|=;eJ!muM2Uq#*KmEfXdlkGo#Cg~@u*1b5 z^1hBt=hkJOxpzOmfJqsCV4BL`=^{=n=*>%(aNwxtH%V0VcRzMSlwn#^@CFvSe!m-b zj1K1tK800s6})v)DK^OMEv}|!o2UsbRNx$C@Co)*kr-DHm;ONz+w_z}8*Lt{rZ;(z z4cpgn}VR{qknRq^NTo#DXw?ki;J&-&+o1#-(~h7&O9Hb%C;T!rS# zT5OY?El5vfD{kjmXOLOGYy>23=0CjDtWbv=@cm^^rvV;7Z0!+|nFu+5&sXN5*Mcz& z5LAeXI8{F*i2RPog;-~Y$o1ZxZI8pm({x*V`#bnWiZUXNjJs50GG6QplE&Cn zir&ci2*{mZ!dmTJJc`j0jGDQ?2@t1XMIT93hcE&bWY8{2A>xc$K7p&L(L1^+n=udH z!iVGPRJBejHwRA=m*>AZN4+z&{@~DjCM&kKRuEIsp1x_ShmA-~{G7sVsw%R?spA(w zO_rB9bDEfRhQ9T>%bKPoKE!u;?loR@Rm-1yWq*x(Y z8zm*u@-Nfd+9#GO`9dBH?}V%(;tx5-PmbPWwfUFKcxDPy!jd2+M^eE#C@SWbv~B=#7=`mo8+c-knSmu+~E{CSH(zk~7d1m2B!#f`x? zPws_#edAW;a?~x0d+#aFCq3mAQyrp82b{v7tay&V8s$x;Rc(7>2(#`e zm_V;miZ_8&OIQ!Hc+`ghmRgrxfsb~td+jPQNZTEt%whTV)G9uz6b-1!7FH0?J;>7j?gA{gR6#HLi|Om&=EqT=2Exv zZ4IFw2y0*D{{VBHd+1EXjDAk~`qQ_?eLQG0Xm^BjEY|i8JjNC*Io?tWXLcdU!UCEf zPVg)bxONt<^8AYJ7*@l?7^ct|cB#H>_m>w%IPD6B9#sC}2pjDKF7Ph$ft}dpRHRzw zmx%1UM=-q*2HNjZkaBO@R0&q?QEo=JR8+XKiw%p8umgC9;_n>8m?6~`hBL%dx@1mM z0A_ww8k@6F)=8! zyeol&;`0-TrBa>PD%*0KTLQGD=k7TdzVfY@(*ngMTP!gfm?q*AGU*dBR{P7%q-{HT zfs)8t0UDfh0P`OCfdfD9TAZwWNiSrvCsib+iMG1Rf2`yhgu46cT%G z$_2B$76d#RJtmuK{0Ds>iDo4ykFdJa=P8Cf6`6Sq+WG zBPJ|6_m{U}o!4m0r4Ap|sKwd2D?U-o?;LY%T;mXbQonI-CnaWE82rp5mf~I+-W$^v zpa%`umnW7YRcvtuOS^c9*vwaHWoLfza>vHdQ4Mvt=W=;l+GUt1*?~KLV`03Z-(7_c zE?O^fl`&|`5`pG3hET5abPgDy6|)4t5P+ntvn&V|vAe@s-&6Od`d*Hi2Q_b zqm5207>h9Ect}N+f7B+OocD-!A;t0TR@kHYnJiyq+aEy;_*?a z*>bBDErGp;^6E^vQom6FZS0Y4;@z-WB@WUk%vG$y3!3_k$PKF~DJ>e>H9R-FxT|u4f~qme4sJJTLB97= z^(;yy<7hWK_=qE!yE2@(?&EGYnxnN_O54bg147U7+unwJKDvvQXYTMlWz>Z^<~EH5V{vl)7MI zP%h$?fTRplFzp3)%(ay72E|Yy*6{2~xSQNe`+dX&4pu27k^T)z(E^j#EUL&@#}OQ>k}0qUJ>!a4?OQWsTHM}NoI4<9(A(FT zKw1_FR!cK1HX*cDOgmaes^~5epUf0tP*~pGqU3`ZG6_Pic+GuGFSrL1jR5kVpoN=n zd%*;w`9kKZyKLvV^kc>uNwwp%cpmK?updARw##CZUM9}2m# zU7h9K4tC|4+Ab+&ghjbmnQz>@%d()nLo7_C=x-N^c#A|_L=!e(Z!EfwV$(cf-3^9h zh~}WS-Hd()Nlkkyo7t8{XdR(l#`DldZyVhfkEYqLxcqfQf=hiJ3SVPGg@7iKVRU~4(V0Ml%8@~{--7~NAP zC1k9@%>*J3!p!!EtcVD755qxBd}Z6X2jXxoDhq`JsGS~yAg?*1;86@l9->e ztubBTC>EGQ%wDi)%KXPD1BDKEo7pw1dbkz1Xy&0dxD^8=3;696bA@qyGPpzj#FQJlh6^BoV=V&b6VL}w9mEZkw7UIt}G_V*fZe&TmR2C~`Y zYBan`hExQL1f;`*6m5xf%n*Z!9wDNaygxvTl{-fN5$l3sN2hM9>b*anx@Q`lEk{S?+d^hKE+?%$YKSa&WsB@>{6kDZ*~Dig^zRTeU)p^v<8UQ;2Y;}`rw`F_VM>D6&K>ajr~QqlatZo@ejL9l-x_A)>mB0ZVKDC z%%-pk6<_x7wWi$1oS*p>8W*`-UwLXMc*Iw4o%4x*l{YFNp=w&CJ}G8W%Rh*Mr97f; zGT;iXGb+Wh#rB954h&2L6EusLycRQ09pgB%*%QZj;;T1GXJn{0p+vpJVQ@y33t0`@ zvFQEKw!N5wmVU0@4cU2!R!${5_PKd3sLhT`-fW**hupFEYdbcv$s1~jIjMEw#AXHz zG+zv_&Gm)vk9Ptv0>ya;`keNrQ9L`>hFOKhA_3%}?h9n4g$2wOt%|adtcK;d?GTJt z+`!iGH$u5jwQjcG3X=4PFrYZWy^|kN3#((RHb0fhXMSt zNf0tPm!<0I#J`I=zaQ4FoWebPYUfwaL#wXR=Re@{r{0H9;#A+S>s7h@>GcdZBM5r8 zKB6maR`(P*xa%wdAzpJRt*lhMRlyrQG5VNV5V$WLoyok8D9ynFhqEb`PzA6_B)g$7 zv^f#vmK8|kX{o(3-!aW4JHps*aT;XrxH8h8zGX=TUTTQwG|A>vq88+Id&H~_{{ZgO zb*!a8J^ui>6uu^fJU-_2HI|a`%%V*d;p$W(rGa~Qf*V67#$jjynu`?M81E?g;BJw> z<{;Wqt>Me&2eMlHFo7!Gz(ig!cevpl;1DH0IvnBO8?+<~?rZH=Z0fp&-$zdKCV^b;an^90T(Ba`}!QZ=?=hGNiz zyfBB9q^&CvB`&3t5mA)oRm8H#kjy!!2?U!&Fi{4>Nqyrl8Z)1R-(L{;uA|Y%_*IUU z8ehcpdUeOa%sw7;cGBm)4rSeGedYyy20n|>F{0D5Epm{;T&({9Ncu za<__z#i_>RMVAYlOV;U0wFsRG&oYZ(?Xpl9qQ$jb_<>MaVzmPIalsK=C8`PyH#^s| z2~svK23aZJcsGDIGKtF;^B8Vd%(x0eD&=EPyE{xd{7Z*=g>X>b?lQ{Pb^x!ON>qq) z!Et*s&uCjN@qAgtTP%(9Ii6;Ir>TAJZ@j6LZ^XfZnXv)m+*`>IawFs(XW=h~{4%0| z9;MS`@h~uARk1%afieq=OYJV;Vq#eq+A|kna28vejDVN}n5B+m%phPe1ll>?P#EgH zT{H7KI`i-!J5z4E=<(CHM$_-BX>-@h_?-1$=T161ONl!mE?u`yT|s}0%R2gh+C87x znec~q6WE>^z6@1%+rDOA00_5lc#VKLHmPBS4f~1$+wQ4xOO2&Y!-p|efBOo92{w*- zsbaXlP<*geyrH7_Uc?u3F;Fiz1@xOao(3xRil<0iVGRs zcRw&r=jH(9g?moSd<4sxUT2_+v2Up1UFvON@{d~{2s8Y{@e3E&N|e3lwD&!;h`B7P zb1mH*3vR{AhPRXhZ1_Li2&Q++0YFaFidr7{Ld%jir*P}NU3rGj!GADzoXhHGI^Lc2 zetvqd<-f!@{{RmD3+TNre#r@7U+DrcK8(I6<8lF%Id}SnD6hONTn9FW8vQx3z4=Z! z_Jk4GW0M*liq==L^)|muLUVo~8MEyF08vVf;j$Kg5d}rK-8`?#Dg90@E7)b=K?-ai zWOmS$}XR{FZ}p`rIN zH!wc*^)IURHDSEpUOJAd>%DoLYrn(CO+s<;za{wV=078+5S-3B-|!s`E_vu(Gtg;z zdh5M;>Ag)aIzJh$@u}5w)Z^g2Nq-IL&VCE{-7lj*A3aab==5L3$HK9nsPwzTX?=Io z#*5MU>%Z`L>M-1MzgyPtJwxKTZibgGTpjLlFH4sRe+%2A`}kd0&%IdJN4b3oD_d%> z9kutTy)Une(~VfiAyj#`-DCoegosZR^2ZFuQ2#H>c5oL zoNDdW_wn=4_?&Cc!u6dby*6fQaq@B2>CTKgT^${7;OF6VdPh%FjZAzzXgS(*(YHsw zzI9hi_-{WyGW7S-OVgQo+J8My#eFZXr(V$N`;NTybJ1`3H~7-@@1r>BxXY-*a~%z) zV(EIZ(c4Go=SLgw)I)BY_&q~UdYyl{zMFKC`u_kQ;C}ulc28*dLub#esH{lt2bEgxJ zkDrHcgsxiatLSv^(DXf5@jv6-XF5OQI=bGsE-}P zNpNA;&%^xcdDi|9eSY=6x8ga)&ORIo| zi}<;pe;KD5V@o3XT5KYIry0EtMXq;R{efu{5P%q z&%sli^i-{0hB0)!^g0{rd_*Po)3-+uhetg>Q;m6y-Vp{Uxn0S{0R1y?sL#;_4CokNiSc0C0}hX zO|&ZWt^8N78ee$y66NTAx(}D1gK2Tse~X`&jc#$)&8MihzMLH|PpRwt6JK8sewRm~ z_XRowm`ms<6BD0ZonActD&X@ix9sWnB-%~HApMaR?=S$9xm+&>!dfvQC z#N(~_hfl38Jug_x(0aU0zAdM{4z#0;_5Jnnr!($dx!bdvv z@zD4>{mryK6Q^#Pt@;j*dap~?<^0Z1gO7pI`Wdvj_x=YuJvXT~)z?4dUXIw&b>mJn z7)_@!=r-2%oJQ?Jiz=_~0vG} zUS;&(ZFih?`HL!Xw^uX9oP2++e~*hiXivRO^~H2nFB0YJd(J*f=(_3Wr#fFn>wn=I zUY^ZILSMpt~KYOml%8LW2ZBHc~z+yoa0CQKRWTJy9IXR`mer@`g5;1(&hX(>g_q5u5&Iu2Cg`l->28b#*T)*w7ucd#&fIZ zON6;_(9qL~<{A${Jj<7*{I{jt-d>&M!F2T>-&enY ze_d%_dP?VBA<+CdoWg%Sd&|?mQqRXjrSucL&sEFMS=wJvTpdk~GWA~-(SI4G>6q&D z66YT&{$DyhU7bm!{fW=c)ey2cCm{ z^z*0QhIPi5q1Vqr2x*!3IiB_7ry4qO()9iO)u(Tc%^6x1qbnK{nZHZX%;#P@z3a^U z>wONJ^%}h|SLdnu9s0fWy#(i8+U#}Q-dz1?=(^t;62sx|p`ATPI$k`?>3G+8bUJf5 z(1%ZrO*rW^Gjcl8+0$i^(^O2_MF3Ri`Doqtoi=o zKJ~pXUEOYd>Fc5RzTwmEVy7A~oax4&eFlMT6K-|qTl{=o^YYe=dcO2$662jd^)4H$a^b12{{R;;dv%>0XnE;A3)IWvC3JD{C&EYL z=MtwrVCd&d)!X5HYtEVf01wRK8k2dmp{D&De0%(-oo-%-PaQ|gv~_+4Z8-Ql$4aep zQS&*~>-E-eDy3__jJbX1JzPiNdKk|7@zTrczP@@dFo#JEIN#&5q-E*qbE)Qb{{STT zNc3E~>b|hE;pRH=FRzKe$TH=_;$ts(>BQ%$#+-CtORIX{$b2rGbQ1mpQeKy-zen?@ zH9w6x=()b9HSxb64xH)7omeR0uD&4jUi#lv>2ms>hkZ=za`k2PUs0o_>+h!e{`6a% z%Z`szuNv=(#+>NgwEQ1`n4y?I- zCY;aQ_c(@}LtjwV^j{O@);C<`gp`7$)Iug!tru_~0 zggSk7-v*mcxp>g#8PSz0FGa)ZI$S;`SHth&H9jM6i;W$+9CW%nd@M92>ge~Id;{J) z{GW+>yXm{tceL5po|}%{H`BLE&r#5C4g5m7$Z5uxsi_TF?t7l0IgC0v=)70U?_Mig z&%?&Pw$k+X9~%AYbQ&5|cjb);Z$G~Xxv)5BO()7j4 z{A+j7&qn<`&Lc14;xlP|w8qemjCc4Sk8K&ucySE1E%=N%V}PaPLG zHNLI-{{W3{bI|H_d-*w>LUE>a=3Zwy-kfUd#+TQ>OEV2GUjG0i^IW*PE$H>VZm(ZD zv);UE#JO{AE_dp@>&H(T8tv3+db`4N(X{8IZ8@Cl%x5!ieFpP=H=ITtJbWDETIg={ z`ill}HlKQ(Ty?!~Up;*5iNtmDInkW_EMAPv=uRW2I`gmIj?w77S^ewlTj>AU70S{2 diff --git a/data/whaleShark.jg.webp b/data/whaleShark.jg.webp deleted file mode 100644 index d389c3f75c60bd4c59921f4618843fe4189d2e48..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 38300 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%0DB*}p(dpm6vRhBgt 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⁣XygQU-r`b#F|O#PqS4zN(!)A4f^z`4`lw9K7QDJb#US)#Kq)l5)GpsEO9 zAEc?N0$S4F?K`AJ(~A?zqsNl@Vb6Fz9r&u;xm!yvLUkLBNMc>Xy_m(RBR#C!{Izq5 zSHpa>S&}m?Dy#DDDw8IrmSm?&-L64Dn!q?9hj)f8-p)T0d3&R&$LAaYWpout{8b@j zsd5lODn!5uW;XQ!+VC+v;L&_e;Z`e@>j^44Ef`v*8~!7|#!v_$uY9 zs);~LD46HN^K7`f!nd3oa&A;V0>nh{X1 z;h2Z=rpr+!34c$Y$^u{TnU^sf6rY38f2#1nXHZos>JrbSx8{G^0-Eg_Ukt_PRLv6P z1uI&-iPP7&)&W&3GF-`oW4U&gRb^cbRUktwmSm^Z{{UzMJ&k~3!!Y9%sRR{Fn!u!A zQQSSt7zWv}^QHq)lrY7K)a59sLxmLWV{b-(O^-+{5;8teFlE$EtgM=o_;n{jR+mso zu}htaKD|!R2-6&10|?@VKPqTbs&GpYrP6MFH~!JC*I6f{>n|#t*VA(e@TXS~Y869O ziQp8!fJfpIuM`II`K}xS#m&Z++BDL&f_t;&g>DYH8N#;?sX&)DMM~rb7AXaozWrGH zMXqutRf*wMc?&jBVlv8#BuzxYJby_9G5bHtE|Wlelbqj*6<0JIi(q*MxpfmUEIdo` zXH8OOrlUd_D5%^YPhs3dD7A;cpEi8i#&X)0odH_Xru?=d+q7E-&5?(39}~kk0aKQf zRP@uesZxrF3nT_%{&a>(s4`9z*@m84!UATiNmCNurUIV_+j(CM46#S>Sj4mRiFBtG zn}du@D4?liC2Uj`c2o3iw>@B^E!2EUn}ZrW$Ycb74DgVv7B0{hZk}thANm_5;7FdC zTIQ4}DJpQkCC}*y4L^luDU>Tpq!Njelc&n3ao5`2p@EPND%ViTSOs7ZQb8<3^zC>6 z%6VzxPBoYKnkwW@X{eL1HfI5>-66$Wp);49xS30d@dCY56E0liP*zGwAxBZ$xDnA3 zTQ;TvCk@S+HmXfT`D;?8DM&A^M6h57OWosYzC>aCEWkelo~h-q(20goKkU>QgZi`- z7InOO;r!emHcUlQd?IHRC7aK&>0o!Z(CY9e&#PRH<~)Tn;7P=+Ca_^B$EPN;WXW?t z@svVj=v{~;0#892Y@~AkR`Kbj-QLsCLW4%WPGi#%~tjg6mF9{`0 zM6wf5qFjOHzTSbqSfpVsM=2PE1{{f!9EVoM&$KA3CT%`U*l-gwVcZ->Yp9`6!YXGO zD4t*Q4U*BOcr$H08vcfK>RP#LmZc!eP$vGdOFWorRU1z_XBk!4UKuXBdfUSRGa330 zy}CziC495YdUyON&Ujsc;kecmvrjcMPM0AE{{W17pPYB->ef-`YeCVTe7bW@~~+2AvIKZ`r0=p`#BsZ$G?YWd^L4T z@aX1LqFm($I#Np&KViFiM^5WmJjJC`H&;D;uF!Jn#5_Kle2QFW2Fx^4u`D|lq)`a1 zlQ}LFlc|9Ru_LiCybn9?!L^4MO%?SY1!zf2l`N)@JLg^y)#bVxY(|n{tDvh+v}zh= zqr0c5^%3gBQA-D%C{p+^`Myx>SX<{EG1R_A9I7fTqVLzNQq@NGG7p$soAm1yyP-B0 zQ`+8;MoXZJR+|Q+rLO%Vo^p*Uo=M;i_aZF|?pUZoOwB4$NIiFnzg!x&lDe=aX-k4j z?ET`DseBV#sE8~HZ~Von)5!KR$$)4cXHn=a6!K)Py6C97Qcr)JKSrq`CmloQ3ZJt` zFJVWNJK8N1Cdam(qt+hejMercl*TDZ-c1%VM{q4@B`!**&^26<+9K>tJ_rjNMOEO2 zuo6m>yTKIDBv!i)ktWc1q9Bbu96;YgY26`;1jaWW@fOw)HsVQ4mkoGM-z9S;L>@xU z{bAB!xyu|C%~r4+-UOQ}DQ=`HNn^1B2S(BMLZhUEclCr*SOQ#~>^6a!$}gfV7h@8s z@U=CC8x=7O0BaX$hZNn znc}v9>=Z`b<6R9qJRhxjn^)UL!=Fy<_)%4uo6 zS<>v&xsw{3i{f)uvQ!DXo#V*XmiLx^i{SY1(b7>!;LGxZFai(G(UZcjXMNr*rlDeE zB)L27yhhq~TpcWlHA)i60lNFcuYaL<;j?XdNn)lxmXFXJpQG}+5R|)VX6pOHL!q1` z3s~D|D#5EGx;-Cu-X|!LR#>nN+R;TsT~;nF0Kf|a)!G0UEbPuq07d(401*s#KPWDQ z6af9N2kHnVK7#OvL#DuV>1dfc6{5*<%O0=m8MN#-R|WE23e=S-E$pP0A~JPUOr$Yl zY%kI?O)RrJeS%_}t2X|zob?8mVxnLqf?W2FY3tE4MrXnPUh{V!vka^^E8!J5jQOsj zw@j%L(g+Gt<}8FHCs1-toJW!M531;R(R0?4U-Q=|r}W>Xc|LBU)A8YN`Y-D6lKE$_ zGGD?s1jrZ(ug@96gB`^XkeZAaFRo<7;p#qTnN_Dk)Kc0~fB|xKFu%h2AGUhhliTA% zY<9*6;XzIsX>ye% zpVjk!^3E?3xS7M;SBEpP#n-N{IbsJ@9u0*~m}Ow@`jt~MYDt?lu1OYAZJfpsTJhA| z#1}31`cc@{grWBnxxNzX_4Z%N&pp{cmpqcWf9V-@nU11zg-#*kr|~OFkC3g!ljRmc zZLJ*sca5p7KjOjF^!H~!<@f5?2BNy`==%lGj-&5z=^?slC*RWeM8(^9NHX}S=UDTR~( zDkX?;BPsblOVs>ujr9CqA7*(qXDi&NQ1eBYv8scd@LZ{fVJB3%)$@mpLY(;!2s>TD z=z2r)Jl7w^i!_d& z4eQB24>FI$vyItE3Q($SC-L&=zY>C_sLGe9{{SvZ7`R3J&28fu>eu5O zB9tGaSA0=8ufVz4+LJ7BLoU)$;W#;1tifXqE&il6jVwoOE7RkQcjm^u^)&e}A>x^K zlCDbiVsj--T-2iOQ0WO^9m%`JOI5K$$BZAd!rU<8K3B)H{{Z5+gH%yU6qV?dbgp7t z>H(dVa>UudcZ}PkdR-e&n%--;4~p>4mjL0;Ost!WCYVW?iq({%64FbMl(wZW{^wzM zRcgunyF9tWoa0A=XL@5>D9xZ;^ojDxun)cZjod*jp~ba>?-wgP3gAZE?w{#i6q(xojxs=)y6LmQ6g*7NWcd>)0$p9u~-W?VL& zwsuaNCQ{|9a%az&l%Z@2k`2j!DFq}3yR(RU9dH|?#h89`Z2KzQ6j3ANR=XD1jQw4N|dE2 z1#NNDZMwnGU!%6eGDS(lCe$WU(iEWUln6HfgQu!bQQxdE+i3I;1b!E}%Z;2pUS`Ab z3^Y@KuL_^VD^$%W3Mpi{)plY#c7a8_iO#TUoVm+hWW{*D{)nKEnV8yZzXkYtiU@V6 z=qT1mZQ0)NmPYuq*Z42MONjV3Sv5b$a>TmOr7!Skny@8++F4plo$YSVa~uBeI<#}Y zDi&*+J~r_ulPq%($eEUgiFkcK{{X7PYvgN@J=;pc`vJ2S4`{)rj*K;E?l8QU!9HOq zD)AajZf6a1Jk*-S(rF)o+fxQ+vk*f8un!8eK%*)zT&Cy(i zMRf9PUN`ZtiF{qeQ$I0ex%3N?j{s_-RE0}T-034`@9H5iwb8BfCpEP^xz*wI0+wAi zDJ@^iLa8*bU)>j6Orr*jIdL_|2K96NX`!{bFU!PlhR}B!x{Wy__VdkT1Mm z=~Xf+JfvW_zrzwZxA%p$4$gKf@lC~Z_5&t|GMPBE z*@05(1nP8=P?KU6)lMuyu@G$y$zatSO;%3e_GrShCQzwVsg+tMrhz(&B_)ou_<=;F zNl*=DBeu{bWV%lWuk+`}6AjJ0rcz}rQ!LY0*Gi-ODrzRnb$}8;0H>&Ndy}Lc<4bNd zXGuG}o)6{MIM?P5GRTlj(JK;BNJ&KG&ntwE)&IuRneo!<@of`&q2t*3ePl@=1BV4qn za#W;}9n{;|j3oVr!_73*n7E*Pg6uDi$vmdMh7Lv)LxIa2v-X!7a zpW*l`sS5sQEOkpl3dx}O4KT`ATQon!2FhZx%%FrH;`h1cf_tV&o&MkJ9j$9DZAqB2cwA>{NA z!aImwK6kFd7dC29QmJ!11SF`<0N&euc8w`Vgd?Nphbw>Wk1_SBmnZPZsj5nhyM-jF z&Aku)A-svRtj{@IVwpx%#VHA?rvXK;U>(Rkhksk|44W|w8799ERWKz=l%SBMDaOE% zAz!ewrN{E}q{x{yXh>pVh|Kt7z-&i~SpycW!=);0$_Zg>NE;&HH>d9a8fs=%nSo<# zmp4*oNSsk~q=Nl>+7cUfeL~?M#f?YdiaS5m1Ik&267?Qgh{bmbGY9 z;y`zA>Do6~5|l;oi*A2|u}KHvS@fd7+{!s7e(rS|&|mb{9K(M)ow^V5{%9uG>dkX5#Q?JsFz*g0tFhShE>o=-c-jHMlo;eTSB2Z%G|b%J7No{{WTl?eva_ z%QkT+xW<^HE@3=SMA;J3Q&&uqscV#gmFeoG0c8t|?;3r|CNOg2lMBcASyh3pW5ky= zDFCN3kDcf(nFWw@Znk@}kFX5tv4@!wW1+F zkPV42xOfdk9k?u1y&~=D1CfFuKnJ(HEzG5B2t_cmdVS$vX0X1+@$3M!DlJF0SdGst{{Z$+qYj$C2|y&McOZXg0r`)wXd8d07&;|yg&{eGcLf|6s)D_ zWQGj;ciJM-Src?!EjmLRhk>-YGHkIjz(YUEFr1Ms`Up?~-OI)IL!f84WS-`UK09(UCAJZQOV%WD4TqxAm( zrTIQ&_IU8!{{TBZv&%oj3n}HCR-UgpNX9smUovF56!=CAu|q<-mjzPH)&BrGp@24) zgrtC7Ko=ha^-tQpZA9bawWhtiy8RXx^*>AcFYHH;rvB%ao~!CB@n6;D_rjxpal<6$ z-chh6;*+v&O~L4~>FSk-NS~&l;ixILi3m_iNJ>&licRcwJbb>7m#5`DyX4yEnHX9~PwNIxlrG8&9SCkSJvs&wNAr!=puar}*&!|pa^&KYviPb)8Q+?+vlQqwlFwsg7vJwlL@ zsfkh4wI@@k007tkI(gdho~E;UlRa-6Zk~!-aqE_7&JXe9DDvhr6<%@4hZW4&&bhR; z6OdCXT2x1oC{q%Ww{^SOuFX3X{i8lUVE)=T* z3Ai?}X2NY<*|O7qj9-v^XM{L^9p_f@wu=z{7=TSAnn?y^sgr^K0QZ7a=}8tABKmnu@(fd6$`OCVXNt-i`SN8+s;N#5QkmLiET1cuWw0QE2hG8Vl%>Np z(_6nJXFTQcFDLO=hS_eLhg>68Ld&^*B{T6VfF{=Bb2PT8lR)!sPrAJ#Z9WTHZ9JMk zhFGRl{{UNH(sNx#CY-n9AmSf^N=-z$WU}-E;E~eXJPgspIXxfEhcUdluZBs>d>!G% zQN-saK$(u>ZkfnJKQQpz`IMmLb~ir3N|6y#U&Lyz7IJOIo-a$Ht;=~2GGa7!Yd?mm zMFNDCv)nC1NfzH>)(iAIOEz{~d(PZ*;e9l$xt=jR!G*|@Opn3OSeK*#5J#7A$s3i0iB!qcf|cRQK~Nf2S_NiwG0Q+QIG~I)Ca1 zGjeTIyqS^7sGTcBnv7DRR5!j~?1J|xA2jZbzK z*;`y#-Gs4BmUNuSa1RLKo+(R9fny^uOC*A%sXk!(l*AVX_XK+06{AbRjquNbb(y;x zrI%GAbgD&^s%naKgr)AssRmTp*hDUmSzXA=JaNleTX(u$|mV|A%s zl~^fhM8XsON&c4v{NtxZY1PQ%*IKS$iZD-!=RBMZ!?=Aj1jk(Cke~@8 zNXp*W$Tp{JNHSw!4OQFK>>V+t&D-zv7-o@|PltAeB>jki?$>^-@@VT4I zeqN)@Tt>{eH{fS2*G9R4B|1^4qsm;Jm?xuN9FszXl(;*-27FlZ&nmfXI2KCCcw*+$ z%LtcMP_0Xxtxi;?I+6(4A+~qv6$x$NiRr0-6EW^S{9E&P9aA+G#{t7=R<90Jnp!X> z1Q6sZVw{o)cK2&SoSdD=aMO%%jbk?{VSL!+j7JNsuBED-EXvm{@@kP+hs$4yh|Q!#j|nRwLRt!UV((@LVq-@oCYn@d1mdZ? zJgLivD)f1pjN%!)6Pt$8k*c0bQk5xfyN$qayk_KUOR~-@aGx)u6jl+2Vqi*?w9J;W zuvD9X#jS8i_pyqLZ<1t}2>K^Q@QL6JPs9G7J<80!CNC!s6;m+@Rf(A`Qx)bC^n$@a zr~>!y#?gBcj_We}kAB)dOwOxL4VzS~Dq^J0q?kmx$VmlkOJ9HdLmTGo+gYQHS%-~W z2(8H2(hXH4?+&J#Wd8uqDs-|`m7}p29?Cu7c*+}BhH-u$9H8YsJMje+S)Ve~VM~=e z!Tci6howfzQCCr`e`pz$T6~_c=G%~bkHCzYYw+623e^XtQmJN%h$;zkTE&>9i!tpJ zo57>oTpk|bw-Is9S@^k0jbQbvl$xjT3@#$)AA9Lp<{EmDvScXM&kM z*@z%d!t2nq1#Iue|8AhslmZPb|B`Fpx&3o*9AQJgJxx}oo zHvrFAjEU0pOqDc{!*KiiMcOCyHl7K@#pfOr)8O;cl&+dtLeEtZ`EA{zLvg9Ibt%i( zie}3zaLNZ}jlSDd!LuvR0$zRLb{}4W{P`*HW)Dj>t4G zF!>2uh#)iiSU4~ebX+UOjv0;5Ou&W8Ov9kC(0bkz$Q{2hoI$3i!c3`h5QQyaMQBaZ zS(txv{{XBA4g2tX;#~@cWTVAXHhnE+1lnIJg^5TneXf+h*h3RM>Bo7rQn>q=X=&00 zIH^!eA6K*czy~)Y;ghTA<|16lrb^|Iu7LrMUw8qtUE&mGpE8t*YSk`qNH1_lTlzpV z(LC?r(<*pPlCe+2Eiy!rB&lqql28kF>$FvVHi_)a{sY{2!Z-=ez7JW7%v6~(l&X0| zgpWGx0n}{dZ?G-V<4q))8o5+#U;RV;#bF$G=3HVFQymy?7>X%!*eIozUC&ZTCAw|W zHk49ZSvpqLzRwkKK9+qRNye)spczXVLDG5yxB0wOQB9h+FJMPGaRgI16cRGklQZ92ej&6PYI_V(Bpi`4nXoxL|dIu}OA*rQ=CLm7LmsM(J%l*Tbq% zbDbQu0i?|UlV-d^O7d+k8L~L@jiRG5Q%Tem5iB~pS%=IB-6a6UKsvv{j9culD(5s{ zY9TXMI#LIfNlOwNuWtVUD7e+zF_T>^lxDszs=ij4a^-oh9BS46c7n;;xic6#PKNYq(r+Ih8X` z8)c$KvQaHY+JM_=v|!a39vy@tpA@5+GEydqGm@nxR!Z3H@pu&1vo7P79=f{xI83J! zrOc&CvdJ1$#53$aXqh@^B-T$x{1dr7%lyOhgGYj6byVVzVbv8f>6WBS6*B?@ZV2*+ zQ2~@dEJSOss`T`?qO`RB?9^K|XT&>!m{$fl!q0dX5`!xW!!b#cDUmUH)=(_u^>XI- zxQ?A2S13ka&OLoPlSYTH!9=S1iHKqnmII@-cE(ijaZOUAFvNI=P`rtR%BXqikmFY5 zFe6XgeIu<+xSo9U5|g8y!@SIz{5rBhBXA#9&9WcOEY(dg;xr){2IzmGy-^^~(K7e_7BnW`FQDNIsGA-zHSM^rVF;NjHq zW!c%9d)g-#9a^{kwAw|T=Dso9uR1506kamgCmZsFTIWqG!nc?;VZFCw9M4j+&ss1`krAsv1gHbKJtCC7l`IEb#IvbI1}}S00;TIGDvGUYB`Q<) zzewuS)U3qERuzFnqOwbNcxkSSjjlit${@S$Z3^FI z*%Tdb^SzoPME;=?>@`?=Lh8{ifpa<@y+lfO>=I(i0YSkI8YQP~Ge=1hZ~p)W<;gq5 zx0)1w3gyl!mc#%yXccl>PVCRPL6=Px6;3ZUNC=hXM8$!nFS)+wv~_s#rMaIY_5T1Z zPHRF8;%EH$ifKhUiR+|T{KQVKyi&AR(!P}`yJ**Hn!5Swsh#1}GJ9xi(L|{l(n$?_f8r@c za?Ko?;M?rV1@6)M8eY%KKm;V8AVQV_;GhYyv$Q>^2t23K9B{5*`F){Fj2S*csf?d~ zy`verz$l!&2L-Im_`I47I+lH9T|v_>RHT(DXWRT};nwmarycTiiiV8!B%=jv_E!eJ z7Zb9q+`ox&LXR*>71D+wQ-V>`wCZ{>a=Gf%6)pAy%imKG9|`CF)^AgfhSo5o`+pzt zpQ3#$_998be^64+TvxA`%D?6Mo{{0V7V9z`yu*%VjEA3aUKZ0!Oo;<4;nHcQZm%6z;*KAl>*_&~gHDvSR3U4cT}Gh?Q?W{lfYK6zP3|UMUy-F9 zouy70VxS$)k3O-=P*>TP~uGEO^?I8lRPoJ-4-aV*zWLIN?YR~uDrN~VP< zDH3G^r8XLi-A?3&eN1K>Y1^}N34 zoI?_mm!)GANGq9#Ve{rF{{RnAW|+=y6L1{rdl<{fd)8e(&W|209e#%g2j)Rs#c^8~ z$1|Q(ottrNbwX7=B`7lGNk{=Q(3H6$hp8`n$28u>P;`#C!tPQ!PB3t*FmS?hzlvo# z%%@LQ7P(Sp&G6DNY8jOI=OU_72vQ&h?c&-JO(IdUc} zOsATgYbS3EfB@gj{!$~JT91}$wC{sQ@M5Ps<9RzU9I=|JaLhWIoP<+JsaTs_Qtc{Q z0S-V?y><sGk}-Vm%Z3w=;Cu+fG6qn?B}g?BpNM#=WSu8TP%Pl-EcUUy z);KRtoT|?^@}-uz;gqQ}CVAmX^ClZXgj24Y8OCtHM2S*>D=1pq@|M-rtZicp^fYP} zQZSAIW;_>&T*YBn*A%Ogi7E(o|i@>-uj4mTbDEgXmYpTjF)X zd|Q;syf5L7N?fX3PL^FfrB-3drL+ z^>L9hSkX3A!i5l6kU=1g?gyxXuK}8~=pJDI0MwC*VO%Os4VCgX7l-30rAh^Irk?^y zDIR1<7Tj#$9l#FJq;(~?YDO=`in4z-rOK71 zCdG!s*mR7gCl`ZMuy%a=@;R2dQkjNH!E>aH$yTG*J92-D2~98J!P)Vv z;orrMQl!eO&G~Y6A4x7?MKyX<6((wdaK$8)oxYy2GE!WiQc~dB+&TEM=dK-OX;>1! zhhoyGSiIcI8&WkOtv%89C*tqzta zaFQ=_M*U(?uLsqigbqjH&Pe6rZf4AMSRCAbxdv?7nv~0$qfASsC<^?f5Uo}lhv^#W z?at#pRVPX(i9RVj$mJe9^93;Eygr_n44_Gpx~Ww1&@%&RYCk&*fm=d~q z61+*|JEq#)0ehaIyT+P&Zf^!Uy4y3&o6ndJfbLo0XAiM#e-7dmRH+m}Q_3spQid)W zrUkQ=Hm6B(?HX!$?ken!KPP;ukDnPMK43gG;>?xf%U(H#;ngYeCHQ~*^4*oBs@jFa z*}6P)S=8TV-{xbT9v6T~fg8e_T{{RlKjOiyvaiIq zhI}=}ueWPtfK zm)CN&#?ESZJwJ%JfJIIS67ptM;&SEBQc>nmmn}+r1G8C(Zpxil_vVi)jW( zn-~=pHM0UkC&EjFI}+YgylmsAw+|)}l-#OI2g!W3$11F&pX;VzHIs!cO3bt;#3|H= z{Jyc9M$VT8+@q$;N#afkoO8Y!DsZ%!a&bu#0BKYN{*4+(3np^-JDjVKxVg+;R>Uz3Cj!N4@VYr(Bt4f(hXG7KdGscRHoT$k2Rw0b#TnF%U zxV|Ku8xd)Wr%dIhN|qV?ucco90K623ChI0;z--Hqa;8$PUSp6ZVv1!^%nqUmcMDF$ z8(eH3tR|b_OK&B4PKPn`2gGBAWh^OG3z)Sklq6`-f!uT*FWwp^Na*>9;C^W3vo=cp zE%@9M60RDIwIs`%EkOB@r1T*AK!}>IIA=pEia72r5ib+O>TBgJY4ImaQ8M-qzd_%$ zG8?=b3ReT<@f#~m#HnW)wN%oIke1XZup5#6Li^sv0m`b)eu|pxjg0A&P^oj|C?u%_ zqfjHE8#w*o6T#j80Pj6c6ltbS8qgK3Woji&e=GdX@B^-oM`jLua7^vOY78c+62hoy z#JOONBE$0}gXKLOy@z-Ma_rB39)A@2E=>52s`{lX6ToZbs!e4lj>~P*r1aDeQtloq z4aL}_(WD`43nX^m=L(8> z$*cG*xhlcgw#3=4#H z>BMjf+$~y^6bjNhjqEQJ@%b=(7}h_7&BAeM$|+DvRQGXb>-T}QM@5)T1lrt0R7wlb zmQlDqUeLs6nAR|G{I%f(^wvpLg}-t7zz0j0GYpDaIg_QzAxXNDt$-f=AOjKNc4}TY zm)2FL!9?z019S3Sm}_!gN5wHJVE3_6W@PW#ue<_gpUfGOryk;NAycbN>Y9>DrJENw zKHXpgb!2RPI1K{C$)Z>&J|I{LYj5l6@_-Sp@jT%{D;$|MNHcXUK?D}k=EMX3UI8|G zPmNf`E_LMV0hKXwAw=1oT@9m6IKRoW&(mqnDksB^7GWyIb81RZR1j4#KT_XlYfmR` zwEqATk;N*{;(57Y$N+#kx6U+mc8JlEteaDTT%%@AF=VVq62q{{spzLdl`TLGD$)v+ z0VFvI1lwkdQN^6Pn$c1;)@s7e1z$3qVOr%cN}OC6P9>*w%*!dtnU%5>+OV>fRsy7e z;fBHEMTBK1Y{TpEaJh+@t>!HGi0SJPvdc-C-do~itSbdfwX71UWGN&&e`wzZGJ|aE zC-EHBRme=WC1q>U5T8^1;c#Z++H`JiJJiyzCE&}JOuDp4Ou4$2NhBpbPQv?b3QH$0 zrc%C6+ma47RPy!3tTQ!HPoGCuhffNZGEpgYGqZ=>Mv4ustjS5Kb5wEptIqY@WaBm| zk5^6cD=~SVGRjs;OY{%X?;ToeYNI_|vsz{>K6Iirq{|9ZTl#}W@R7?Xn}dm*zD&Y7 zSjoAfY{af!I;px4B@}omLX?}Gl;jfrjU7;*;BvM3Gf1jp^36=?a*|RA0Qt1*PUGG+ zQllBeIXy4QPbIjYFkBPjR%Vqoa;fsA0xFQV@)Z!Z6eyAaK1)9L?HWf_Mw5AG2DY1% zT4O|EaedT`p82Z^h% zsVO@Q^s>CRNbMbw)K3VlFKj`(TS<%S2F(Ub?rB=}t0#)r57Ri%!k}hM0KWMhqSrLuA0Dwo!Zqb`# zrB-Qf@G>Tk1%Y4$M6SuKu7fHTUZus;-IdYwux_Y98uY1ti3ZG#St$_5|UnFZ_1a4rkv%D4j-y{ zanRDc&qhO^ID;<&uR z2Tr9DLVAx#mwg60DNr*O>bN`a^@Ps?6h$OBHyI zCW&(7OO_BE8MCJ>OOvHayo80bAgM)uQTd0|ey8MWJxO``bqL`v*V0Pe{{ZEV@ki=k zNcumIr}n?;x~$@2dI(9AF| zh=oTKa>ftC>ik_e)T)V+sEz?cLoWiuJTwIZB7IE76)0*6)EOxt7bM4zt@POF$?GLw zE$)BF_k4e;OIiy?PWq&_ujkME7@sz|4>{uPHDC6_IB&|v(waCuxUR?#j}1ThGTe61B{*|VmYfeVvGnaYWBkV`)7&mKglB>w;iqhb3H&^TFAKw_rBui$dxa7L)Z`FL ziwNg(ZPC0mRxIT3JA&M~X08$|H}Q8q3VQ59O8g80f?-7JMh8h6Q>ky->HN352uXIw zG}Njn(!9K2IOQ)DtFfLRnsr3PNWl>&MG>B&QtOtNbfw8X63=#cNvtxZ6}OuCJANSMJm0}? zauu6%##YM+%qg$@VlZja(z*(86{=cOEhUnW!Md9mnN21rsJNZa#6Oz++sxKSp`VXt zsZ}(Rrc0hMEGA6J7=1FdTToY+tX}FTds-{*xjcrRlwrYxLmPJ7=b0m&y8r*JPZR?ep3=2y*Dn^-rB?)mM#B8p6q;-;FC zvZj*~!>Sh~uAXTNN`kbK2lDSn@6o4j7nLbR#RZL31E!4p&AdQCPF%Jf&tD4C4^pp<_ z(BgF!m9pvNiIY~P=?VPGDmDSO{{WbiPLH5`g!~kFXSaz` z2?5k^r7Y$B12eoerrNS4IK|WC!#VA)%X|o|{{Y*}4>G3{l|v`Om}E?3$(T}X;JS-% ze%8D}d#xTt%GgZY&6y=o3Bp9V^Ajvgm_PXaR9V=YlK%FBLZ*8I9r$Cahk^35RUTo( z*E&K>$>kG)PK_=?NZmofZm-(#zF7YNQ_mSMjv3E^80^`(do$vgT|+8TrcuKVAdp1fr z;}#hFxk>?2sNF~)5#>{Ny~(r zh8mOte9S;0%R82M(aWTa)}1`F%K7)=8^!KFRzml36!%zqH@CF1kAah@uv6oEJ{Y=tPB0_>vheV!|1x4lhgkI3{D<$-;U;r>TWw@b(nou{{Yye%v7os z2LPsG<$|EQk`xF7+%eJ(H&WowQAw}B^iRZZ0OZz331vv(ePs~MfBwR7MNXL}YApUS zUzO}SgS=Lw)33lI6i%4-VN7hoOx2PnhKm*XaJ^6r0P;`!6a@w^!i3tU7n)m zQ=H7$zlS`WjEpvRUCo&T9+6u|Ur8-g^M4AtQzgw4Kir}g9aaQ%+ADR(YbRwr=<#tZH#GLU(yG zjFH7z_|_aSyh&=CPoN=E%ao`OL4L;Fp-MfXw{*-mKQ5Ms6`4(kPEqitvy?TvhrC+j zCQ|r5qH-bed8XxOlbVdbU6!QcH7Sz60%}#EK}8`c3UROwN3FInqb;_Q6w-AkgXV^3 z#IZg$abFh2X)yYlnu_|h)R}T+l@X~#umB$Yd&A*mR_w}W1?Kq_S#uGjnL#pK^eN{{ z@YN&|%N}ch$5VXZ6tnoV=vO*_2)+mK50MEu_W;e)C*yKxsp}<$Rib>l{{R#MkcI$< za&9m3irY%;i_JB`;0{~(>5X#Do6cauDCF08vdo!@occ)W2WxSecbFG3zP8nBCB%+`OK6M2tKsyU`=?mmd+2%}h3K&&H*%M`%bt##oq>sp6 z?fOQMw(u)G8IbX6eqlL0#Bf>U&Be04(3KKP1#SnkKeQ5cB9p=9Tq3P_MRF9he>R?G zkTxZce`k$Wn!J#G8ppXLt>fpz=^R1Al4~VPLe(`XmQ-bw1|+Ci`iJNsgUvASC(ewK zCT33J5SLPd1i9K~B~F)Pc;B#YuzEv_e817>o*vWY95!F_YGiq|CDbfj6X<&O_JI&- zP8M*kulVfhbxD~$5>ik@c}lPTH>4B?Ma5b<*nVk6A$9`D)WzG<-9dm1pNHJJTRANt-2XnTTGNwXf5+SYtPz4<@f6^3_*R zP>`z0ik1qADI7?%rYr_>*E{+}X~xPouOD+YMqT0N7l#F@3S6{}BdGO`%EcMlOvQMA zj0q@|xrz!Z4xm8u7-(*h+2*`XlB_zCk!N5xKG4atX7H|js;&{PjIz&~`xkHdjbN__ zKBl7J(vvU=*-JOcsF1G?WQpD)PR)Lhqo+?LJw)QsxVe$$Z#41KhuA(3iq$G*1`#7f zw3QO)sXg5Hj)u-nH5fG`2<77pJ~eex&@{=GLVkNe6kfZwV41RDs?L=OQC5`BVtRo8 z0C<;nIJ%AxzI={O${Z2+GFIa%kxqFJ^C#EVuR=l+SEson>kTIGjWzY-r5()g`JmFK8%XLrNA>raQw{$hw)R8*_6C9K}D)uxe-q*~9j zCBd_*Ggf<-AxBt5vMxh1Z|Tw=I5CrTXFEUU8XB3Bku7LMlXRWPzV?bn4O#0P{{Y79 z6EplRune+L1%4HZ3DmOzNm7ffEhnf+3n$%%(bAqQdlR*y%4|Kyex^ zRNXOZ=%pJr)h8YC9xL!ZpNH7Wkyj%GDxHL?VNqQvQ3Xj!f68y={I?~Xl5I5QeVNJ) zE;u~T#$1(Ifz+A8M8T)Zq>*&AWvMrIcX+wyj?5nmt97L=3Z04SBW*oK)=fN(FYy_U z2`x!jRoK`TaUJn@!Q$&ha%5OmAF6QjYW-ugMO)5KC(4yCM|)F-qC}J89V$U!JIAL9 z(x!MTQMnyOLWxlgewK|^9VT_d*ntgT<>RU@+0vzX6F-(ST_P*AFOQ2AxCWJGH=-na7bZNELO3F^=D)J9a zq!6C_dO~lcI7ir0fQ7htlSLedP#)c2D1^1T`$1&3x&ZQ^w^*BqFOV%xuFn#gPPh?1 za?S&7>lL`lN#UT6E#Y56e%MMt9Xprl2|8tA6{$)t0WIDodM=QvR+NN~DH}w|_7>Sx z#fg?64_JpR6qRsu@VpLXYOHihC6zH-CKNQ>vW{OP%#1mCF3fyMqsZ7|sHjR6HD8@# z(A6v}S``$+#BLJ6IJ2O|Bij^M;+zYXfIX5@?A6F=-wdyLv|H9D93_Vh!A?;Prtfv)L9Bunq6i(Z94S8*a*GOjN=dhKsj=Zh+ZO2HrAA~QoASbCVcM6`&lo(4%0r#;># z{SL4@g0D!2D|Uk;62o^SL^&`^(S8kq)n;sNlMSJkX4Y5EO+1ud>rr6-oljs4VdQHl zLCy4QrKIOI6nzWGS#K=z&ylk3OsJPzh{>#zT5}|c6!PR$S1nTIw3W^p)Mcop%EJ_( zl%xU*kLF%xuCJA;J$SmO9j)arl(C=cpC{=47M_oZ2zc75yWP1ZO}bcZX0h<=3$}Jy z=a#%1EbyBK%yMzejZkwgB&wm6sf^i`zrzwr(vvhg>E#5WMEP}TS{+2#c`xdElhu}# zl$O<7v0J}R8_)iaavw+1hKzM#D1J`%Wxc&CXrl;cS zD7nAjjq&pT0QfsDNjM{xc#(+X95>FGCP&CQn+8hNS&e2Ysk1RT>nmW1GQ3ntuwiXZ zJl8jmH|kzaqH9}9PEqu@uk$^hrTCDiqp1}cdwjS4MI0R9ZfM{SJ9Rl@hulocOP8i> zk(jHfrOu&5f1|2a#HLO|C-{OBWkQ9;Ty`!P5vGpDCGdAH}o2 zaltr0#VjW)s=42uJ|3wE%8I0MER0?`@j6ZKlznu>6~f@PC`xG}&{E zIeLC6CZH8&x@myX$(uBJ)K;xd2Cp)%H;f(L4uq~Y*YYynaCkq4;`~m-v3xT>;#|bz z^y(|elP-x!p`w`rLWa%jZ+&om;iyoI0)foOn!!oV~p3|K3ZcxIp8bAWD z+_8t%nKY8rpUNf@49SUcblKdJZ+w2|1-QDyJzvF4y~eIJ^7Dx1EWuZoI4Q$i9*ot} zU~(mzb=9Qxa(asC!{+?nQlsl{$(>9KAz5 z*0@18Qz){0zG14((WacgAx%j~@I5Q>IOhX{n8yS^(tI_^lu{(7a#p-!_;{s4Q@)9B z=T@e^rm|yANkz37qb(RsJ=12J2vvk z1eUZy{BT_Kw=|pJ^WQIAXQs$J!qH|5`O}j|tVi)Pf0{yOAxa>FcV;)ZJHX>>^fqxm z_2ph-crV7j1W8oPV=h-^{923f(`jmyol6BQq$n!xJDZK;rD|#I$>vK>RZh=_{K0T~ zM+Z3XQIF)=brNv8O4DD5u3X<1T(Fsd%2HGSAUGpRn1+rf+2|(uMO^Z8&zpJ2%DHNb zHQ~5%ugmFJ74-7-PN*mI1;0+LNn+%07rOZ+K_!k4UwjKIGrt!237+yk9h_@0S}Fwz zw6eS~p(%4xP_Ts^g9jipI3c%!8=b{6btM?3CzHaw;c!zha;?mUIe=r8RP*s_8nZj` zGE}BnQSkz<00e>@di98Dr$f6|Wwl)G@h^@!LjuXPhFwJ37n4YeSpZB~UzC*&q=gVk zg=OA2$(QiAl+Iy!VZ>!;xm+g1@fkGfGahvx;yfl*)P$gwhCM?UeeV^u@=oZi7%w_s z5scT&t_dds#qdlk3Pm%diF9Ezi#PQU7A^&>HnWF;D|rJ;@GCS7oy1H#6rE2dv+%QZ znNt&~E!_VAh6yV|k0-BqeFhNtruPTJ?!YR;4qPJ&eVHLo+j5l$#`XNZ%J;>KMx^Pv<}lEk@WY!b-< z%YS$!oPwy~9oH)#363*!cS|n60n77n>=t^06^UX>H1Zg`kX3bn#CbvK-Yzh5{uD&D zV-8KJ&8NW&66F5?gFour$)4~Mq#za1kg+mk#&VPpJi*!j0B9$tD1Q*N^;F&uFY@Qi z4kybm6R5K;2Zv#`^%N@#k}D)8aMS^~ak~;PYwZxyHB9#2ZvOz(SH=v{mQ5}nmGagH zHex(4#mkd6bkd>-)R$05FMB=5yleO8Rd_O9K9bEd#WmTMcN%!ZQ;lc5UT~d`)EV{F zXqPM~DD~4|J)8T+Mz?q~t}t-Vgt=n`RP4Q(>M=UmS3)KS@lsOESOkSTm+a9$pp{o9 zXUaZG;5ILmaXRezo#tV6X_BoJ0!fy%E!-&+9HiU7Q?ydgBX`lRC^(ZpD{-2lR|zp1 z>dKI%2@|Ct>z;1p1AC6+Z+Kl~P2|ln&N61a``zyfwI3?DAhJ9Bof6 zoP5jq$#_Jpc3u-TOI0k?1L7pul)lPmXwp%$H0bu9#LwedC!gLLW&EF(axuYXI#*vh zctYl?VE_qoh`x|Xxo3TZTYI@gMmt^^;w&pB)Zv+qo|3gmq^O?PDhUWt76j}%dR`a7 zX}(#NaT|vNC{tx@dTi=y`b6w4QpPs%D@^hW*v3@0BQ>$y{OCpk{T%=7D#FtYc zU({JFdR?sG+Q!2!H9#dKN+sAk_3F?CvsljL=LE$tddajnfZfr93Gp1R{sDUp_UazFssfHq|6)K_ioWTa-cCTQ+R_jBIm_RP$;CwY|TwgQ!FJ((QhhNF2?$<(Qu1glG*X&;uXN9@E4h!#e&O9 zyeeARqEyW~T_I(ijkb*ic6OY&a|o(z5arxvXjLlM%PLSnON~Fg0BtHfk3ol1SK>73 zN~BGcLYYj306*LfyFX|Fo=(m~usH>$?$d@rILVU;vNhe#72UNb@cGKdHeMe5ugM2`cf7Ug@DY2E}RRNTr!jY0FHFYsVYJIw*kIwXnS$EU78my;8SxBWTT;!0;bhXOtb^k zn?RFpkmTuE=&o{kYO3Y8A!X?}l2j{e>4e1vAj<;Q02}OI`^RMTsw&KM^ zq0CvR2=%*@KJHBbNdB*dMx=Ba~5)u-?zLt$&$uY{aAIq4TlS0b2 zfWX5__!O}1oLoa0n^#&A4YdOm7`q2t8)E^-re%DADM4i_Uz*)xp+=4wduAykG)u;D zz^Tb_r8z&mDkb4tGCXc=HBKIs%TxJSMy{xfdOVVAs!kI{tNxuzBS|;gv)|q{%^a;Q z*fnlP%hR(4cBGOLr7CpL;EV3(=@PO%U0R8m^L~WVs-8+TsVPcQ3PS?JsPF9*?yzIw z&g9!Yeg6Qb6DMGDd6xb=jY`9&iW+q$S*w^(nM+VQRk0r;!o$`#)6;GZqnppxTatN3 zrTFdfa}46=IC!M&Dy&vfQ>@FCH7L>)2Vr|Z*`DzAV*daX`8Dtxrz6aKI?Em|SE;Tk zVulG*IBu|M!?ud@b#7ZsM!s~~++JyA6ROShic$1$zLAyJaGx;XIaFg)XsRSotu7`I zL^U4S%lph5+H`a^6DcN%(+ZnbqM>qs<^-E`Inzxh3a71g={mZL92D2Gv1nd75H-VSY8wN_nSBvfPd0n?&dyfW;1ezCW~ zo32LU{#_Dh%bt{_36~~Vmc-n(-`D%aJQ%7=2c!80<7NxO?p3(8m$3;l=T+vq70RWS zxeA&lFT>ISBFPCPDad98n8Zmpwz_6gl{b!2<&2?KGyPtaBrQ`Gy(|GF*!|izOjCks zoa{QTW)qr_seV+ZZ#OUYHTM;9U2e-KfoQj(d-+#cQI zzeab9Iee%n+^Yt4K}L!ykdW$F{{U(Is>3=N(XXj+mxG$JoZOZ!}VF%F=bH^^Tu*XqE(91MT#Kc5rD6O2rCs zYaWqmS*B8UM5)OE`!o(^V1TghOk0(Mr@$G(0A3uQp|^mPk{O-hZ%NSH@<4;60NZzj zrFPhE_Dv;#-223CrDUhR83w`8UXsnckFn37V z;$Eh1A!3v&p?XlAMDzk7xl09HVf;rRNTtFgc$JH|zJP2!;-whJGG;D%x}T1c{$?+k zxTiL)CPgF4lq?wU9GbpVrHG!Vh4g60^VG{ad>1dw#3z0xr0PigsnvBxdU3zXM}Lvz z#tUQ)`b`LsfCB=|EoP0W@X_bV?#W;wC;$t9z-<=YWX@Q@Ql^j;#lf)Y0>%(U2&DiR z?k@2C4{v2=Y1}yUcu`%HqwE@#X9greZ-UaK6*7q=xc#D}tAbVyx-K7h`<>Ov`Hs>F zuD?SNwKMpRh^1*Bu%)QhLXbRH5eracDkV0DCIYC&Ze0KYV+lF}$!qkD;UP3K<`4La zl&~bIQ8P#+7mQoQ7Ldp#Oy!;u;SNZ&s03M>6%%OLJeX9XlbU>(xr$0Z>lB$}$`e{) zl(2?Ld%H0g1)A~V{c7KbKhygjx6$2sQ2kf@qv*dMahzKd%2gP~4U5S9MGU3oTD&fg z4^QGn48I(`6k{iD*nqoSF1l#@?Na;{_d2r zlZ7Rnt)}zx@r=K8bvR!z`3om;lQ7Oi&L!piBC`ih9Z^X~MucLON(n(!nTsK%C14Op zyD7|+(j<|#A666;!o-^$>DcDWJcYwOENxlVT< zN5A8E@zjc_Q}%7{PjXidbNv-=T;d)Doim1Xz)Iz!hYg+Nrl&&^Qc|>yC05i`)B$+% zJe^r5xjIbtbhPPFiEz)9%;(1bCgauFUnb%|=?osZa{mAcSBNH=QUX+7P@JLxn8_fL zY~Yh{V~To`s!Zxpj9yNoij#0oAmuD?3Ci3c!>B4SnZNZo>8@Q}P8}sH8p;)`Ne|_6 z3G)WsYm#GuCRN`dGh zDW>X7y+tP*jT}BB&`|M1nVbhG@Lwc<0jb17e}_}f#T8joIYblV&Q!vnfD)3T0U;?% z-X+wXM3wl)=ah8Z^5WcL$@$)kCvg`z)?*dY5QL(ZULu;QGEzeXfQuxK!~+g{xMgW< z{wS(9ZbamhnSMNSvnL4{@9@lonnf;;2C1AV{{R^%0I}p}(yp4w43}-5qo+3?gDGlh zMpXGcrn3QMF(d=A0YS}}F^o=|Z4;gTG-KRW#IU+7 zb0|<`jK4}!nG&e!7b;4K8cOvjl1l>N&E77rf>ctCBiJ0H{5pAQ;;$?}#4-HghE(Hq z6w@Y8sga2$MBFrlx`9D1q@=NOkQlY%^x+nplgW;zuA-7jVEMJijHQHd-;6lk8H8e= z$8ZWNg`$?IAb->&U|Vj`b%Uu}q&=+r zHrDAGH%_>Kx`dEa5)FVUJ2BgR#8ZmeLvr6sgUg(d zbCH`lP|o$Az%g2iN-Dtfq%uls3Qe_k_XY3LBHDN0R8_QY}NN*DN1RE0n0BCocVN|edzE-&Xi*m2WY!f?B9~D?lK%3#HB#DXsq_OTl zyd;47+m^reCGhVN%aTqbl(D)RvI-aA%}mrFwU~KH8@rMDeQngdn^i|E@s-`5F!|`_ z7XjvLiM1I15rav>q}0rq6ojM&fc`*8XJq!;IXHH8UJPrpL%Za9FqXGeupzgIK}3zBP250K+(cf-fOR!>Mz6C#GD{OXMn&6LPer z($@@25>KREM(QL(b6=My&dj-$@yx?es+=neuc<{j3t5#+sevGQi|HPO!frekeG=sx z3Y;tTO%&YbqD zo{JKup~7%1K4OhE6(ST6rz}*kr4m*}owi{UDY?9aAsFH&rsY$L*lz@QollQrSyonO zmq{#{bkmR&gq?vYAf(&4cV@VVqeRu&lyia1)(gy5agkGlQPQ1(GGw;Iwk7 z%`~aABqn6pNMM&hA%Po$1I5O2SWM1ZaBkYO&G~~7;#W3!$;^4vmW;&p1! zpZ=*)U@v9>L_cPWk496$oL_<53eAX_ny~rYK%XH&<)urPNRkg-ELGQH$4G%+A%i#O zx8fa<_=&^$8FM1=+XTx&1z^=8SD7No1OfS#q&A{SxrbRF8MDh7Dw3NK&G>w*R%+y7 z%c)1=rYG~umQ*zn>>dlGMP`q)`EQhdM{yosq$-~s%QMo7CCwO|%yc6YDhN8YBUk1I z+DdvfZ?{Wr-b`E8-^LG*bzCV|5O|Y_;F&U*V)ABBnJ$;b45^aAI#$DCKpS_A77d#> zZzFtNuJ~JV-}uK9GEd{M>e)UWr6a~ca#E>kSZmyB8;-G2bnOu+TB|nCIA0R(8}o;b zVY9Go4B(aXluYTB0W!P*07`tx2Uf15VWf74sV3dfLJBIZ@Mk=HG8B1_2F>*Pr%~b) z6GdG$BVUIxf~Ba~4>Cf>x*@^hhblG?HMt*vxoefotBB-`QlRHLqoQIwU22|}bs35N zh6TOE5xdDU!ZpV$9Hr;ZX>&A;GbZ7yuBw_@K6XjH%k%(wiRb}42)5{!y|ZZZPw@BS z2QN4bx{T|Glt`01!PJrz%F+lrhT)s3gb5~%Qlrs&T!#gI|iAs{8wSgLo)Q+ECqA50=pCPV% ztMl$*E1Oe@tRYi0vIVTqgastT#%B(km ztc!8xEO&@_uLL-!g5%hCiA^yyvcUkih)|~o)U$iEQcd7KPeyZ9&mIZP*8#AJRTM=v zYLc0C15%beRv@XJf{PC36)@a*s%zm&@HX)F4*Eeo{?OwaBxzhl#jrFHPgziueqAAC zB!7k}!TJM}fpZg^abbF(8e!LNG%>m$Lgi!P9s!I!pfx6$*d}rLiI9T#l^mnyNhuq==+Ds zCngzt;ydu!#AnVF(=!@ni84=y6b(XAVpLd-KzySG4rn(Y7P!ZfF-~9jw}{|)gr(C| zVAYC7f*7SpR`2RIJw$ZDrxARcUzi*T99iI=6`E+?a_NyRQ&NxUW=e;?-$=$O#&kB! zi{Vqv-Y?2O9i?J;b!^E}s?uc7LRaQeNU+=j4_{AM+L}a}XT+MelaBmNtIc?Sf~lCC z<;*EdB$Bd83InaryFH9jc7XBzJCx_(^(`?oQ7j!HVMnwvCU<#rin#t-%T-t$s=}&D zpUO#fC)o5JkPO7@Fpt9Obg3WADheN(<6{c_3Xi6ow|qhe4E`7RmPf3aEiX>FX_Sd+ zNSmlTlG=)i09#=DymV>FZ8_zp_}&9j%y)Y}?2kN&3aCScj0nH)O;!IGI{2dD6=5QGGcVYVF`{{R+_jaB%h z%zP(qOz__>6sp7Uy8KX2SWT{ ztj@818`b43qeop;CTyhC%hr;iVmrrVVYM7zyl<6Rh~;#D8_WPA$VqeD#6>pjQ+=7& z5HZSpD=f&RM8z6_Sf%!j=Y>X4SAzzo#Fa%T)Fxs2#HH-jtHCB`>Z*?pQb{+t1}k@> zX(nX2PJgPyX+up?3T{a^F<+sap>D^+c)3+gSF6NI{Mx+1#5Cy6T5;&fX?UGWiKKYx zl#RT@zo?6*b4oH#20@Xryf$7cnyGVTrfi_Vg#oA6)-_sbt2uQyWk{=x)xYa0a@3`X zt4^k3?duvS;BeKZ+6M$U%b0i(Dz}|?+4qPlC*CL!Vz?BoXLbz{Yvrb)AueVkSLC()+grS6qota^?r-Jm?Sb^y z}ZQPo!1k%35gIIpd5-#rSuHxJqXq zF3eY9bKC}K(X*9B-5r+&^R&ca^QECCbh+}Bm7?9O-l7z6XQ>s#I@&7v5_4pgQ_b+I zB~$@paCLO{yfy4kf@i#5P92U+(ximyEU9(|D#?O$ndr`Dd9$MCOO@UhVbiE5%FG!) zmS!JSR_XAk$pCnIdcVK>Y%WPr)61RmLwiz-=+U&5pNhfeQcZOxVpx)Q5!a@#2L_~C zc8zz8Eoue$y(q+ub(!#v+&+{Fafw6z{tafQhQRF95RBQRbB)0wIqBF{~btcG#f`vy$ z>Ub(hibjF66WTfvGf_LlMD`?!3U=rO=y4#sq0oJ-Zlp=ve|s<-3-5gzfTHIYR;F2_ECt3u52|I4m5yd&0ciz%N3i zyv7}@8V1!ClS?IQnBaumJ0I^6i_a#p^gZ$SMxe)iy2frvD!i}x z{{TO+QCY8L3aA7US+0<0j;Y ze~x777tE!VM=Y+ca%J=h7g6+q?T_)Z54kC0NE1+jdZmC z0I|>I`Jdo{ks?x4Dain~mKI^@9Z4#td3Nj}EWbnRu>Sy1;@CwRi;{Z zmLW}n8|{9dC=yE0r6E)_1J~sPuEd>{8!LBhtqs3MiHkH97X_}(yeQ+6&=9k$Pf#Fy zjnx}_Q;7Q=$K~PH*Xs>RfLW8ZD19L|*;`09i6jMVTJTutMNSDY>#~$UnWT;3(A-gM zxwe5yh-izL@J-taUz<3 z(N0hy0;+7%Crh0$?qw9MDqu(dOh!^>wTRXj5FK+0Dty6 z`Pn+B63g`Yrz+!BoLbBntl!7xdVC)Ush28>Ux-TO_=PDb1t1Hg5apa+Jgr&&TUy$d z7EgD_imSV9*cp=|;C#gA%#&Y`FigLd=3>&sh2a<$IpO0qDHl?vEcs=rAu9aWEc<~T zT;(NkXQ2d=voGT&0WX0ZG|o9I0TnrJb{w%?T_&SE8lYv(8b^mH0jgqxe8@N6#?Qqm zKF+-~pX7}z#hhD*xwC<|4L1*Pywii`dgM%e)%MICXYy;oR&43#pb&jGs&RTv0Ou0Gg?$VJf)3vE@>gvsyEp zu!jZtI_KoV`IqKTh1FQTP)1APUMGiO*eyV<#A-2Gg(jylHk0AaniNip7a+ORS)wO6 z<7xKoy3%Ot+XQ8?6 z=i8Z)Nms&rLZ-G(AtfgctDvN#mTMA(jVhF-%f8(~xZLj=OHxbmY{_Zq{{S5t zZ-V^7Vtl3X@{1hId1`fDC5O%NCCbEt({$<@nOCtVuKh%2y_-pHM}5zqJ2h0>qoQ(^MV>4k1oRWWSpP<@4jRHu?O;jPFsOUU>6_m-Mn1%itWr!n5Z~+bU zbKf$YW#_u8hLbR2c!oPsLn}opB}zI814@=awz3=*?pXGPIW}I^6@+ne_bVcUJ5b@d zvbJU&MNu&#WcDE-5&5ssZv9VJF_`YMh2w`Va(P$ch8S@SR*N2?nK?62Hk-()sIrU8 zH%p}0J>cY;X<7CUgWTrw;l>_cD6rXd*?yl7{v3ff2c3q=21B@0B!H62a^tPzrZdyq zO&qd@rtQ{zOXlw@<;(|w3O8@>*ltTSbNJ-HRY z`N_`{@S5DkLxwE~GZ2K&(K2FC#b6|ZX1MA|U^g(5%?edU?dQAT^ON~m$Q7BEn>~|F zO-HE|)pC(8ah?O|PLt;h&IRs!ML5&;Ol7~L=Os2JGJ?3SQsyO3d@sN^$b*+9}0!E0=8f&z-a4_<@*bR#QVN zDW{MWNRvzyrc0!B4$L+YOfJu@d@lF{@GpkkH#NEEAH{LXxe^NNYDOT68aZmx=Su*s z4hRmbkG9d%i&ojqEm_?pe4*!uEpX$8T*G5HFAZy|aSXRWw5FbVrir3=loCSrA>2K| z3}X!Nbn%9IFO{B8I4{OdTGxzbEa58+$0eq0+LcS15V1X|5@A*e`^ObWE5*b{%3(jNnDvp3_n z!V8T2tK~^p?l*+Un}vo_l_7p8N`>^DF2%YVc6hd$N{GGB$Oq|b-W;2GVuDNfQR7@2FryX5rPWp^ z#S2%NBg#I%tOIg<9R6TwaLKqu1!f&L!WBAEKA09tR1JN<`b6X^0&n*Y!eH%tA@1LFsro)h3YvvXOUy#X;H5!BujLHD!+!+Z;PS^MnJ*XSlZ*L#hV-@4u+(EU zB3i16VuXb3{<{b2eo*LE&B^gO_;AkT8#7^af5#Dy;rNuXHbRwYiSoLVp|K$KO|~|6 z163*>l zFNN5csm>I*T*;p+- zg)J-HhJ)K@_5n5Gqp%)@FDxn)S2EvOdsXwedO6X+F)$z4L+9m>G5KCzqh7JYI5 z0MjGRy)O^5E-#QVnx%>?ag3Q_{{V-alVuS1Ne&6=^N4trh2Zk{$Db_Wayie;6_`w^ zNTscrulaiw1_bOH?pdtu3rm~`)ZCzB(z7=Wv8=0Au4)vMp#)h;AiH{le%6hp&4I3E z(M`!&>Z+LQmpYPe&2=Oa#2aom{UIcn8=o%b3To_Pi4`Vv;JqcLt4R;kb=-Wd6oSmV zjQlym^IlM>nM)>yRP@O4)1hH1Np@x|3!j@ghATYPSCo~8)g>xQ<(WZ>f?Pf94_9&Z zfGpwW%0wi|l9Hr^rOJ0M`J!T&-m!V*FB6w~nuu9TwS z{_)Ki(ch^$N=$FxRVJuNNh$|+8$~!~gyz}B znNK>A0EuhRc2NK}SW~ojG`NjC{WC~NGRS6Q^No~K zXCt`c&f78OpY~L5&m@;LlT4%lNW)yw`IJn0cGev+;a;5?xH?tf&&_uV3+^{@P1#L}|{yBU@H$ zrOI^@5}iS1iw^$)_=wo+J(u@C?k0PO;KjyVsmk_J&Y7Pup$e-sg%Ty5AyZsf0zo^D zg7*=grj5lV!5&7n>RM-uxrE|`{yA~88^>pPm59|$ngiJ&l0Y8Ye4?CQ5z(bRvD{&J zZU}Kq$4^Q%1x{E%4SSY~*_t($yNn#Y9_;2@;oV2dHzPO}YsL%XnUP3RrOcR-psgiI zLJ-=VB>BlCZL~C_n8%~dT9TVmeVz`Hhpx7*2}uBI0nX62QKOfcCY1Ozfl5+o zfl5QWIdah2^k<~&Eam0;%tnTWYN?exB3N~lJ0-(BG>qrA&Mcf}c&8lPX?>8lVW6Ko(^X_HE;~Hj%-P$}f-g z8xB;A?U7bQ$w;rHN=Ah+Qtr%~-?{dV=t(+l9wxLDEk3`PC`PENIFy$ zk@FF>8^EJ9?BD{xfXq$frZP>I-SRR#?%iWs?Q#uK6q42+=h8QW##wQFij=YR=@!~~ zMy_}Qz;U+i2RTDrP@9E%THPSJMdXj8s0Z|gYnBS{0W%ucJ;!*R-7=JH2W1_a4asNz zf3TK9l?4U@z_Im*y*tS9f~BY-*aFAC@V9VXZdA&Wwjcrl9WEX+dXaYj0MON{&43*X zeNEGMc!^Jk(A2S%FXDofk-eB(^n~Xo*yA3kT53tPYf4g;DBEx9^o6@~&PP2(AIY7} zth4w!ZxX6xx^%H56B?~Ozm%R&E?#<^_UNt0ON{XbhXt0YGzkls#2JcbF^;d32>viT ze1E3vYQ5U;`4~nunda6^)=4ToUN~p0-zU&`{uE-ioiV6f*`?f-77TZcEuNm#mnVCH zWrd*$ojJVMVm9}Vojp9O$tFe{{Z3ylEoEQl9kO4TK#s4+Mnu0Fav9JioiM< zNg*yQOe(=koRx`W4!>ABqfB&DHgQFX2fSyxmBgzy`j$wwqwG)2QbL)(q)&LobF67?D;O9knjsIa;9g)Lr;nkuX!VBcdL(#dh; z_kY2Ym<3`K`J02)#&toj3dgeigpzz(xnL%Are@S-fV7ivP+H}W=RdYS2H8i>jw=%V zIZydMe^d1D*l(!fegwO@MSS=C+WzSDw->VAKl;6qlbrND3$l8iCZ|hyaC0H;~}<8*yo_A77!};w?zQZFZk4wfdVk zgt&%x;h!|}cx}Oq&qImfxyuZZh+-0CNfcCw36!Hb0%XLM4GARbm*zT{F$_FSXSzGJ z5%gL~Mc}70^6N{*o@8^R(~RYA9btSfl`md1muAfZwy{VGN@XmaN|>dVwbEP*w0XLX z)>+-A)-h)TE%9rIe7x{~5WushM#i&G6!DqMn_GxuXiDW!$x?=eYf&dwmQxghO1AViM39g` z)E+UOpW|$pYJP22J2afm9OAqJ<}!l2H(=Qd9mc6?KNU9yoj5L%fze@5lonLfU&tQp zZsIX%!g)5esT?;)A2@UOgyyX2UO2Ila9r6_CY4l}EQxZ}M~2~vQ94v)wxtV}Q6WQi zigUMZ2ikE}24WoFa{mCqz8Y|=Ezii=!n-i$+<8Gtq@|ee zB@~rA7M$lM_bNskmngX6iYz09c{?-W=lJ}^Ea13(LX#ls0a~UIJgxyM?W7n{ld40K zf_s_8;-4s-$owvADENW=LXwuIsdFSt#IU--RH;i^89_-BBKWs2+{xB)4>;jU&KQm;iNA`fs8~%vQq|^}EVi9a;B8_o^YLR!u>F?g*Q!O8A9yoacl;$a^hwQz3)$n;|>s{xmr zDwd%#RvwfqT)R4nP137|{*uI4i@iuiyNLX4{{Z6P@gE?(r{>;fv(co=>0jcslQwR> z2}lk}DkHFdrp2Qfeom3mIjH52@e1XKIr7iNtUC(MbEH8JU$=QW?q`EKTle{r4RXQCqyujI*1FG(B+eLW$cRj~9 zlfAFR(;plzC1pIp$7)JUrBzQpRu_k^ReGtVE?B0hmo-48?D{|;wS|E13so)G60{t) z{zs0uLBI^>&E9Mj7&4WJ)k#C^sG3;`0005IS%7%SsyE$(kH>yp^Y1FSxS-55!w>vQ zt>DZnmD=T-zTU9$R7$e~qr+-*4j`#W{{XI=ERdxoB%5w+cz28ev@)M7ylTpLDa^PI zSIo4Orcs`2X;8Unn1{NOpe_e+@js~ZcrolJ1>zSmS-OiU*JBvfeQiUgMLksI&G85& z%M)@Kp78f1CGrj_@}HQwSkJf|%-@HpcvVF3WzPVKGxU(HBf{{R56i8J#S6O|1G9JzDorzNKa1Y9ykr6`a_#^hXr@wSwq7}G~Cu8yRoX`dv1 zE1b{d-fa1^#IsgL!=}*SQzXigCQOtiDyeAVB?&NRC@+8mmbr&pqWVwTNcy zVxJGfX=*ELYE~sll_@1ln6qFKk$3jr-X;5Gb%W5=UkFZPaa@|bVSGKuWKkwjo}*M# zDq;{WNkWKLz#XY@W%|UUN4g|%E2Us)#8}BRPweZPLQOBAN^Xu#ldOqxw9Qbt91o~ z=g-CG8Q?tLD4`r7Mjuls%N{h^9bO7%J;)@ncXHO-V(}m1{CG5tsQz4@VBt3dvv(YE zG*M-o3lPPpD1_>fB$N;S%Gi9&HzA~VS>uB_@0R?=fr`@9<@`oMof8o_C346ux=!$( zP+f3rz71tQE%R}TO2eyjR%WQd=Z!OG)Yh$17MHq0NzzF+ZJr{RqLiC4PIWm}9H!<< zDhb%Myi%s8Q6V8C!xn9egTJM%6quSbK2<&y9Czmb03v^=a+V1yj{}@uO#DKx@QJBS z{PNPosV?FAouZU)f@LVj4AJ~&;QngmSBy1zV>aO@3&(J2$x`G^(zGv01Q5;?lHV~0 zI1BWBaLWGx`hd7CBa+$pRwIB5#QA_~K7t6Sv=O{3^1!gJ#hmN_)#=D#TBd^Gry z<`X4BI+Hk^)LQPuf*qoxDzQmf;=Vs;iq2;_w8!%&53qbyKa8p~snJO&nUeQ9yqg1k z?`VdZ?o%sreCe2;5h8r* z5;Z9$EK)mw`$qe_5v=m2G5B@PrI?me>6jI=ON&Bk-GPztQ;Ham0=Ty#y9%E&n@Zg) zlBQTHZI3{GI|!FtFf*QJGiEErIcl%OCQYlJhc2}ezTx+Aez8g_JOPdJlZ(y4II~49 zN(q%xqM4eW;En$AT!EK!U6Lo|O#c8)iTFuCo^301$^@a@@P7j}|vo0+~hD?|$W|a`le{W!Wi$Er*&N$`D9%sp1Bf;~!Wg6@! z6hWIXB3WrfTqvumNIsuv-|W7OR;q5S^Ns_6SLaS5Nx~^a>9gjj*&)@?kO1BP0JJ?l zC%CE4YO`o_Barb94rOFuc!e~|dFe`Lu3MIr>Fj!t-qF0t=|dLGHKwG^8#=0fcg}N^1lhA|CKh#-7bY6h&5h2ZM*gOtR|@!N zQz(Q9wNlQprLXAM>1U17tQ?b`a(RwKkM$mUM7<_qnLXA9t>SzNjbX{!J*)}jLi z5>e05Ii*F}CmE`SM?AYA=@P7>8 z-E|fpMIjO0+1Bo zdcylm&hIGXSLYgu*m#tOmX^|Vse*@QgJbLy^mPB2C1Jf_(lUyrj|^gkeNiK2~cr;&@68W z!nj92jGfao9#yA4Ia-ocFR5*hc%Qb>wzj2Xvx!|J$Hk@~C622>wU+1jsy&y%jzH(* z{Ep)sM444fAwpuL>6#0bfK{d6b_5$1Eq&qt0Q~znr>f;9`dBBTA zVdR!rDNnwuZPG0%Cr1{fw@tU~^R_^(m@z4Oi-bD8BWOkPg{_p#gB-^Ku{V~za?%(b zow~oP1I)_7e-Bkzm+<9cvnbS0;wt1zZxG5z2U3uqGKIXLo3lmB zUOH)R?;p>v>Urx$yK#IguZ8RWaB6%*2ML`s!BSZtaUH9kN2jk@k-<_7pa}#RwOpMF zR`#F?ps02|V?`p8b&i8GOSgEaJ-j00Z-GG?t+QOc;jKS1sPyOCz|q#NH0 zB}PuHph}xpHIR~2I)SuGUYVn6DSPUxQD9=@r1xWlb5G6Eg84bC!f>1< zy;WFRlEkF}$JQ!aBMQ`bFprVs>t{+B`Tqc8r_3B$qQYdE7+o?YEAo|;>QVLd`A06V znH&EAwzxaIf1&GYz5YzE;K8#7Zmq_qtHhl!js4?}TGN#_?$4p|exIYJu&|DzWb#9; zKq&9mq-Ax<*%;=cisc1X&k~T5r5g^V;U?tpvRss4u3Q;rUCKzOm#U#ePTT-2nC#Qj zrEinO^1Rn6ZHEVMpdkbVix%6~HeTrS<9C)*H3w6d9X8lS!A9*fUKoj(q-t-=`*epI zavt8>Lv6p1958m+9 zkh1baGg~uTZGp)^kvgXsyOZ9}Mq3z!lmB8iG3#oP6XZKG(QOIcdAGI9FUcipE4BR(xkdiqKtU|08{ay3H7hvH z3aPM)*>m+upqDu$6%v;5lwH6&Sb}e~dGozWd)6L*k?iShgMW|c{{T~inzD9A!nog& zRpJxTmoRCQRwmFPGZW!Yo{43(DIQ|Ega$rPOnLh2+25qz>~LlY z&wMH4u2aKl6O=QqD~DjzsjJPH?I<(q7d=Q}EG>RfEjmkVbcVY;aLbB2Vy7Nj_(uU; zzewX2P|Unq$$5_&%eha6^oULyieeRNnO9d)DV3r~awVo)=>uY-7(8U)`MwMLiZWVq zS!ZwX`Q~SZd;`h3k34ZTc$P7mu?nDQjQS~+b5=CE)v04ZQBeb0i~ONz&JnpwES-HF zT}n{GMw{dBG?*VS8Iv;BNyw7uu}tM&Mjc;YC`+fq=)eIYSpW@wS1Pz9orGm4Zp~p0 zs; zBpH{Te4T`%R#>Q~!0gaKp{%7pbb}Rz{wR(^icam2vE$&95=J zUoY2D(d9fob|#M=V3vts%hWXm5u_woz53WhtQ$NV*W*vg{{RO$ec|p@n~>#U@-eEa z@`>IBSX$L3Nb-^aHo6$K$5`2|uMEdSQgY0Zt9U2yw&Mml!BL)ayxcOLf_$lyqydNo zekw?^f_L*eNFcW1oy<#8lCr+)PitqFGbS0C_?g5i+9|Y{t}l)zVUoEh3Y$DBHYfu7 zGXVm^$+yY5cmu`0G<-PcoNAvc;+SCVqr&E%udD7Qy0b3is_K1{oOiFQ+v}1YugIrd}@`ZkOsmoZr+#W&%$@qmp{{ZF$ zmML@Q7P|{VT?@N6&%ob5f2X+JT}LvVBx2Odl4c=-r1*+YnVVn%-oO}bPk{n3`$dW=$jjyYFhwRa9{(KRo{3n2UJmN+J!|pCo*XBGo_?0C* z;AP7b)`C^3?!;QmZ?sI2q52TX{Oxd$6X9(wdhO*ZaidtHmtsfFTA>6@boXgF0+{2JC!GTfXg=v>Eg<@ZhN{WQWW=rZW_q!dVnJeJ! zO1b36>E&^M;uBv-K~XwoMGY#75mh|2q?3ENxw{WQAzFyJM#{Gs#=X|+< z_!Ek16E>wJ%LzAU+hE_|g}f;kKRFz)aF2m_3M6H0=B&Yqg_O-@rfLH_kV9&_d4}(_ zIJaQkFJ# zw2rn69Cmm&FiD;6F~FV?@J?b*Va!U#>!h-bnMw#7I6YsbqApA+S+KIV#q$s4<1Z@> z;r;_nP@^o%LUajI(xPsnS?+CZq3sM96(0h*jQE}L3T7`smTPCzP5x<`nO}#Zrx!1+ zObxp^J)y-ug(i`RajSwHZuoQN-{F|HCsmi{PDoN!M^&m?wFd+^ZM$t1NNM8HqqAOh z#It@U_{?6urxmH(%&1veZ*$TLOMqF)^%s^e{YKaqFMP1!Syg!wuBRQr>C+-i$qNam zSNn+;`7s``P@JN$jOU=F?VeoC{0`$c#b=1Qmy2?+oHq=^XRB1C)z%48>7<9ykoRI= z%*;!+(JD!DY0;&*Y~{j77CE`WcyE~TIe0vZy3U~!a(9yR zcRHNd;gUjTSJe2yRWsC`K^mPPtK8e%h);sI=8e(uZsAnEUNfE%gf5ayj6?})sX{!e zlC3^(L$^ldfHlH{J z>wrrZ&11_aFL|4rj%w+0#a&WqaU5c?Rak{Za+H-Q6}r^TsYI9C=E4xY9-ro;mn?zG zjvJkFCMi0azZt;Ss$Fu>#&Q&&DMJ?|D%+8`=>V?JJaTQ#9Y-t~`}nmj1iVU|lc*_0 z8e983C3kSnt$b#gx%lwj+OZ7(;=Rq_+#<9 zkCYB_uq@BT*>hKeNu{ZvtTl)g2A{-~d^v&N%9XXcYA10C!B*ra=)}G%+~MV}dAZK0 z$FkJ9bhrg9vqeaJAu%*q#JMt znfUjWB;?L6R-&0R6HijJG&)$Mle2q4U~nmD1x)IBqe0U#Bspt8+7nIm7H>Rn_*H)n z#KcULxupRM(p;rX&2RG1+Q=hO@E8evXu^p<%M~Mk{{UCPt6^4Ek zl}w(Yt-~=FadXg*@W6oRxqFdMUBcOuCan`cHl(V>D*eXRhD%1hR$`Td=jlrm47AeK zfU*Gb5|jS`n5ZjcpK`wgmAIwwio>evCdpk+AA~NNrBf823`|R*2vB!Bpri*rVmjNl zH*|TrvZ>kgbKzIZ^(JuV8eLUd5~@lic)+NZ(iHA&R6t>~7i);tF{NYI)!d2k`p+1B ze=+s6cwC7x1etQ_)R}1jsZL393Dj;b@9nf}75JkVNb@dy#Qy-$JOHP|?(}i1020mQw zNf=H_!zy#{71dc#uN6jVn6)nMUL17yJM6t}RSh~vXUA&vRAXX{C}=>wor6Y?PZ=`t z-W-|g?nSt#h4RnK7Bh*|Pw*?Thg6~qDIgnuonw6%?N~Uxtw%jZc^^OLdfqf~Zo3=A zCa!PdCz6#cy`C|aUQXCGryZ!PIVm*MB22MzZ5E+eM8i_kv(cXo9O0L^O-qksILz5H z>Q_!vP9_!#FSowY*P$A1oE~PSw2`d2y5kb~-NhQbK|p>P3KFEDKb0vPL)Dh)7vd(P zyV-(=!di_ZaB}|ug<-i)lB*S}M72#)N@bD&(esYo2u3RTJYP4- zoZ5moS^oeuO3t;W{!&@S$JRA)++h~t?U?w(Ddjjw3_ACXW2LpGX7yzGXJv$82=Zw}xT0rm@NAsxn~;$jtu(UvIHRcC zjah*aL9J)=5Jv1T7MHT6JPMhgiKz)ol`OCixs72I^30_=$+&rj;9YkHvKCOPshKKw z@ys|?r@~?3k^xc_&K=3>_Plgms`PpBcc|a9T4j3Kv#`3=9ZZCRt8L~HuAHvu$HSvq=;)XYnGlZ(V3lXTps%Ii)B+1eXEXtaNOIiAgB>tRQEE!oG5S0I05i<; z^wcD$9)I5-k{@IAj+n}u_&Gk^Y0%WP2Na&UMoOkAq?D#wNl@#s zylkb4Y>dY-I$G*a0rVY78#sz@zK=&nZM>8rb|ql2Ha&mM;ciD$hjCdd{8F!wH)+M!g1B|*s#`oo(+8l#aS zhJ8YsT#2(EsuEAUC2xZ#IIK2vDYCUniiG)Tr%FbmW}Pg<>lBkoH-nyjW}IC`+xQVu zFuX96SyiotktkfBa%}{qryt^cl^OXujmJtD_Rg~q;$0>dofH&E1UpQbc;}au82&Lw zc9+sMbye%n9|kjvaWcBGC;7`m+SX{})$^w(xgNid^lcdB$AcZK#pl-4JjseJ+?E!O zX=={?4_8mdjAKbrPmCK&hv@JvStDJqo`k8a5`bbyM(q;h+;PcD7U-sqf@UvOp#f@B z-0YDTr5Q=kYih$r7r~lf7#xfqNGT#@)ek(zcJ_}#8fkE{eBYDg&so<<>=Q66QP>^c zG=jBk<#8*Pq|4s#>l>xF1C!|zc~Vl~vE91EXIA-cq}?*-C_ybWN=Le59=vWN(``FFTkw|VGZNwV6DqPq<1()S&BZBA zGQXKFny>Pra7FA=;d(}<0FTQb2m4jv!&gCh97;ds>-~??KVklGiwOMNR}D@pllC7Sr}#*i_-r+U`A4#AG+Bh|9_>;%M>ghjb zDVuYaUCW$Y;>AA@vZe~G#YLCp<=m}9g~?o;F1n&w5`PkvfE3^jK}u0}SaNJU?L?Y8 zwD)3+*M&KQFyvo{XArnwm9oO+VssK}CT5J%YNgAfmE$s&omMKD;DpOgmu=W}=5nP+ zQi^(tQh%Z5;lo}wWR6I%jNjv@58r;c&aqRDT+|JxptiU)`nmC)o%r7qR_MgH|8-n5f9Xz_wnQ2mxu#>DMNl5&|${YYX z=PlT66Q>yFFlT4RZZcz^68!suO3J(`ufsAfJT^*orB*si01NjU##yYE+M}KE zDCevH0Lm=ug5h{}0V6F@W%&Y~VJj16O;I|(GE$I0u_M&(BTYxS-BFg5c4F-IPbZx0 za36uZjH-(lt-w-a6qD|CKKucWrfwf|96wgodNAa$} zxWkdA<$BH^eio`pGHbkbYE*@!6sQF-XD-{Y_lG&TDx)}QY<8L8A&+Jr6=wwT7bA>Q z38}-X6Fg6l0+A)pmCf81E<1IIi|E)=F^(dP=N{)rig^D3F0?r@I83T6G|DMeROw+#n<%8DbhBzLWfo>; zh))z1**+V&?tcY1!#1+AuAW4-Fj|nHl$E(XMZkWS^t>J5ZZ?g}@kioHccnUYl`ZuCMi)U3Vh9fZ0K5@>G1c&T zOOl_178}M&DtyVF@mW&nCDRI{B23~Y6coA^tFs>cG_}U$6LyK7rrb4WUCf^|*?X21 z;~7JS)kv8wGX%1rlo2OD(RBdobqz;%u-HVXma44tUkIjC>5%?np?65q_5{TuWa%Ed%>MxTaIyRYhgDdS&X{d(CrtpmKt#V!<1UqGSVGhd z<)wFPHU9ue)9p^TGZo}Tx;z((aGINi+)Wf&hK)+3q^T0>0ssI6k*Q91vx~-eXz0Rc ztLwSg;7qq#sxzQ~lNCYGnDk^Y#Gkd~qppI4#A7Saj zcx%L(dCHefkI`YXgvHB$<;`O3d-ftJh0NYFcP&-D5n>{JY?;QDz=JN#{IpJ0tB3is5Pf=AN2$Yc| z24$$&BnQ7woKDqZl+9PpS0Q|7V&qa=BEMm9r)VBy5!xGC>#b?-Pq2=~bgxas|%T zEyzb2r{lEPZ9X8TRXo%!wIqTIrCke;%r4&XPvFT*{{SPM&lftl?>hWMr^j&_66rL$ z^p53SKk*KzO}fGtC*{0CZa|$;_<55kCrMO^(-eo6Tt55icnp&}yl0j<{IGE6EAcv) z9HGQUBokRjDGN%9ic3tEP~?Jz23D@E-T-Xn@E%F{m-B~}^3H9{U+HWaQouD*<#?u4 zq$Bbr1l>l#$+uV%2{U5+NqG~b_+)YKFI3^xQt^yD&X-ps$COqkq+OKzk<f)sd|)BZkz1eTcl~HmqedH{vMwUUL0|I;qi!PY+6*5<8tIKd8say8G0Om z4T*3-JwE1?ZMW!7Rl)O1C-EwWmrgq78ItKnElo*PGM+=7B}q!ooAi4;YdCL6FD7)1 zsl+~Tuq?rxsBrYF386ufaNv?o(BTyv3hkJdK;&nMd_&=#Zg9eK{Y6$^ z!-AJrQj#8>C?FN6ZW0L>i@eb$GsCU<6|*pHYEV(WMfUCC!`=3V;D-?vd;3>k5Y3H19UpC0+}~33XL6l`R#r zK|+~?#_Bpil>#@{DcrWmg#s#lzTQj$Y^?HBq1)bS=~<1<|Oo*cOWL&^YTtEnT=;9nqed3xd%R}HwU zLscSTrOKYK3TO&o$7A(@@CNGUy>!{KZ3ZPzHB+lhvo>vqn49kjdIMI|&YejiEHxny zZT$%MzR=qPn?;XLT#2;P48SHAV&Nm@1%Z%oTMqmtb(2<*(;Ya1R}whl-jRN|&e$6%Fmwx6T?w$(;s#!qtXm zsf%zzW(kQ=O^Mz+AsiX*O=R>wP3L12rQlTjl`gqykhxkV$<|p1%0hyFDIWc!rZv&U zuAb{U?o;`to6GJsUyRDBOq$goq!kuZ{{TynT=~C29VsK3vq*8Tinxz4ymnS4RJGJ9 zeBiZ`NoH-IplzY3lQ}5H{henYu}X~7nsD5`Nb>}cl&K>AbvE&;({jQ&wDl=Dv)5c= zqQbd52^yNyj`%V3f>PnqsyQ zYe}p~rxqK+$Z3Y~)gyI#W#3=r&_xFw7jYgTnr>ONcw|X&* zmV{&su{OSQekOWOp6P-*N+>mTe(tB+MjWYX%(e5Y>K393yrJ%4ZL_O#juDXNEYDMk zWmyVCOBgvAQVP;7w`jQO zyKatMNpyF#RZ|ElGZYYRQsz5hrAsFUtdZEr#AQhgP@+p*Zyhj?XB6ewtEoiEz?)yG zv5W5}DYoqfWoel)kO2+<0P{wQFOxYp%OX`Ur%^lfjW$7<+7(G28@-QykZo7Cic)n{ zanwST&*j^_ppq^vtg@Pla)r55hImdX^U> zkW1~>64O_9YZuvCWw0*b`$X+((M{%sGE=E1sSW5ODJ*2ybE_6+9wviizQwoq5t~=h ze{z~QlPDfw0GsYk!XCtty4LE8=_XC0pW-00l5F9@gKTdGZAMEcCXW!COH!GHrAly4 zpyCA<-I+=$;TZ*A5DqS(Tz(NVcIE0UC8EoEoLn2@SnruC?-VIsD>&8fPJG_ z!aW@Gn~VIga%Euar>&JTSkjPnB=+@(v93&Bs(t?e@NF(W@#e3JTsg`Z9OM+q%T!CJ zmZGc8)Uu*jb|i=E*7uE^Vx9Xq^y1XE-yie(vsvXSsHCN=MAE{1q7q)oAcOltjxdVX zPFq)}{{TOsmT(sUsmxqJq@<#iKBlT-o?0bK@fM;IO_SAtf0TAdY*Vv~%ZqB)M@Nb# zeFkftC6%gF^~*YlCBld<#E14IMv#}uo70T6sLFV0#7dqK@jnU76zD?gaC($f1T4B{ zHt8&OA;FEMB-7J57L%)89TsWC>G5pETUR2H6tuOK6DOjb1etPDr4yhX*gd_YSX=y! zwBxl>eI0z9yl2W%kd=Zw#1p(r+qTZ7IFSx69f6t%vGMCs8fky@{j)j1d^X~f0M#m@s9>`)7N>j zip=RthlZ!5k`zYzLH%Pnc@b9Piid%zKjV`++TJBs%t2xjHUm*D8PCjNLGyQvWvSWdL&n;5v(#3i2`M-C zh?b`AS0`K*Q%4GU2~jFGKO-3`{uRN~@=&?H8jD!=e|THpCq!WB6#gYjA*@epkqI@y zqlGHy<>44C%vN&(Nhf2fbB21vo`PCipgkY%o&24FF zNymPF8Ed0x3 z5o;>*Kgt!lHc_M^F{&IRVHU!S@}Q$)T1)K)aYyZmkkl zN{f<9L~bt1_1uT+^M+`$5i<7yy&!oMqB;hohA}OAGI)6`mR(J^yfo~Ya9gFv`Dm$(nnDoy6*s^N2`7c8A(}}o*X)GT|iC|hgH{dnF(wSu;DI=-Z z+(*KG*h_EI?p5u>y1JdPvh45x}usl+noB~^<_lZfU-&MP5v2}lzB z-c=)s35ZR^j~KY;$H`%=|@NMpxnfQ8Tc4vT9|^tgWnNc@yE5 zTII|-i2Tab0|4ecxvPoa3AE_bm=6f^GQJwwlRDzuN}owhQ;Pop(dEQUN~$qQfqGV{ z_tcgypbPm@ON&1wm2!GIbN>LjwvHz;cpiVjc_iVkH=1~#gyPg|Qce?m|T#b zVN~2b~DMRxBNYtHVBo=D}8f$7oN|Dc@qd2>l2ZK3c&Rl8b^EZs8lc!9> zt8r!Mr>37IC@3AZAIi*ZNNa|>Mi#m{S+w})@HOL&ej1$8Ct!7zRp?b+Z9OdIOZ+m` z{Uj*)k3t5;w~KmnO4>4BL>sF;JMfj{HxJ914;aJq{uhVT;;BlLQzXk15)*JpB(|jY z0NbmQ0i^`nOr32;t7)cl_a)gUg}mCD7r`*(&a6b)QmK^GeHx`{5 zska@>_un=AxA3OFmx;CYbT|eTGXCNdSb0xwoMO`iA3p!aK2M8J)8>BbW2v@G7|z zscPkgJgS!kAwX(2uzyY3@ku6yZq4<=ZVK_NA1QhW)5StwM*=}^)eaL2EBdqmncZ!5nG%|6`#Vm=6)KsMlt($y0vA8xdqtuhbGLDpP(czt)bQl^~*6Xq%+;jj0Jv}>Bl!Q}J*0B&pZ^)${WPMn-Bk!3+CB%x*B&3(Sl z3P?$#>keA@OVlo2n+r&8u9fZ<9}>Q6_o5gB+NCyRN2;&va*2NNXD z!LZsq7L2r+dJ&;FJD%b-O9Q+gQuzbqqm?dQxF3h-jwc!%$B%d-s%+d=YGzW(bhd#c z7AI4mFeCEbCK8SQMpIL2qR%XRNOpjsw^i7Qr4+dvehwDl&iT{O}5*#IX8DAaK9LyWZ|xN&$#Vv7Yr-&b|HdbGwOvp zgxxae}6jw)ACWhrHNB`o!LD+|@EJ%}f!)_{in8v})W$kJs#58@eq zs*!b5=D&nr%8+d7?9a3Sk&S-?&75zQgyqZ}Os$zUYeb45uzLfW}?SEG907&9y z&RqDb$@VFL=Q^Ax6Tnw4YG={cB_wz=2lT6|PoZb&6&Tx~yc=tP6q%>udB&M^TuRMV z)v~E&IwsGk2uzJiFQgYN&P!ah5?P{5FFVep_G zcr^3zG>MZ~9Vyhr9-aQMn9ctH@uT1tN6UN+$Qbrnsg*juV!sbjr6*Ti-?+PUYdDPH z{{SY2(cgdR;^VGS%KrfCo*!o^(&*)5a?MQ?<)oBMbh6S|5;V4;KxY@QiPqps?D3a8 zye6XIw>DYR55X!0UJk1D)KShrvgN4i1P`9kT2i=VZ1e_G;m->={{YI46;=4!3JlqU zQz}(tsq+M>=a~}AURtbB99S~Sw?*Fry$v%sqQ0P$)GZ| z@g7Dqgi&GhR2Hgq1gyC85E{fot9Ax$mU8YHU5Cq=;d!Yfm zP*O{ecG$Pd8WU#|1FEIK>-;%tNmDp(y}}x%ymTleuyNeA z9_esl`1NIWH$GygnTnQ@?Bwc%;@(Zvp%jufH!fIC50~pzm~#TsntC5RsRX*Fs9X=I zjr8GPl#VYi$Z~riW86c}bNH#mYTR`46(8RumjKtZZ|7tk^caN?o10LVA58Nb3Ip(Jd!ZmZoMq zMSZHnA$du>93^zHCQx@p{nuDK5kQ%AYAVpOoqacTNXatd;WX%DH2X_q-D70LD zL_$K=90Ei{;{BS&SPaQ}_xX2-llPL?vt^{HX(_R|CMiRQL)_8`lnO(&tlplH5|2iE zyJ7GgINP(quv@a?gc3BQlKb_6#9NmL36xT&Nzg&D7BPDeDW%ETQD&@H3zRg?GZ35U zUBo+*!ZQ0hGnW--d4TaQj%75-Sfx7By*g#7E>awaalX-_p6|v-Ca;C5SEB6fQBzA? z6ey=^lv?GSk8Y7_3auQ|i;aE7M$F|$i3{N06cLOGGN-CsnTbkPmq{8(DLq+0{{VYD zX$0NHoW5IBpQd4Xj-h|*%9?C25&MO(#ssv%dwg?2nT&rag#JEjTV~q+L!OR2G%WsL-;Ri3KFGl3CKLhl=~F zu2&;YttD5F=y39)=1j)q(n*pkS6HDcT2RE5lF4D*yL}?J#md{G38zi`oczOrnyR_9 z^XXM4rds?pg(JgSNU;joxFL^NxjZHB`u_m%XQgnGUW_X-wK336jO%9eRMwBbov$5iDg-0!)2gBkBg)-YTmwNy)xIw-Y?H-b|xI#O)w z>oFjo%H>^cwYG@d+1;a{aVAVNrK!})EN`?5+gLhO52z`r>{skDT<{y+WkFZB-$Dj4MN3|OEW~t+p&nS5Bq_L`7GOr2TQX(_K&xWqetfr zkweS_mWXeBxr6 zoq=o;UjC5Up~mc{Xm6Y|XtI=}Q8%;}TXb@fF*4Ew3Pvt1v64cRNZdkPk)FXVWytx% zT;!&(G29nth0aMxt#cR~`?%gYwQ8B7iS5sTo*HVor^f4uQf1R%=8;PUT0xyPER_WA z4ufO4O|H@T-|eQNUL03;eue)4)9p9={H4~@>*q4KUR|W%okkN|P?>Y;CQFw|;wULe zp4ywKB!Hj>>eK*u{G&n5>ZX3(uAsE(o;jE+=H@y)oUg%6!B_`XG&(=?tdU1F)mm0Yb!p{#limH@%9(E|4R}ZKDT>{Xzkv95*icgtL zQlZn!*xx-pxA_L7rvCu^X0YO?4(c=S7%_^D9nvlhT>ARC4E`N#91vB`;<-eV)x4IJn`H8L2BrOPzVg&9od2 zrpQvMDsY-2KuYBTl}%f#P&Z=a^al4~3JaiVH)C=y$sShbPc%-$a~5i$!Q_-JQpyb9YUPM5Q8@r&T;jPOc=Mrg=bA1 z-hH^I!^yL8skNBMmsnIx!iAzjlC8i|{Gj@7)@F!H(>7}q(7dbg2a6vOPCHNj2R{>1 zrA-rY3{g`QsdOl_66$AekGO*^(k9e$Y#)gy6ZoCL+%lhqd5;>#>XV1cB{M1#P%7lC z4Jrhe(pztS&?NX^oL*7AJ_?y#ayTiOvCKk-o~B(?l~YKYQ7uje=HS>UI$YcKU4*WZ zJeS5CaTQ$KW*OLxXq_%yYJyggttdm15(5hWc3}>!4$rT=s`JmnJdexH9BZp+DCw!` z(JFFHDV7$kH#Q6|bhoLq2RElEqn}a|leB!x_=)jKPdEJHOc_2&T`fvcCXSUXvJ{&W zP6SOYt9_ei?GZf=a@8dzOtxFugJ>Fs;{7~SZGW=S}^|^yOWvoV8X@d ze*;9hx)a>#9ipzeB266r9@b~hMfj>JvAm~Sgkr*-J|!M2PG!vS*XBxqJ3ssw8nB76 zc(3st;;%I-qRI3XaxmIj@`_ZFbxsI2)8ZS1-(eH8*xa4q`W4D2{+#|7<~|nTxYm8f zu}o(Xucb{zNRc^I>5`=+D#q?N7m7;wF`VlMi9RX3lW?Pz-YwAO?i%716%|#pks(y` zDwRB^QD9iyJBU$vDcX)XJN&=!kEX%6LY&i@^D1!Cxq9WMQ3=pMHXz;op>Hc|e6z>- z_Z+U3m};xTaGRSyUr3i6l%*QMusL}6X6BEI&*Ssd>{gR6;fqd+SybT*oDT0WsD=>I zd?FmJTfvNF3{Nrq8F`eh%Q>2z8IuMH@zi`2+3XZjeHzaLjfVEVO)tmUmAvnf}&tpQ?=l>jQ&Qq;@)hsBDP6_Jcqu(K^g zs#L`%(8j-Kux#~*#Yf_am${|kz88UE`Egh_F{I3?r_hp_MM(gIFaTDNk>!1xU|uwg zDkd)3|lnO(Pf3!%El+F!;-pPLSnlxP3;uouGm?h@wbqkHRNs|$>J7f!Z8}m zE=0+5C(Njpw9b$X)2S)|vkr~}!%Z-=qQ$v`pTr96DK&TvGUQ?M(1oT{l*%4g+<@n} zhAT3DHC5r9d7qbX?5%;SgAmmwN1knr#Snte{Vvz_^n{Qbi=1DBu4&}wfmn8C#&J~F z)K(?cDFCGstQ<0#P6=(UUABi}yqf!w9vS3}M-9bs{N}n^x=H|M{uX4=hY1CPI8uo$ z;1F0I@R(VvbCpILpLnq$GE*vt48&`+%a<$=CCe&n0!v!K%r(HzbMyDZ?g#LrmK>3V zn3Vc@zZEDNNH#-uqz$p=~L7g#6mnkmJ z2TR%gB57Fj!H)3CP9=t7lB=+(^XY3OpCrj<=|9>VOR*b6gB-YH+|u!ip8}@FXlU{L zS!|iuoXryEDDE8H%Qw73YAXZDxjB&dJ#l-K+=ow?b6y`xa9XA46RBqEl!a~r#^@!i z;_)(`LX8K7aF-0Lm{E(kb_JLpv^8Rd9G?{LuRJD1KEO%rAHj4 zT$EubLMEAtDJTWl?;B|8?sm^VUTxu)V>OdA6+#5X6w=8aRGS4yqo<|2Clu$ke4Knn zp>wDWB!wzmg;?}>?)!M8alJ^VzC{#Ra&XxpC=Jw*ZewU^)(%}=bom-i1_F%Y2EV** z4HF6ZINQ*_gcEGQ3mij3F&ZY2Klil^ip=!(fUJBMQS-oQE%}i%TX#ncs|{c7|yV9 z>ZhiyHUN{cJ$`WxIXWPmRR{ecSvG++g$p#~k*)0&A0PZg{`sb)^zSEGGMv)XDf$~c zN7~L#z1EWvXhK$%220-J<}GDyLsDqIKr<8t%blZ0Mczn~Sv$-YOv%#{l02Jyqq9#> zKPQ#sN-1teLn{iDm4ZW+f4i)8M@=3yyqR!|(Mu_kG=}K^0IX@XbW7Be6i}p}%eM9w zjU}e+H@2w?B%r;KW*y8@gXM*{hsj}*g(B%6G1IhP*~P37q}D7|$V0mXx#_e{%HX9b zRTZvCf6J#{=d@^{n`Li&BE-r{who_Y8tBh+&5ig(okL(thaDnZRpd8%DxFEF+ox2E z#63RH)U4yplcgXsTyJR2!J~LenaA)Af>UF?q8t)`k-F4WRH<522?x~r{?V4j*G9@n ztw~@ml2d0tSf90g6(@>gBqpA{8cs!k5 zEnOVy$Nqk%eVDk9jN&{P!18rsgv={1)lRCVV3Ja)t*iph5=aG!H|+$HN$uy4_`RI) zoyynimB;@8CKpMF%)@HrRY^K0(oIa+Yf7}J5L^&?7Y_<5sW}}FPBU&Y{XPtnXDZMKf6 zK^$b?^F8-FS)nXs(Y9GGMxfpIeZY!~Y=2m04yV}5o$Jh5|{o*ENMWnx7Fih(?&g&8IDUa0B&NV8;y-%iDrJMYxj+u zZ?U$Be=WlY`iQi?cqHP?SaJc{5|s(3$deYx0Ce6aOE@JWlA;yZyjsA*W@|v)FoMS( zNRy>5EPZ;#q_&j(5lTwGsJXOA#ni&W`?NOKCW&@drRq?Ak%N`ws-!?0W3cZT?hF;o zHs5DAf=?yUx6$TK=03#y(b^cK06Ik8Xq3eZ4e1ov>58R-2z!2zk#Rsw)+5bs&}PQb zV5t89%of)MTL8Bu-qAOFjaLAeLXyt#@-ZSS-)>^cDId%|p1$f>R^BIaE6j8)34T8gMB{IK9StX%y?5 zONLS?OHo?ccWnwX*62!tiqZpXA!*xa{PH?$Pfq(kQhKu1)vVFyt_5)#e=wL1e8ejy z&Bjr~?7*r@oI!F^Ei08UDJhp`4udSIiLd}(AC;t_)pm}L4_kikhEc>>7)ENy)H3lL zD-gw1gD!0P>9n(iiM5nvBx`rn3Ke@gZ?&V%)`{(DO9qkQ{{SzXQN{QbQJ!#r;xybX zmyZeL)6^zmrJF5bJ~;sE1u0{w4Zzyb=W0hMY$lEW0FgOZ;XgB+T+Mt<&spCZ%)C9w zI6Wll`m9c26&S5whvty?m}MY@hYm}G*~yMq9@*0!NhG5lS%iEPIc&iBkK^|e@w#ly ziDcXx1Ue~bFzS&meA;Q#RsuCl1c_k@(n-6hbrCRvmMquE)^ST}v$^I!m&zC?e*liRyf2P1;K?&m*-t_zOv ze=}qX7327v!!nwpoM>9SM44qu()zy<_$}1OHD@+HwQRe+U2f!*OT~l!yJuIMN?TiT#1$Hl$jHdr4|Jw z1c`FP0!b%w<`xK1X}f1Xi=P7?BXD1WNzGVhJc`U#ijdB(qoR@dCw+2Zy~ zmV~un2&9(N(iktr3nX&C$ZZxx$&$Z_=Gl@LO**bzw8;`enCgAYI)QEPurV=C zvJabQnR!~s*f$-g)`^xdQubMnaCb519P5kW zxh97f$MBkIhr%>u%#=FnS3nr`v4o5iIhhmw-FVB{_&SlA+FIvWv zsQ5d5VV;#42#JDnyDYDqo8;N^X>rrY`qUEq&sfO;SWgGP`^q z1G9cJNt}4EKNqW!GDa1MR_j_)be{;T%-*cM9sl{sqw5|Xd?cJBL_Amht2)YFsT`O)!P=NAI_kn=%;{sy8<&?>$rd;M)fdrKm8;}jX8Gweg|6z^SRRoJTcc*xFijvXw4$r8^H*cWBW?E(Fbq%@+bsE%{e3)5@kzJ|={O zPMN1knxI3HJBvd=-=dxqa;-tlhGnOtt;N@ZRH~MI_0CMc6JLarF-aYXNLyO%34%0U z1(>FCugo9uEF_~Fk(Y53qHOsfCaPLh{Xi1hhpmh-K8bVN@yN>@*K(#Z&Krfz!*Lu! zoJ*ZblmdrspLR*U!Ox^hKz!=qPIIN<&M3ONs&P+QL1w7nBPmM{2r7Bm7r4;y$x47qm4w4jX z1N0qU69i`*OUU_ygxG(FnP$zBxkEwm)}rYk5CA<0AinU%XpBD%pT^w&B$X&oYZ8Ws zWhL)#SOD~fkVIoAy%A_&` zzYPfze71cfb8$|=A#Z3^b>rgE4cyePftj5R;Wfvj8Y`$ z72_C6CSk~xJH)2Ybj_93%X+u7h$_-RdJi@HPdKT>J{!{IJaZDm>+pJdWYZ{4r4uI2 zmV}TsDMa4qr$A#Lwwl8#&1J&;-zywUUD5RZAhrBeNFtvqh?Z zi6+G6hcoayj#xaLTLQ{>otdl5^Qj`Zl>Th5`zkbj$G zUKr(U=RTh>E@H6dY83V6fK*(mlc@^6k}OCs*xEW1baB16Ow%0i^2bHNz9LiN`F>ia zWcxgsbI}gI8(%;RCI)o=>+W^af!vLsdz^YVu4SV$Fy}vNgT43m6^(z7!v($ymd!SRWci{ zMnts*f)O!ip=i=NZQu#_TSjZfO6=ABS-DceI5l}< zqFU`KO}tCccXV~>`TBcZvyC#HRIBrX3P7o_>sl>f;CS$qts`kQ7Odcxc28Z4bPGUeH!rPoGzyEyBX znW?gX0CtCbn{KX3XN5^Gx_t~~EeOj7(3;?&rBgs4mgxTgc*pHYvt9L;S5Zx+ivZ*6 z1B9r1(_;7@G_px@EqgRgJ9LKUSPZ%^IN6nR?F18eNQr7Lj&z(f6_8Gpfo_o2o3&;V z)y7MOGEzZpLv|saFYVVHnf=Gv1rl`!1f=%A_+f0mL+(4Gl~aQ@#5vvehETefkgQYu8< za;7Z{2E`<#kEBD2rAF^jNmEvL7&jBKtRW&?%8$iKZ_76J_ue1go!4LA`keaz08R0= zEyZnr^Zqj;q~e_hBPe+CW>T+pI$RHCjn|Nu@bjNv=6Q4aW~3cO*_-98F&UpKPOGGu zDyCg3fKrm6lPsHnMT?ldsl)MHGtJgh)74RuYYgJxxovr?I8foDYH3Y$)X7Zgt|g;U zXFiddi-UE?_cx5yf6wRs#uvowwON(1dYMbow8)yN0%8Z1WhI;*qt-cf;?$despxo9 zj-pqJFvEsb;sSD{(@&g=bZeTqXevyh-9&6X5+(57HiLj+iw`t_~GOgv_&r3%E8AspienbOeI6jUbg9 zZS;p5c;p*NQ)W+>a_~w-`jNfDRULXdO>&P9>>Z(`G{~gpEBnU@aZGaF=NE8ZDHR z*n{Ql{{U#(P1U}IIbS@Sd8^bcOC-0nRAQb6v5tgtqq`qS(L)r;Zumu#<{Np79pcrs zVrzgcWqV({#iY3^F0A5AoL##fyMI;wu$@`cj zyD2WgsUVxQG|B;6hZp^!O67zRLM3GG#f76fu1ge>&l$DsFil#Cc7fGW3l%_Wxj#OU zCaaTgCTNzB2^Tw<`yHp|?hUfJt0hFZf-x#F5ewAhs5pypMvYMvpdE`hq)ySOx&l;E zum0OK4Pye59VNY#MWYjd_DSQ6_PxU_Q_B&1Lc@u(v;qQ)r(Dqjf6^P^x zY_TbLtjsER;p(NzS`74^a*9(nUzyYj0l0AKZ*dh5r*fA*|l}4rkDVj4x}%{mI9qYM1tM69ehn`x$RG*>2x&IH%WGR zzc6GRUzT1m&yg;T75D`Cb0x}?JtM9B)L10yIZVFsm9Kj++{|p#Q0Ig?pk;~ zp7Gp|Uru;&kIYprDTWefNRWxDW2RZKA%b-?v3Fr^9Z2+d##uTXiOVe}cg1*bk#nAG z#xfliexLY?iEEN2Qq8B)tqm}clBH}M>9{Of{8Q3Q=~~SzNWyrt%AOa)ABZ90uLgL7 zI=c(ZQ^g9ZB-Mm|9%&8ud8`HcUK_7~lDFS6Y!>3>%!)5!F-R-${6x_HU(Wa4))Ic|%J7{3y# zag6S&dTN<;-VcePAc7K=I$KCOm;-kLCuFL~j=U7Mo@&n-hm0J3sHDNTk&9R38CND( zDp&HtQ83Mxbf}gZtmL|^Iz|#^=`K<9Ub~DOwN&y!I-J$zDk(IWW`t8!N|w60bx4*K z`3oqJqF6Wui&#eM?YLKGEo%MCK3Q^^lQVWV$8nuFe}>d!RG1DS_{38wMIvHTH_DYH zZWIU`>|+-CI;$BybH~q*)XdAl+{=^>R5*4$Q7w34iJC}~Kna+&9h*>409~5z8#&5R zqXnTDz4m#p;Q5PXJnhZ(G@Rv6O*WFUX<4V70ScN_ND6Z04`SVeyWbs(@@Xgdx@WL{ zIb4r$`j3WqUTe#^W)XyAlIn!H-U87nbtoh!^1nl8X8G@~q*NeMP6d|g0g6V#?0!&H@@MS*`?}p}2^yCxm*e&o+BbEnL5vi@kUsF5O?j&)?ZbV=9ZnP50kc1RBQu_I4dX*TIG zIc-~w_3?M)3n21am2hhOlZZ~C#gwBda*;TNO+f^uWdg}Nh8?fGCmM82Ww~25cf-@- zZzGk=xm$!|SWX>Kl1%zJpN2}Nre%utD4W;@eXrgVS+qPgMxWvqKb(Fhyvo!}!LZ1wmcte%=dX+Cq zgSu5=vmT}sPq2)Wcs@vRD>nZCsN^i75y9lcnk!0@Ql3b_{J}V+txggrzKPJO}Z|${7-ek0N$bnIRRbQC!(_ zi1H+}IUPfFycJIadXH+pO)bbw&Kpk7(`Iols#>Y(ihLP$2l-$))V4NJAMG%ueGU^{ znLj){K*;=N%<^zf7vR5)M3dplT?HvjwXtHa{{V``wh$#*Y$vLoB4M;2558b4a;NgJ zI;j|1Q{xE}r`&=p=^Jlng3*@g*9M}Sh36hzbF7N0{64n^#Hi*v6*5@>p1$#Mj^Y%W zc6xJ_jG@FIiY|6u2aD!ohu|~?DyT^E>Ic`S{K9eCSKM>_Uk9Q2#rPWGe7*30{ZW^3 zs<{)Wa;XiBo2}ycIK+xl5T0qC%=nLdCvrb7ya1)ga8=YV5lTW=GsP#xE?I%y#mp@x)2@cu z<6c8}J(akX%uXAZGql9eP**wqTd%}~dRO94@aN%|EVyPFoH%of zsVk-^OzAUf)l=il1o?qGIbg%0OejmK4bcF)Kt;c+s(Do6Pcb|i!?>9;O*Li@hH6}? zX<;!UT9|@67VFw7GFM1PpeueUnI9D8PO~H8nL3dbwDcl^N>@siB_$*frXs;Ay9a-0 zwWTERE!d;UoSt!?2;gTi7=CK0qD^e7B`I>`zvOc6pHSZ~lv~r6@liP7+}{!IYp`x^ zvpB_Y{4I1;^s?oqNSiZU$%+U{Nmr>O?euZelLJdq*3Qcrcf_WgX(trDm86Fc7abRQ z2P_&_1;a5s*O=?DN=k3ybyd^+GQG(vHvL3b*j~v~4<319&OEi_DWc4H9cC9+Wu|wW z7AQ~!C+8IOqsaGJzdjY2uY|ll&3J}o;*v1h@4?7Y=xC~v7FRc-gX~7*(cwK5)gd_; z=Qtcp!+D+J)?&soh72e$9~DY@GDNvk4|V~E&_$@ypu8Pd!&y8qz&PDI65^bd)nNER zD^(e}o3()IO~ANrh2mbCcqVR5ekM=OUo{wK8hF=LOO$YWe7lwud^r>}#Ayj1_cNDZ z=hMC5aOkMI!HsZ-KH&Tr;-(jj*GZK;QzWlKfwI6lS*}PojGmk2l-aB~{^oNtb2r4v zwK#&&uMnEjBuSUyrd+;`2Em1aCc|>knQ0g<1(WfNp(2<|oTQx~q)JmU_xI}v4bPJE zreU3fCZ4XYqM#)@REd*RWu!CMKXVBIV&qH4>J>d{S{8)t6cR1|7-OT=e-FM=@((f+ zF)10B7@LFDQGuppwGCBxpJ$aroxqg=2>!2gEE$oiKb}-%)}HQ%d@ew zZxNPRSgNpW8m?kdGONP`$wH0oc6+nMM$&ATmU`owpN3BixPQUv zd8dc`M5o1M%9s55YKiiv8QOG(Eh-yoCG?gILpZ!W^}x2X#gp<($<-;Cfhv58rWa6B zrGc`6HtFdaE(Cik2l!YD9$gWia9rO{iq=z5Cljfrl7!2ZEd>H%rMOn2q=DE1LA``D z-z-Ll#`%Eaj}4_-A)luRhVFlBqo06Ww%m+w&S0QZca_&n!Kg}P4 z&a&}Z2~)(;nhecbmgk8u4N!frOsMQGL#aaRF~RO?H-4W_Uc!&&hvEl>0_h7 z$0jPF1yvJUN$6wfp_An`oRyppGTdmt+bNztsI28m#Y1LSoCz@ zlB3Sm@+HD87+p0ud2*2Ft8|UD;ppU^t8emR6zNyxZo6JJP)eI2w$=!gc&aW%&i%|A za0*3L31uBXm0x(J=@%MU5K7cHyL5t|B`<6TZ7CN`?mF!PR;)j;pq1E?2F=zZ7FvPD zn}tZM{PNwlec>o3^OJS0IIqOwPRddX_++Q8`b0}jaBUwuQ9sDy&C1$lf|U&?wTr~P zDpqd~HM~B7TSGdwdP=1s0Vzru62bw}00o7dwa-%KHCkC-%KhRoi)U+r;R&KhT+-{@ zTWH!ENi)szHQexy!m_*Z3KG(mW@fo2H``yKhMt>QDM2#H7jf0MilMi8K=E~2L zmGHvzf}<<|_SBu5V;2~;fxZAH2M*SXP^XfbtPHgU8y9~_dm3Wu#+FctXHc;g{{GQX zOorb81I9}w+x3b`tc_jdIy9tQY7jJM-T|l}m$71E6?R=-C{rk?I+z9|xwpJ6i48Q~ z3j#E3TsOQeqWEP>K~lZ9grjc;mXOlvQdY#NJz60zfo^q0#(^mTKsok;n&^%4;I$Y> z;wJ(UDJ zC-GLJ3YZaIX3Pm7qIyrBSslkw8pBcAvxCa|dVijcU#G#avX(!B=1i}d{{V|se=>F+ zsk93z)=c!NBqWA#=_cWr`aDy1pJ$x(<)Q!sk#(tD7o{ZKg|>bcvvJ zQ+{AQV}edmbpHU@`d=T%gruh>lw(sW7bz-Cr4$t1sC^ z@OH@tV!&q)+i2^A7TfIe-Yv52DNmRX>Mk2-)i+!dR`6FkYSNI97<=yni?$9OfhSQR z@3HM0X{ybV_{dg;6^6WNcq9`@KwvKHFSHB_mLAT;m>X|4G*VDPh}iqZVLC1FGUbAh zNplV>Jd%oz#;QuzM%VB6KuVp)v5hE!c++gwcFL=Wod)X1lCD=#9O-ri1+n{ zyEMiEqIU=06sqt7xKOkvknWANDiXJM1Pg#RkF;r{;G7yMn72v-ORhQJ0GeGf{ol+d! z5LTT89sEf7kJ>LA?r3lS0L7>N=hObqd5=rT+5Z5VasIr2bJP66=h_UV#%wzi#PHem zbeO&$M=4@tz=@)!n1oJWlp*|qDGCj<_m7m&@&4w6j9(4^07t>~y8c{ryp=htO)u)X zJ(H6;$;i028%z^bPfoQhGuI+jAeLtmjU`1)NmhW}-QC^e`?*V1BCb<*loDAW@uCUrf5B&=BkYC^P-AI!uTjx9YW8&W+n0@`}8C+F{um5)ulC5Vc!rAIcJV}_$iaI zrDPA_IeUj-$gISuY6%Eirdq%SnIlSBuIe%8&rdXVLR4h@-TW}PNx?2kaBd{!oc)PO z&b9I+;uN!LaVcu2t13uZ(13*M1unr(e8TMU%RMuFEmqw#&)lEze>!|qc)+|j9^yrL z#xUwcs#QiQP^q&f=nN8q@2CN|->hLRH)j6;aw;dFIhNzEHa`pg9?Qx&<}XE$WsE|B zbd*@KB>2dZlIdiufV9j3LdAoC&%96Mu*DscdyH$5PEL5K$F2wBd6xvtlZ?Dc6aN4a zCV3iFIiFhQsmh!Z>JM;Vc#Vy|4Zh@IhRr$2_aj&r5c#&n@<$hQ9K0e$JuJf_Y^+2| zOxl-8LKUn#6zU8Zf(F79eu7eT=*;ZF>mL`8H?6yO3TVb5T)?W_#J56}5)v7KaK_>Lvo8@8ReDnBNpM#JBUfjnC2&iVRPyVyuQa8FR$aS3H2~QCS4o{;;^gX=8EcK5sc;o6C0?W?&T)C(NZ+ zoeP)-pqJRSkGyFJIdEko++Pn4KJWvVUK!BN#7-M89FS8ss;0Cw(x4BOi-y$SFI&XR zPD$`<3BfK;U*w;R_XP9a6*mizD3?&Vo)|LZ=_^5fM3d3%FS6{-4`jPU?ni?@DL73R z7jSBvQw)?2ljDE|()VJ}^nZxTPqWP*58ia~PDi+)afuYttFZc!;nmYjOY2LEgV4uD zuAc0!M5jlidHnd>V%*SVbC>eY5WFsucqm%5{{Zp^>)iM65giXZOgD(R zxpg@D^h~KyOr*{}7($=(m))P`6|MX9YZHSvUUmX4u`1dOuB*bwXD>UMCH55qk7cDdY0GBx<^BtPoU%2_DH7R8Uv&LKi z;}&V<-#yi43@K}?s@JZ27b+nBVfBu`-S;e!bnt8rGJHg{&oY>{8%K>+Ph6R5OsRCb z%K+_R+}r66J~q@2c{YY)@r2Zl1ZiH6IWgU`cKnUdwH2gaPhF}A?;>FXKA$9C2? z#h4CP;nx-UmcbP|r5KJqhGAOJW|XOELXZh&8~*@k=y8l07iQDQoc^yN@F_el!f?s+ zF*(6>)d-RTb*StLi<=hq58fsC&vldcqeiB|GR_@a#C$UW%rr*`MAiQQ)YMJ zo5I@c!I?1p7Ymb9h~jn20TSg8G3@VQ8||b|-M2{Ud4k9o=Lz#_a7<=WsH#!`0%qzB zyL5*bISJ~d=+~Sp<4So`}N03H1==r1&OU>2QtD&mY9C z9N{ESP7*0cf@Kpml(eLm0FVRUu=~SWRfJ2{vq8$?3hB6GFEiBEqEMeO%chZ_lQT#J zl1{_S(0!&UYrjU;!}*HBGWP{3vh4;9N~*$js-Q>-I?7w~GmtN0NOS24$Jsx1*`~7e zx@V5a@Fvvavtk7gA)=c!hNG zH)&}nar$>XB3vyOe$CP{jaGTZB%Cgo3SfMxLVV75{_V75Jtm`LRL#M{PE~5Lsp_c3 z+KQT2mR6~n0@c-v7aQ$($fGUCITuD?s!#BIc8x{My~0p}Hw5nN#0J>iqGjj~yNNuT zaTkEp5-~|~jOqdke-nq!SQ1laQje7BaxMdRXfW`=)PoJ1Qn#rInKA68Oe@#(d+ht! z;cfI5T~C)Qt11k-T1u&kZx&~QlQB9{2`ch~VY#OZbtzb)$t!!4K&<)8QA95inV<37LnC?Y07cAIJiMWnCPl;ibQ#>>jOPMGT65~|0 zbWt`fx1kX!rs%BlYhD`gT26h;sGwdwONYoSWcZ5`!qng;i?fn$=d4|%O&#A7cq7EF z3Skv;(~7FQFU%=TLa^LHUKr}jOM+M(j0#6W@Vm?PY|b(FTt!ryhPPYQ|VGk?95Vb3!cV0ym|7DeONO+$vm*|$BsOr)n<&j zjML$H_bN$L%tnr?Vo;jUk#dWI$NvEOvFRNeda{hvUk5a_<0#tb<#I!ua#jskzx7TU zXJvdwLa@w2a-C|zrpy7V0!7q|2N$#VXzA5bYw>wUG#oCZu+N>`;_~x9mhLoS7&x6O zzXGe7GNT5>B&aG?Z7+yY2qM~&Mv^^`So(hpU1~#d@qba!`*W_kH5${X7muLvm85t& z&DETFx8G*GcSoCNnK@?89K_t|J8bdNlm4eQ-z91xkFN2ef=`l^pG9gywn-p9&$L?8 zidi&+u%cMdNjLP`6q>T0aD*ox#J}Rh2jS8j>bd^_ z9wEjwT9xotK~fwNruBk4ar9c_2(c)3FXeU+D6c}3!xDOgz{nt$e^{Tk3O>b3NkB*; zo3Z;vDAhJ8BE>0Q2w)r3S~TI&5sGfg#H6JL?tAy|19+jU;R!ZrUgM*CK}q7lFT_b| zB`>;w=x!rb5OJmz>(b!6SXwV{M4}|<7qnBcySxuAlH{Z~`LrcyPa-L%5>NDxrQ)|x zQ%JsAJTy3GewT_?`5~35(pytL%@Q#bhGM2}q-a>fK?bSrSsR+Iqke1i+#bVnDoB>|}{W@{Y#0 z9+5>zMJh;`wEkrVDS^-NsGO1U=Q-Y?&?;e_In?B?2q&?~s!8i#%a1CeQmquFzGwEyAbktpHdnr$}lp%(b84le($F zgy}kbG_tyZ8@&ejJgE6}>dvbW!VIK421lfE&rO~BdiTN8R#EDEjX-YEi;Jo|<2pL} zic>CN)w$}?grd^H)g464r-$5Qt>I+6MogSH1;uG`I%UY6BNC)c^dKk^tpwdF8@N3p zRNA_f3YoRqIrT0{-~9gooSw#>n^-#e$(V#FloFS@=n3`u#Hh-S zxb1b5hN5T92mq^5VB5t)EoB`lN-EwAr!U|s!jZ0U)jd~ZaER^GkK=>D^E{`i_{CuC ziZzff=c|5^*$CtEJjYa8B!GYjxw|}QkuFZkbotmli-Ok?s#lTxhG&=-QS5EjHi}Z@ zSzMF}o(#^1yTgr8Nm?v30Sudd&?wu<3i~Q7k`(9lgt;ofk*P;c>iNcz?X({xOtQnI zH$cTIbzEL1?}jvr(vfkwJxnC*t1DPLTv>(TS~NsZ1tEzi-UV+XDk&^pzDi047Pw_B75J(PChG2ch|>k_O;KP` zQVVJ=8REsa*a6lHuWdJDNwwl6?U3k-J{Sz~AhO65%>Zn$ zyB*#DU|A(MjAtIqy9FI}P78?B*3nOyO<6}ZGo((IS#qW%f|Uc@5F?LP3Q=g^OI5;F zkFH!I;kHcpiE_1>_>*5zMTFu~@acGj$#Uiu{{RNYB(#aEQY^0xMJZVY(or=nrHlSm z=Xo0c08aAZpy8izFqoYW2)sR<@XZ(8! z#<8J8I{?Hbqr;N48FNxdQi|p;WD;0xSb}yjx74NhMsQeYkEAB`Wv8g~7yke~`zAn8k3+CFMadU8I`PFosX7)Km9Yl>yu zvp+J?)XJ%*bWIBb#FVKaWguLs*Z>9msZet9$1Z5}wB?I6-U_e(03`6K*<1ZfQI;vO zCHVC;h+9%ADOZ_HNIHuo>}*T)F~>b4(1g*BWUQ0I-WJ#AjFZKjV-={U!f6#dFXD2- zrwMCPKa_(csOb(vC7W%5amzS2gl`!eUy%O*hVD+z{Ipf^XD0Da5W#ciSQRz2voNW$ zl!{rBlBFVC`D))-3{nW(T;4gS7r~;QX!1uDxzXcaJ5?y*<~df3&0SSg(h#XB3)Tkd zVPF91x6U$_lI5Gmb%Sj3^m(V`I!+aVS1%UHxl0|cPLIY?j|D4GaHJB-OM&d>_q1au zuke)|{{R+FR}H=z*^`+*bdgDlXPLA$81m*~#}%eYRYg3|b&z!{QBWqu!8_U`E~1Sb z_Ny^ZiO0jMIC6EJGVILDou%e%9~hb`X)zh8m=#QrSOtOzNC4f5`a_gjbjezZQL{D1 z{u$ZRBJdK2HekF?mn#LWq!Z;LmbFrhUf(Qp|i5#`Er1M-CB(s|lhFPSB;nF&(wcbHZl(V~=UNpwqT$tx} z=fUJ&O+F);AC?|cGnPukGVIE%YaN#{66fd>5>%vVONV9`yMp2-vt@5pgH>|Z!>%vp z{5KWM88-{XSB6O`RN2x~p(z@J6zoZRINI zTmDcle?bn2a>?j?waSMb@s0o-R)UgjtQj%_`~xtF!6X(0Sb#t$f9Wp<0#}D;o47f_ zOn;A@bfU^=N~PDy&wy@$U zL(H6NRWOB=fQwlvI*E1#EwSqvRxGzm2glwu<)r0I{aZsJX_+pXdZedGcVfajArzI6 zB0>D4ZyN)f7BQijr|E>CS%V0*_ii&A6U_MQazvGHdB zYaRj$Ih;lA`4Be2L50E**?w6Q$`w zQf3mJTNIP}N1*gtGTeP1_}C_#1NM$xTUaR_ zZ^dthcrPxP)gSsgrcElRG8ZqUZkzdjf1lm>SM3PjHeICmT9n=@+vB1C?us` z5@oGQCsy|?OldzC^0Fi4Dx*Q=8M1hF#!5_c8l+6KHnh)|Hl;;KK4-f#$4iB(Io7IE zvuJavK|#g&LowjkojOGoJh`Zr6XB>hazFlOFB7E(l`-o|{{SR;_JRUC1HcF<>Ir|8p#O47d zQ%1EukOSZC4WU{~lhJ(UaMy!eJmCfrCn{F{J022JD$^te6Ai!%U{3enuV|RBVCI!8 zJAO?*9XX4d9u`i_S%Vn<2bJ>tl2PKPK%AbX{n$Hp5I$&0-c41-d@C*Re=<~1VagTe znO+f4UZA20au57K<3aZlcFk5ek1mfiNvNAmu2i*ypaHY=gy6*)J3IbjdA`hiTc@SN zrm1vUdkjvBT1i7lJ<7Y2ZTbNVVxxG>!SOX7FJ;^-2&6!fNiJcZTQ#($Y9G<-a`6vM zGg#|2mSwme0WU97$iu00$&`;Of<^5a{kCZxXuPv~a6>ao$#Q>~Bm~S(g(*qY2=4s} z*~jk~>O$2sqB2~gCd_}IL z#4NAGM8ziHfJkp)8BP@Ft36GSJ|s)bd>oyZ^E`!CB5g8~6+PxCkQsq{Y8$)kBNq&n zXOXiGKOtF;p>zPEntb)DRGE#bDJIwJ)3(MfAskUoK~P7(Nq=Dt4+` zxzwpt%IRuJ)`K^uld$UJsEnGYk)>yxz9aSAIh)NcCt1Tu6zI!lNSQTKr2#2*YAQ2I z1CXG_J+?N71$SW8JerRS%-GgDBA@ZKxP^T@l(dx8&0304un5$900S`Fc%>AbirMe( z2>c%Kt~>Irg=bu+p5@i%8oFN=rj2q8x>*xIb<+|VNtlH=Do|p32!@+Lk>pw~9_Eb2 zpXKCr*4Nc7b%sHcE@_+LtP+9-mr37#jq{4MvNz2gzZdx;&RhVdMlCp|qMnsNc!)_r zOve1XI;^1V;lb;8N_WXL%=4GNJaDf&)2l0SqY1=l>Q+%EpBA8$Lg`eHKv5#$-H!GH zU%8iROGy7O%sSB-K;m3GpfIJURrj{jxIhB9-2gI6w77YD{;Plw` z1iEF`{xb}km99jQaup}@g@JOwk$u`bH1*){&Rty>SJAF{ZOfIJX}-nyn=w zxsN$K@#^1Xm?`no8P2Nn&}!QtWz&z<~=T7=@lD! zFP0Z5(_?R2G%I%h0O#};+d`^gD`&S$IcT<*K(>Vh>u1tOPxy$e4WwBxI}7SP&he~a zibhQ$l{r}?i|j?4)&&NNkI025p$)#<#W*FF36TgOja&78k)l+v41!^D_I}->l5Ce& z1s@S6!q;w)>X5i(l)Kr_PQb*t_K@jzS>gnOK(fB@#4^V4g>LRwhO2pdW zxE&x3&*);Cv`u3KP!D$x>3E%~1FFCmEy_>KKUiB+coa!7(vZQP<+c$nCWseOE$rU0 zE-QBhA=0fD*!p*gmYS0q?GJncy2 z_w=Up`~is!mgWan#=u6j-Vw~!YzicjqU4XXbVdnb5+afS z^8WyMxWz{7s~?6*nsz48h9*|~zyJ_Zb`23}nj}P~-mdTqk{1^Z+uj*z8(>UYNJ?~o z!`0*L(@k0V`;1>FAOH)Vup_;T|cI4Q;Y?7fLCKk5D; zQvU!4o@Pxl<b`;X7o({yC;T&2 z{{XYy^Ep(->JBTNvV~m9@+HZYD=^enNmQD8Ngg!Gb0$nc)Uz=GDo{w)6q~X^zr*VJ z@mq9tR(h^q!s?H^@&27A-;tvIZf}aZy36S8Bym>?;uZ&&sA#ZUPamIEHD80qRX$BE zGEBArOHQ{cDIk(vMI@gw5$Edo^3#*t>*K%Xdiow*X9&hB+r_{1HZ>+@rQz)%%UQq0 z7+pyk6FQ&8l~A>WfTXTi^NXY@fh=F4ju}Bt(~962noTw( z_<&a~m4Hc7-^^^_8!;gCj!EgA(ABfD<|l{zI^hQvG5K6P%{Yz|fa4NG`e|~iR+&X6 z{t~nwFk%RM28>#Lo5n^_Q%8nyKY$!P;)YnsShf+KGWBxmla5tW3HW|AgtzrM1&Jcy zFd%ez=lfSGvbQsB@x$YtgmY=iUMZBTauszhZ>^SP%Thn;X@ZiM@l$OL$Ia0*xIVwUIGRjd=Z7Crqs22Bl&NT9wPF2yEd?q~C^mnROBSUkyCKau|cDM@7#%t0fqvU*Q-doS+PZI~T)U*ZSC%bv`8B5=zz z)+&A};n10qfO^zSFDVKN1Zzr^z=2}y&kJjc-DPi24B~Tf!tP=D7|ybIiJhxvNv_V} zNjRj6lRZUK0VXBQt6Fu*=yCiTGwCmc}vVOuCWb8IE*8UWdKyEs7WSxHf<-$00P8!F*;f*Lv!|dkC*;e^S3nkq}q%=hH0hN z%AT-DJxK$vc-K)V;>hIhIO)Pn*UH4hN^yCUC83=tES*Gl{bKZE86a-5QOhSOna7-r z=^~z$N~NSiOv%*?Vq0(lQDT14b8*vFPbT~3L*YQ4TsUbn8aVNrF$DOjoI+IEK>&{L zyE|>#BTHX&s2ZcU_-b=Mk@<1q)oSLVMK&Q(F>@!>1f^3}1B8N3<87}GU&fr}f?=&1 zvlixSnA~gP3C4PSv6tl3NujEnrh27@)=2<-m^r`pjkLUVr5()4>+hD-ZcM@OdcZO- z0nv(1#TEQWCH!K1t0WI9N1=PiJbas-QM-jkjaBgasL$9}A8T^n8H+AP4TMZGmpMy5 z8=Zg;zhT}wJe@dfwsPp}N>Xw3ZV!p>Tg!C3FQPRy%EU2UMNhBHg%V37znI*5IWd=n zq~_gVeq54w`A8i>`bGGPQ&!Bp$-_+~xiIbo{7iU_!2TJ_z;N2ha;fCX z5+$cg1f(7P{`ZabJP1x(sO5*$rx@)=GlX~yu3@vyPHE4zNu5(wF-y?2>X$7h{{Y;> zo}SD^G_@A1-7}@)eof1i8Ty+G!lualIhyM-zy*faez4=D>e@5b)rRF5nbu~_SPn(W z)bdjm)-T7YohWMwQ>c(PKEe~x2dN`@<<4+8gPVA3{{Xj{MRREI#Z3yI zB&>rlfw@ms+&zZ-#632iO+NIRqg(NVFG%678dY6aF0&Jw0h|2IN>L$*?*9Fvb~eL% z<(QTWmFcQzCRSD@G|8C6AeJZ()b9=1OI6h!erysm1q$U;%1Tm5ktM&Z>`(q-HG^2{ zdhg2|(mEhcg$u_{R{$sBUHy4M#3gb2C7EK!LaE# zb_=FrrUeB6M&Zw2v}ZUPEleG?1u8_PE5j(586{toAcD>4{bQZMqpBLpk~fYpyt|ol zY}#4Eo}!|LSdu3qSwfT;08*!71^0O6`*PoBQj+M<)375+i`B`KG)j_}GR)a!Dbx!M zUWD}>qMn)>c{2PDla31Y9H(Ed3mv%1ZIVD$7D<%tuWV!U% ztg2rG)6G(pmRFZW?&qg}k%ShG=QL&1;n+mA3_(jPLKz83UV#2(1AjpK+(JNZ{#Q8X z!wEbvsmZ)Y%DRx0%`|xB2-Q_1#Tr0Z45cM1I)HmJtU-vBUErksn)Z*5`M-x!F$^a! z=G=CJ4_}CxhL*ZzC*qJvNIF3QigyH;zS~3FjFOqy@JEVxp9wRq9y}0=$&{0X=}DLs zEz5=>R%JVjUK>`Z5xO~?=hkO2a%4`#u%F?xQ>6$*nShC@)S`6_(A#h3Z&-yExd!lO z+??_Ok~#F@b#-15nQCyX#Y&}1s-|3_Fw&9#0LG#n*;|Ed`iDk}xeesQbKeIzmGHXa z{Ut>$awkitnXaCo%R=N-p`4|+>ekr%vq`bwIF#5Xun<-l7N)nM-PdPe*nUZxR zgtfycYBp;|{{Z%-@MF45DAHU{%lOAJoMD-Y;1rZNHfF}FLgmoY6CilYn_!k^QCG~C zW{*QoTVs>V)`tA9Ooy6GvBhjR7Q^UxuY}e9K88wUQDQYz+9u9Gy9wk0IVJXTph$kA zI=oFyHG2*pFH2IZQ=eyH#6AS@=bo-u@cb|M)QqFXJeNr}UI$TEC<+YGNR)IP>y~DIk-0a8i2}kk4X{E>#l%R)jLAOYk8(2d@Q=~UdnV1M_9JR430HWej(x&SPzoAcUC4)mw_hR|sYg<4AjFVyvlm6Vo4 ztHcFQeS<eivd=qOE@040umZXnsoq0 zx(9*Vwl#zqXGNU+i#dnt%w<+Nm{ynksvfNsmb1XWKo8B(hWSC&q!((76s09SMZMk% z$Dw4b&C;DrLmu10MJJI;$yb+s_WdI?n#(p-SRPv_6z=D*L;e`7^2KGcs__ISTh^4!{lcso_h z@ktt4jf?IhvOkUYX9~ikG?nRC0Jm7yDM_|O-)tT~n6bB8?;A!rwr1*!5mJ|Qj<2+C zqna}PNTH|_R9udboji?7uvApQ0r#|8Lsi*SzydB^Jt9-AqFzcCr%u{myjFVxwOsr6 z=?$mQ$j%tpZeGzTc2)WUrZ6rtwtOpvs$7<755L|KhQNh}^ne^inQ&YBM|ca0rdE{N_HOVS&064g9?bzN zDlWSa4dL0V%?ydYUX9)nl(dszD+^P1fVjaWWKjmuNeViBu^o=@2`n1yz`|#QcLCuU zN(rlBTHU*}31rPAhSpPP2yyr!Q;Y4qXQ+(!Wa3nyIexYTbdF7EUKzA4aD5i#OX3fj z_|eN%PD7W8R!PkGIh9d}nJUpc7NeH5gw@GVVu`X+0Gdhss!D=bD^KUYQTiT^mzDSA zzZZplKTqNH@_vQ%->-QZo+sGTbtTVMz5c0xp`YX&$%f0v@mx-R6NXn{6EQ>htUXfE zDqP94ROwu$5vrbQib~IfLRLW`h$cK=E61M2rsVfmIqT!K`tW-`ACnh3YFFcYanJcb z(+t{UJk3U0kc`1gPmbmKf~2I%(7K8xk`#j=l1d0JNl*^MYmw$pMmxV8Gv9}h>nhQv z=5sHcxI>-ODyEfL%K@uIv?`!TRHe#7h*Bj?K~V})LD)UYnZbBknn|pqO)nv?%o~k7 z9m6xpuguvk3Ztr%FY#6Q0;HugX;M-Lh>+}MSh+~@I0ty()Y5nGdb&F1lgZpL!?=-G zh*MP5s|?1e<@l80K|T!UF4~FM4Vv%i9P-jTqpW&2gx?ZV!|nrPydL6K1%~4oMI{QP z(M<4+jZ6Vb3XnzII8g^+2`?B+$G3bGwbjvz@&m*yLxI_^8_jutDp6-Vs+FmADDV+F zqJ~n4xwnvo6zt^O0opaR6tK;7^?OE`=5L++OAzNKvodg}E+->mc$AqmwKOthrADrC z9&_QdB}GQfb|cmW<1Mv3naj!izY~3PA0lA%u)wK9PSQz zj|Hh#8Ba7^SmRGTSY}1ZTtJkZ6AP6i@pyezWUmHIVbXL?U>F@EMfV%GRHCDGk?!`4 zlbWB123gGi01gbF!aOczbiCV_FEH3DliMz`x}N+d_tm;j9hKb7gtn zZy0$~&-^FjM-z18*?NX_gwjoxhSMb}KuSVLV9C-g{X@J&Vx{~jr#-IDH^keUj6>ps z#5|vi@S7&%vi|_l)a#o*u+zN6&eh@qR)+y80l_Ef7qx$gi+|xY2Q2)m=dX!}G{Y@s zTy||eMjK43in;S<59B%ily-9J0gqkb%kfHtzbBI_=TG6Wl6e~A^&Jjq$Lg_+4r*o1 z(2_*-1_tRQuu*n%w|H>5EFn5aeTwlnh7@@gmX8CV4U^YnV$% zQM|D^;|H3u9wU~qzHg~#=E^BFcoHXS5@!t($O`g>0kn2K7qbRxYjO40i~RF&FCucw zh~ZcbRtlBOkcugE>tI%ZhDyP+mL=J`w|L@*jW+l-o~lce}j81nCaZ>QBW@E$1Ka8KiHF)5!-LdCIH8a|V3Nw3#~sq}4GfnEwEX znt)uD?|a$Ef23fww6y;K806b*<(7J14Cb?g+=_6CSS3`tf5l3WLZ&GpGv<p}}G`L)d-GdS-!S(s1DnNt@yRVZQM(r0P0Y4LwL6ml1j%6m*v980z`XYh(_ah1`zkEL#eeCE@dwC8W$+ zRGkb%p1(M`YC$}*VGUNeDZ=P87cM+epu{KwXIIlt3YScfNLt52k#%?ZMvF>1k!kQ_ z_vNQMM)A+w)A4hTxm6T3waLP;(JxBH^(+mvfwyjv&mR{@N!(Gi{LNXfMzq1R-X*}g z3ZaHpPMu#`>YFtR(sdon_c7AEeeZ*j`G09rcFk#-IF*fNoYyZC%r*6OD5e22Wh!AQ zKpR-cYe`$lg`DBy2j+dKUE#2LT9C1L5RGbKw-iE`4W3Hn6C#ckQ7 z{H#(s?jP|V7M`_byfJcRroQzPRuYmee=+F7_lG|nE0Y$VlP2~q&ZCKWX&f)i*nMQY zR$ehXNt#mHkPgKl_URR;4eFW}q|_RBXD>4Gs}SP+sWcd!LU6n;kpTi+tCbF+`ge)_ z-(gS5-uW;NFXzlBB2rV(UY1LD)$p}ix@Lx!i z?bYHoR#7{vgP;5e(xOU=ZjFLi=_jZVwx>p)a|bH~nyFZVmr$aneJN3JI$krLlCsqO zvn-&^RMgUl0EMWBD7Vft`);YDranisc34(qrv#~BDJpTG+!6KOB6?DJG>4HM4*rh5 zRwG5>l@G%#X(+K!yZ->5@tm~i*=om&JN_DDGbF02id2NuQq5(hGbRKxY{%TYdPXya zojMxLek&#UvVB$=S0@vtTBH=L6w~N4C8Q*~5?`$6#Fcw(-TQ;WlSM6dZeHc zcM!Cq>nOJSG-gcBG<5l%O7T_IOu|I;uA)j5(CPNC&GRW2T`3h(MCy@KN?id%##m!0lHiRbq>*ACIU8|*k~PEN`S+gkhAF}v>0N>2 zQm0A9Fp8zqPn5Olb)jS^0yh@v(DjPDLOrpUdGz477Ws0e$(iRN$dOrw(!C{346!Y0 zoD=!A0jO-2Hzkzh0@0q<_#0=EuxuRWoXng*2%9Q;YA1xqmr_VtfhNi(<9GLaMewo) z+M~%lR^=kCIlh`sVal^9RJk9-XoAp*iI^C<{Hjip!>}O4?oR?axr3d|-^SF)qt1Ar z`h-*KRGE{?Q86|EDbm{XwYw7*l1~D=R%{H9$i5%N?14KS%UJxiR(M_@l~%vyiJoFo zQUOsc_AVWpc%A;l;&uGC^R1qF1mYcL9ZHE9zF40#O=b;IGgOk~4QWt)E3-IzSdHU& z!ZTRpi)e0RxV4k`C#3;1T;u2P=6*O}a!3tStD@uS+nvxXm3%qL$ z4YO0zbZ4orx(*tO%}c>FPT+o0rdDyv$z%A|QaHbpH++yKQuI=@cSna)snN6jY;sw#4JXT!!jB?fH*YS3lk7g={zsklAEtQTMw|O@@?3jY)%K5=oLb=?WZ-scRu7pl z$=H2UYm~3gCazoBWTlHO2e`P{fNdXh;(1Wjj_o&t^UpWK)X|pBMNj)z!!dC%kPEwX z>mHP6YR^C6f?#0#yl)n;k)#?cnh(9%)Hye4|Xz9F+m`M?-Z5TCix7emXHt4 zuMU?+a**a@k{tH-_4>mnb@EoDt@mU4!fAROc_^Ba50`$Ccywx>ayOg9WB&k%RIeNf zv=mG%MbEa-{{a4wnuy7ls_Jw5L$ugsaBH+6K~OxQw)& zF6@6uOF3jU?5$-=V$L=#6;ye|5F)n{`4(wy_iI79(McS2%`R{C=?XPQ$(Kk;N=lX)?85M{ zzDd52l z$iZ;HrFfGApc{L|=|ww}`QVwKmNLF36J|MTicd-J#;_ zl*&}=>*W{P2hI_quFB^*VZYiY-yq+iW(^~=2fd?iRz!r-mR!NFTVZD%(0gNH>VFH&t8r%xkp%H|%H?HSFt zz=c9sgLa6btptrDyioR)l@Rca5(!X9a^A2nMI~n3bo1(H{*%A^rs-3ULd8M`xZYF6F~WzBL!{b5bIY^lQf z7Gc&~ue5TxTQb{R9L%Mg@h%@`dJJm_s+mWK;nPIf6VbXA>N0D!frazukcj(ps$lIonhxww6)Lz zeA=7yf)bRG<^$A-@qE7uOEEp~1L{$Dm-+Gk06RTDm3SGGxamn*Ra-w2!Yfl(leysFOO1Y86p5sEKJ@?JgJsQk^E_%xuOMgf#x;E<;vQ zQMbX{^6&8s&HOjy`im!U(}q=2v1-ani4|C|!_3r7mO{0Gg~*OZq{SHydO zION>5Rh#p+XBhrroYUp4GfGh?D{{1+wjd-6S~2ljll)a9O?S06Z!dMQ0k6N0>hR^he{bGT-VJf!2QsMAUAg`NWEyDZ^U{C=&IfTc3!$(`U! zlvk`5I|9zm>`mFD)$!u?CnL-9wW?H%izR$CbLSDVSL5pHsi~BkQ%fpb&mAN?prjBk zQasJOzVP0>BIu=|sVL>0Co7!B)N%pFDwJYaRD{&XDw8;wNt-!nE|M-kDIF|t8|wIf zein{BKRIa4#%A>9ALFNu@iT_=ver_2 z14%`R;?n7WmH2r&(=BBUb8GKyhuS=8eK%WDd*y_Ci|Se$aH!>;6601pbN+g&%o8XR zMJ}mjX$3dF@$BemRCd|m`5szw+;wP`y zEHP;PRcUl)+(h`Z;`oLRsyZ4YB(7G1vcE91bm_E4pVA_o$(5<~>21P1(}?pAj^o*g z;&bMeO(c-kZvOx{^rPWIs*fgqboX84=Hpz<=8R^AG_vYu)6%3d2vZXk9|{TG5ih7} zHCA;vHxMxyic*y|YbSC}sNd`)_&I-io$_<)F=~uvZ}VnY^oF$3#Tn0C%aY1!MN-TJ zBoXZmMH1)e<<6&Fe9$IM2p;UvZ5!4sl}k&9q?HjdO}Q@cY-Ih!2^or>m1ju+tEZ$t zw&*_T4s1!Cr6))hv_G}jqpj#so4*B6qM4TMB}}qC-Rf$P6=FMEif^|$3q> zj@>^S$kl(08GvTKbtRO9VK{WjicO5kr$|utjyd^yZ}?MZsiE|3SDi^wi_7M_G3q)g z>5>V4q@SD%Uipd8{*$J$y@h<(W0IHu0O{qWM#QCM+8ftT{2;!NpAs{U6mw-yQC1{k z)YB;h!pWXaqz`!3E;Gjr;_^HlT^zyg{{S<4VHu{M5vN5>C2Y0Jnda7oI4;{oza4aO zN6P7$eh-^wB1s6HuT6lni^ndfiupS9{I1hB4pz>RG1^5*tCuOJCr+3AGAibrA8{?VIQ$)!`Y&p~q9j0=sqa&8}(mbIwN z5`s-gD?k9;KbSLyE_-bpn$c@9JN$h`HIq|wLCfgn>lu?zF10lhu>}(?J6lr)0(VJb zds^GVjJK;ErRnf>d>-caihR3K&BHRDZN)Hp8MBPVQpjf32qYxkoFoD|fB|t4EhOEv zTs7Olnbl{kLz=wzI~m7m1pHd2Ni`J`CHP)6%`OU)wx9<6x<@SZlvWOvE6LDP@V67j zGby0U_qQbzr0Eo-wqKPXN)ra?i#?I^+B#r^-3k55V(Q2O^vB(~VUz@oHrtG_t0)q>vq3t*;Ah z;1lT46*!$1Y_6!8Ln@AiQzq*&wA~@uBrAIc>tv0dG;$w4&a^c8*TRxu*Jc=J|CRBVI1sciu^Ag#wloP4s|{qd9RY(a<3Dnr#P-vS=UcknWdAdOc03C%BYuR~EyZg^)0 zm8B?Jf0>~`6WTa{# zK-h!#&0QH*qPY79;b`l}c9W@k_GhL~x>l0mNoPrLW7W{|^)xjWtX(gCKZbcePluzgqb)hBuj-$)e9q=Sll;-k zrkqYY2`5~da>AtROFQ~@igm$B;^>MgNn-EPB3FwC9??>n3A_CJLup%~Ureb;4PamE zXlvRNXp<)iX}G!S(5{6|h-Uboln}=Lu~}uM>`EKVbt%mvN5c78m$S3WQv6KAP8gR^cC=|0o}xIs={4idy&DR?WVsaDz&8Xj zHje2uqI@=tWagsG8z00{6j1I@Sn~Dcn`rxA4@Ib>7Q|`{!mE}b#~kq+J#8iF9Tq07 zQ-IX{L-cs%n@sh5drJorO*yNbr>9ceMn7q{XI%9*Ld=3qDr8DZKo+&Hco(Jf>wgJ?hkSuX(4gU(o%Fd7kmm4iaE*9O;= z@=!&M|1@hr}9N#I$P0$YyTyi$#q9WL2Ho=UyG@jNr5YTzlTQ(66D zsWwmBh?8a=VabYL1tgXbJV$5g3H*h73RdbHcQ9~=SQ%54yC3|*RK%5VGFDQPW*?+a z91%-~60)n8u!U$&FJ5mo zj%{ryYC*zE(>pY-4N5O3skj-;UJJzaPhKG^j|k0E6t5PNS@3DG9ZvHk^p>Cr9upDf zBwEAgJg*9H#B#s7{eRr`G(4y$zlYzi*W>g(C(1`RbGR>z*5L^vO%@?75=`mx)TC3D z66a?QpF&N*xpDK~Q2JujN`0f~{+0Egw*KAW_Rn|n^~?qjpEB?Zl~;&k70L@WvZRwJ zA!LNIjgX`O0{dKx2alQZd}(RRE|UKMpWOQo56q6LNh@!^`RL72#>^tG4*Uu#saAp& zOsN0~(?|>~hbcXXay?@o-QP5IFDefSo*3tEkUXJ2MkSm0Z-~pmv6`}})mSvS3Ymu2 zC^=loDGs`Kd+vfsU^b482+6&(M<0{5eo%k=K6+;?I%ZYOl^9+nNN}7&T;he&)E~&j ziBCi982U${4;eLs%zj?iwcyAy7E8$aih`<_FyfQ2+R2Do>8j*PD@{D)kikgVK;7;K zYsWsWjMwn1H_-AlroSgo*_UM=EXm>eCg6F$C}G*Z0I6CfQ{xn+QtGJ!TR=Z6VaBGuU0?JaCgJWj}(?`eKUO4ri-tF;q_m)9h&hpE?)S7;`zG1n=WRlc)lUS zI(n4&k|gU#;UyL7V8ce8!LzX>UN@hC7`Eg5MlkxTld14_TAueCBOJ=Z*rsNbLNZF`hMB&YbI0rlaw~6gJ|;g@lN6;4=$$!$@wZma`hb| z6;U+Q0#=lbI*g>GSg0k-l1fK%{Mx@u)BBevlc!7Sb8&kkglP_6W#in*@%s|SXJf|- zuB)7+RQM;tC|kQF0DZbKG1IM}wBfQrpS7xwzoQSmDMICT=I2Yw>(xGQ`78 zS5mpfa@$b_AC&|Rfd2q?@y+8YYBrKOyvb?lM%=P$ytB@Yc16i`SVmi!I+yWC30%!) z&9ag$q_v(qZsC_YMi5-&YMkttS{ZOOixs#W}_`< zQknZH?+@(7B7Wm3o12aNz=(foB|*MN3T8B=tdPC^V%CyeiO;Yn9VsWyr}u>|B*971 zMC@l$i3?Y>DQViHNVzPuBJstP0jlC9X~ilnHp-QaD9aCRs z389#^GbUu>z<>NAIA`asAsaoNAKB?Odh@T-{mdI3;s$8Wt0}0io+YpPC4Vg+Xylyr z^&K}$;Pv#pPYcFYm9_6DTRSM4Bqn7{(W!SJT*SW;F;^~4Bj>qeO&P}w_*sPGxGh#C zRH@S>(knuxq_UKvEgk+phY81bM~n3zt83}%M@BVlv0N>gi7b&OU`Z^AGRK$>j$;1+ zb8_W>BNg>U1<&(mGYjSG5J~Z>Wy_|Pc1arMf5cQioi2Ja*81!=(s%wwTbH;yhtn-S zJsipHw~4d+2pqs!OvnrFA;`ASOc>#6a4M~8W;Rw;#6E>aU|j6#BvP0~ki?-;!#<4o2XvV^TO zIL_QvlgzFePljW7icMUJf^3Paca(JkbdomQG27F4=KBv%F-M}jm8z+SIC4W-gYdpi zW5e;eH5Ex#mC0Kn3IgDxOOv+d#1LLN{^iSU9Y1aD-4<(38}ZJMC1AC*l{E7y>cLlt z7Ne<3++6-qxb9vQ^s*X$N=qh3%BMMN;CC{ZHfWhHbxsu`sG7M7E+)!QA&Dc^{l|F2 zTSs(g>C@F+A5poV_@r=0k6fB#I9)%3_^QeRnN$^NMLgv!BVfdf6T7=PP0Vn8i6(Sf zK5_D|!%QoRHS0ztJ#r+=R-~j5QnZUR?f~w`*v6BN*O5ip)N!|gb-Xpqjyx6N$RHwQ zrGRFjn|iySlf&vj*691C~*LRFodniNhA^$6r}`^ z2m;o3jPrOYo?gTAwqfB95k_UoIF)u0F$+}sY4qwK%ScfL`a5(#b`8@Ft!-v)vw!C= ziw0!lcMOr2c!Vjd*Cf}&bw#OV9D0#yWWR>FCZmb96EV!ERa1voQ;?qmo^VvzW!Nbs zC@DU@Egef)B~r>cC8FQw3^QQz{llEm{{Xxd2sy!de>780T-s@~=YXn(5<-w%unYiD zF5v7zjpeMiWm-9O^k%1Vl{0K+u3)5a=Q84$M-cK29NY&UN8$185mJBXD?H&!olZ8E zrLa?gQX65sUXF{LQ_`I^!|fSsYN$62SX^a>z5a)hImY;C)sh5f2N_X(&twpD%?v#R5KsO{`={}$JomjuM<|=(P!})%Xllqs?^!EM#00rD% zPnG(6{{S<@HB{4Z+PT!#5~kDCQ>{|wOPZ2}%TTdNNw_1ikEzquQa)2s5{s?`@fb3D z$4qryQ9X$@jIq(}?Hv)4qe!=TIK|LUPm~vCxDoGbZsr?l;S{(ewRnlUY6q!-bCRx* z6>g2~cKJiML^7hHLjb^f?+0RO70gbw*pNgl4PX-1Wuo2Q8oq~yI!(jM zX$MZuUm`D3I~EQ;FEUK()l8G+LjM4#{in1$P1+umWTUn6b;~+OV0&5&n(Y8t2Y!|( zv`t&Fq7vf$ZqD#W46cc&Z=?azEjP&wT|h7~l%HhL2-2I}ff=<~5n>i4srKwdQjMWF zwnZ!g_W8x(FOh8(X&+v(H+W@OqFCD4(vL_EHMhfCeLWmdu1*% z6%_b;IM_pVz>DR1Y)+7Nyc8GgVL3X0^LBFzyAn;738f2T`FdUl#Sf#l%D^igr(#Lm zvHLt}q`x)raC!d#{t4NW=6p?3BzR$63*TthS5xt(ct1_?V=4W{YwS+HT*VjLuXyrj z@_lxeno7~sS5&#u3j!k%lT&J%qN#dV5Nu=YX&)c<<91Xh7iZg~L~f|9sl1VEDHrJ1-Y8wz z0s_d{+9@Ow1GiXlm!N9MW@!(%NN!oD$vb_D7L{&#_l3N2iy2dNrrxa+_a7)6UDF4M2p_L# z&1xhMz*))h=7T)(^$h?G%L(nW|7oU?{e zRMZ)33P~YJE(k0^9gjm9&I#LG4jDFY2zj8b$vJ|QSZu01So6( z2J!Q{{{ThQ%&9*|yQB5h8jO>VH($%X(XhY#>dSZrOvF)}XXk?!%Dh{l#<6+W zwQYCe(=$eya&a|+l>$SB2fK@c!tC3aTAmc69ku<9G`#&e+kO0+XPm5wSgZj!y)8VM z@@Lc;lGPxFm=9JycV;E5#M}maDPEgybs$S4IZoDf!W-sB`rjK1u z?X9qOnSo-QmtmL&H&-=vQp#$lC}I+PAfqWHKaoUvTqs)XOGdHP-4#g6dMP`TG*=ih zF9vDzjvsZ5=B?yqvPvb%UnGa%Nl23llLqs*f2YzlOap>9jB1 z+r=6~&7Pg@FQmcpo>ZqlfuxwVkL#GNN-?Z_XTgrAl`Tv*a4R!EjG`r=AsYY&!Zuzy z?9J*OeCmZya!bamMk|s&=}(5lUw>G?wz?CUY6?(2A?#fe=EoD98w*872$?p(C$fvN z>LTM6mqGah@rX|BPwxbyklP{Ch=ix3HP2YI-IDa>SrK)+uxN6yS}(CpW~Z?}{*bo5 z3j2Msvsa{9{;@kp_Q0yO09cUlI8k41P(K(=$={?Tor&qID>KSd`J1tU#dc_-uYd}p zsolLIX(7EOSs<+}4)IRtdlM7IoiRtkLY7Zq8MwQm(t`dbawK3FjaoxVAa3Naicy>4 z5icjlk7q7kO`4xH`Kd;o!^C}_ZJB=m03ITNMTF7T&k01|7fEFls1QBi`%$b4TKbSz zC0>k%RuzR{^x<>VfOlo7i1vzlX)Kv7X;1iaV_E+Ij`%)D!^otUCc3dsB+5dAB==Dc z!Tz!5`94OToNZj6f2mCvy`&At4_*4@gA>>;m1o&K=3}H^=IVkJxKA<-Ad6ZXG%dP+g>*N zba~%>vKsZ028AeehTyq0j-_FogkrK}O4UAMP?QI9Tjv?eMLe2ERkwp2#W>@DP~s@2 z9z64_&oK!aCI0|_lyFX3YFm3foiC?(Glu%F^JY)tqPj%6(iVxbrX(o~N!%W>Z$)%) zDN}dJ$D1=)AtaJIMsG=$r<@#&7e8V-a-lwDXa>Wpbc`jUpGQWXyq9Li!MMRsk5B~6 zETRC@{o{vI#qA!Bmz{WLZBH#V3pJEe6DoKv30KMeBZ_)7@_Jf&*O;?#@bj69%r6I% zgyOOc-64TO6XEE$LuFWXdwWNltKzPYUq{YqRE)1H^3|02lEr0L8FZL=sZsGIC77!B z0Bo&Yn0?!ha&T04>Bc&lX1L==AbF34b#*mZRFva5U{a<_@Qbg)4R&sh0Uh><)76Zy z$1NE{_;QU^m-76RoT)IpLUO2AE^e}1q|IJ91#rfNs5IG4er%hpJw z#WH>&F1kXcg_*K$6EAlv7GKk5_l`KXDO8cx-7FbjATlzSF`P@oFn%BzGwG^vBT0J!a$`L?XC=7c@NWS4!%35Kbqy9fDrH^=I-xS^(J**`O4P@F$PE2suTx1r z43w7#v-!2;=Yv_thd5Rz!`#z?Vc3m*5vY?#GZYiQ6h@^K1QHgKLPq0IEvONA$4+yL zrd*YtEyx**5#fb)nn{W9rO)xaG|V6+NGum(<$&G#b!&DkoZ6oU)-E0VM|cs^Bysr4*~9nJlh#K}tbQO*(>IDp3~!h$?N2bFCTa&f;I)gyH!gI(S{55x{Ob zClbQSYH-n3p-!z@O!{|gpc}Yn1;8bv(n{4c&dgp9aQsK5V41_0Jh{XSCk0j)n5bmP zoV6ll%%T`-usVv_K$cg1uO1VWX5lA+`H_o?lvOjxnIo7C*N0YN*@CYEPGZCGxyV1y zrI}eQBq(Z3#FrXQroVA`^)|(=s|S%OO+C$7>q^X9fV|1@>k-Ddd5F>Q(>bPF;u%{M zTBTu?^8!l*66ltvK2^(RHYpBFbLl@PMrt~Xe0po2`S4$n9}iX%)Pvg6%6vce{ZZz+ zZdYU3LC7)Bc^Kxt41G1tdpg;f;BGT-=*&9ff z>~`PM6HkJ-Q4ugdVY@_LXms93nxd43)W-HPN#7qM#oHa z32S%S1$_`j%QDfZ9rke)qtKJdSW$46+wBW`;T9nC62yo(cEutRlHQxYNOEng@Qm11 zGUSH&Mh}WWh@}OGZH!XKU^@AKb{*pH^1eWHBqZPD1QflA*ih``ERavVqiqED@OhtAmd_eTD~T22mSIX1#YXM3c8K!iu91(? zbey1^j23Npn4-l00C@9fE8zNQ=~2d;F_uZW?-{J4c*J}uMIz4=N*$d;tHoDxB&uq)E(D#7 z64$2Pwuo|kdJzhON_~FNHn|!JnP5^+a`9N?)f`ESbuh6oui2*n1b_o|h?8O&D&N2A zAvJ&?y}ErObv_1}6nv+0OlJL+>6H=Fw#E_w6#zq#bM%0@+)ExZUSO`r9I?JR^c#Ov z0G*x_ zAv#pWYElCaWE0lDQq1WCqdM=Ih_Qwg} z$uS)1QHT9S$8v4&|&iAOQ@Wb4U$VSZqWY#cU5g1 zdeeKI9E!|BY{@d_3Y9H$H3iFZ=woMl7v9l-yRMOf)NSPJswXaSE~Tl@czU|#Zp*fdEt>tD`yNxW4tYmllDeFvnS=kCnA$9d75Ovmgx`d`!dz@ zxTJHbGVLs}<}drjxFmDxd77OGisJZQSEVy2&X*}E`I2HL;}yBO4KE+b@+G%THevYh zGF0@k%)B~+bwaiaoUJMPZyY+FYFUE6)cOw>_DXN^*P2VxFkI2aJXbWUO!=vmE&l-c z-T}7HPT0{g=)X$SFDZoO=zj)`2=9m4sQP(dI z$CJHCrpi@;;`yefOPs7it!g(aD_myuwRInF`kH?6<9PAg8eh=wFfJ0;ejqGi^A@qv zX3yc+nf{wJH{{c}pIdNSN6D&sW%R7<6!1O2kZc0o53pBTL_ANrlr$!6oRWl`cYhgeAVGa~(@dYN(^f zp1!7|-8W;e5hDA5b`eTG$V<~Hor#qcvaZ%UK$R>FL(x>K!K-pe>kUWbw--kt6J}3a zN1uxrmJPYXI$E43 zC`gr1r8-=t2XrO&j{O}eC?wC1`k#@e{FdSW02$qtl`X(xS=dE=w75CpL{uXE1ONn&2vpUdJ9D=JU*}t@K>iFJ|M?=f3Gi31Vidf!EsFhiTS4>Ds^|HLj zSPuS<3azwxy52N+X!ZPWE=wrioImGvS)#g@R%oZEK&B}Y=1Up?NFb0|oU@HY+q8L_ zz8hDx_4K^^d08>;Y&c<*c&eE=hF+Z_mU>biJO$n?_nnar|UytFmh1 zYn9<#LC3gzK8p@G<}-p}GKY?tQq-vkLRjh~5-roOPSI{LPdtK@n*3d(UuCW;;+#Ir zawo{0GEHqVl8{Q3EkU*fbZxF&A6O-%nxRKs#h#bMJ}CLih#7W9T*q-rx|%sCC``Gt z7|fV=Qw@#CzVGNGo%pFd9Y4IK$$@3wS}`s>R#enwoH2ECq?0*GLW)T~zk3ePv?(~{gE(=#TH5#~PEo@bBykFkzc9;} ziX4cI-@M8I! zhVrl(($`-};c5Il(h5?BW^vlb<=Px#xg%Ch#*J~q-Z*BgrB((Fh*V+n=1o8J>=z+m zjXDZdx!eM7=h`~f$#QVJO9tM`TtSsvm=!CDIb_hvuR4U(QFt>XsDpJU`mb_#e!U|| zw^gR{VI`f~ioZ`~+zqR(lgzdqhvYm#4~-EjS}W)2LXVhuQ&g`h3QqkTjiai1i|n_n z*RT15h8i`jlnvL+XBYEENXIASt|sLvwfJ3mOqtkbH7PUb(37dnGL`2{vRO$wEUl$$WJj&c#51f_H z{{Te03+r+&!k<;#^clGzCG9V zJhM`nlyx&H>LpB*K2nM%OPG?Cp+MXy8-fo*9^`cs?D_uyw$l+RNKq|l**?X%LK4m# z9)=o|8n$uj7=yHHWv5sxGJ=(GRn)@^eGxRtN}PgRbc(-Wymd+mOAEKGYQ|KxG{Oo` zyTjV~MWV8hs{sE1V-BwcApj~>mAU@_1Qmj?SV~Gu3-^j#ZVovSOVAyG`7;xTsGULEv|Ui7(;!!nq34?#B&mTYVoWD&8p!&Fg#iAB1slQ;sSHj1$%%2vb$k{qxzq*sg=B5^ zK!Y((;ys>>=OEm~95w^(U3YL%5AQE%20SfZQg zUDQMGZ+M-w#Kr@$Fr@kr#1O09y&!7v2w95K{W{t*ae1=PgfWR_WtFS~VKh1tftHX8?n_wS6%~p$m4SA&ePd|(DfK{5eZFxOlB32$EkvEShZJWd?*W_wg{;sq z!8RzePyS#{(P>hqDkf?z{s>m8g|_lAxad!IgxwPq+hj-wvjKAhlH_fB3Qv>{t+0n{ zkZ`=QNFCUS#&X63kqBhQac{F;I3OCf>UN7txh213A<}Pe(h{rBCENZ)N}S#sMiAv^^q9FTd9jr+n#PSVOIw%vpFgxahF zU7&cuDGy`%#&u-YLE?Fa@6)sxDaWx$3L6-iBI2oJfm(mlwW}$|=RZ1SCD)_uA2$jFSA3N+KCyb~_KGWYDXC^evz8fvHjU5RWmI}2)I|y?GyHqf4t7HL6;@U zzTgWUpIAQLM=vGt1z|EkEa^RO2ishPb=gnwMC&Em`)b}3)9o64_qTw521r$kY)cl0 zw3p;irv;X@xl)1X(A*aQyqD4!_%KeypPhs)s>*&tZz7BpAnyI`XlqD6d2b<32sb5? zZVXn{K>U_J@Oec$F@4N61=%miblBg)AKPgQW9((l(g)>kkbS238iKoE{6>ovHJ_)}9JJjDY4%AqVaTutXFI{Q^dD^@ zCKEi|rHF4vjNEAymeU)>_-R9!DwMjJlggF-A$Cu*?HFo!@RntEdtN`*HFOe;62Zf! z;3f|&y6P&G*(E>^?;QUCxaqf(u79-J{{Z2NJ4!AR;B+b)DP*XFx}2MP#V->{RFXKg zKDp&jmUh(nQx2k)rd2IENHgM6||hUNUY73B>_tFtz9-~O}58UZ{VV@97sq|ShmhuCGcE)cHM%W zu68K2N~V)OdWml$N}2tk!ZMa4k?KMkYj&iPUnXUe`DWq|6NbDq1gT9jZmODr;YuCd zN?~Z|hk@izg-hh~b$-3{?GNIWzk^}Y@=t_h+%Q&V-0x0_=o-x?A17N5k1=Ei-=|3Q zBlL8Y>d5gmziVEsws^XK*5CFqe94UDEUB(e4TVm{CMLplRKl?RzzjadB5TIebp>>9 zonN>*#n|IxlpallIQK zo{bXSK&M!_E4hpmI_U0mEtJ4G+4}BbIJ@MR3M9cQe6*!<SAoozuGf#Hiom{ z;^MUOYr;gtB&nJ))P3NB&k;ugHX^Td> zRhB1Glc@Qw4bJ38EWCE`b+08O&|I){jGi80HCRS1Dpa~D@>C_122P?kQ(U=i_8km) z{!f8#ay?%g&tJmuYwmGzTnmZVtc+6tp^-~bHBC7ZNKy+~CCC7~cIyjAN>Eh8$=8c% z#Mjk4B+hi047^IKFX9sEw1lE^k!793kZgVX!+UO#3VM}o8w-^Fcj`HJ%yjFj3XmkM zg{Q+a4^gSUeIp%j6MCasgp*UWr>nXb*$MVq0)}c z^=R|u;_F4(-5q^4sUAz>=PP(NVeu<6twki&$u{tcQjk}&-1M=w{o}3;ui_$V{{V#0 zblI~saK5&)3ZIEr($c?&GEkns4q$zl9=@I9eW|k@%~EDX%hn~7sd&?c{{XEu{{RM; zQias%L!l@q^DB2qCgF)Ufu~e~HMsg?@ekyqg0i`0lbyJ8O_$^@g)*j0titEYG?OJv zPNCuil5Xq>+1aC$$JEqvsU14{a8S6PKY38*GX>@AjaVLO{u@V&(_s}znNdMiOeag3 zC^;b^Ruco+NBV#-w028P%{bZT!fF!S&!FEB{(ATa%x^1|rw*&bre+mO2M?3@Ej0<4 zqp`5jq!LS=-Mw=0Jbi6B+u+yC@-($H>2iFw%NeKmE-Z@bTDqxqGG>{QW}(KFKjs7* zKT{s+e5cv-+L5jgNN3N94lTx>5{#{$@~#t@>#1akcz!6LQBxsl0Vz=%sMvM5cMxcJ zk%aeYO1+_Z9$d8{w^du=GoQ-8J-8lF$;rx`O3F*kSOp6FX%)C^&j%I44aTWcM?eqd zQEj_4ZRB{el)mPSw#)l7n?uWtA@;T7x<1pUzeaTY;N`v#^DBuHJ&#cbRb*|p zRJ*CohiG?rFKr6_4^Qn4EMz*s7Ow5|+ASkF6_yqwc*;(e0X6|)?-ZwCO(cW3hkLD# z!h~JRuz^W6%?ZClB>BWkPEPtHWvoo}iR%EB3%1ZjO6?4Q>JQLGH74zc1k}mg{?TqZ z%K(N7BWRZCxPcVT?{nG?tN^uy+Wv*%t}JN+Sy4V~jr+VOj?Gd>B2omODy8_5u!s$zOuc$wAMtu7AMO>%JT2r~(jNhFSdSP#|*H5Ile9Q54v zTj>~{D?N1+SN_-cj$KT=p4X2Ak-?UYgO8Tcj@NYfIvb{Q>7dMYt zkbp+#aT+d69!cVAEdJ-bTzRHTNL8iw2TxJjHE~u-VyDV>FWa_x>_8L0(03qykSAP&$jeAVAG|BM5SR+f@4tSq+v%2o2u+>3!j^dv zCLk2tr}c*FsHC%zWs6+=;WtkOwdj)&#oSn5(hPD^O3D{75oH1g&Lv%%sFkW=S}rUt z4dVmageoF3ZP_hkc}HSM`oOcv46RmLZ^$uv4c*LYaUg z(gl5ke1}mf-rK@l$K=>d3qL2uTirl3#Fr;c(3>rX4u3q_`T6GAIQqaH0m}ox}}Vx*cMW6rizlZiB32_SKK8WLA)k(*0YcXDB+sQCZ1O zjcFi&RX_pcCLewRCEJ-L#tt6uvj7O^@f&g2U*j9DR`O; zl__CG(pY`HpnoL~B5s|D9in8e(Au$t!Vabm7zoNbP~fUnMUDXk+vQ;q_Ma$js*uT; zQf^B>-V=gpSgNv+48%$pruBKwF z=rP_WNuyVXCRD{Kf0V1s_T0uZ*HPf~d~c%aPcxN%nKRBCa626078NHD#H-|Bv{fEt zqe)!tChk%lpVmDe6X}}T$xd%-{^!j7U-pl}@O2)BgdU`p8@gBO&DX9nKnBN|htQjJ)45-{mL#{{Z+f-X`-uiDNXvO%@?rGE#xmsk1z<-6@{{Tpor+WVY(9yZ0GSy?#lxiv_&m`(%ZR>5L#n+ss{{SX^w~69uXfOM5 zr~Ur`snW3|gJ3)F89_7A!0DEmd)N-~x7wClCe@WJvh2WmSj24kH-l_{7$7ytYmpJL z?r)%{*o!4$g9FwC^PUGMOi9wxRN;q9Ms%Mj6xmv(sVQWa8{Q*k=R$JqP)xG=gNT;0 zI=)L~P7?uQ$KE4qCE<*jiAsS{^&YX4gDNeePQ+-bB^lGICCdm7O4I-XF_aQlE)KmX zIW-uj{{WG%c!R}!GFVi+CRwSgb~8Z!T1S6V9$vn-nty|~eK&#h&1d;*{wvpK4=C~0 zqXL^PHAllwQV;B7k!nT%01?@%^tnIFMVmV;^94^{$rFOp)6CIsF_sa*Jw1IV`6D~a z+)KmpG7&OjQln&*Zx~C*r$}+~+QU04ymd*fl|Ed}X^=va0rI%M(S*Eij;Q%ret= zvQn}f4_ECPeXXkGa;dq?@i>|1g;}eGbh7HIXRb{w)dCE)`F7Zdh^;xcji%?Pmdx{l zT;$^XK9M5|uB!2{rKP`^HFzZTaeGD+@e;~9biCU9WM}zLJZ0`LaV}L%>r+dZDi-Ml zD=EH~abnG8Hz#<(=`^V6hP-6XgPT0rgUgzkcx^o`Ea|FJzmz{JU4lV7v^YVsb#-fl zR^|RJ;*|Ii!p<#PiU3Iz{{V{EA5Bfd>c=fE)A!Q*vhG8)}oNCkeP(K zKs!I6+_l;>cCf)kPmpobf%uOFvwX}Vwqj->DjH@=o2?Taw)A7S-qF5{u|_(&X*1MZ zjq>G?Xt0%Ld}A_DOq(H6g6V5y=}fswH(sJjR09y!xk)iPv!C#!Jv}%qwrZ|-^Op~& zaT0v2pk6WCrz+g?uxo02|7xe!CD_c`fZmt^a!|FaSkEg4nJbBk4*EI z7&%zV974or*5&ahDo^nINrH=AZW}#j`m{fZBobT7=oYkk`aWFZs#*U4Gsf5PBHrj@ z{J-5A1Bl$eX3iMN{6-^$&7Ft4qPCbB)atdo!}9wm10JrAnHj2sJe^Gm!}yVcDtAyu z?%m_EI*WuVFPAmYO~D|5J4H&~8KhMcP)QC$orGG-v|leGtOYNpqja=2D^@XPC(q>o zk@Jd45Ty7KDAuci=<%doECt{p01TN!?$Aio4iE0!ww73RpIGPlf8sh_Q4G$1T2uoBKd4h;)1EFQk%JU5sP=o_WBMd##!UqEm^@xB|RA$&kVf0g2stF8cfKbR2y zz2N;g28)ydK?zleyZ45b;FZXT^A9llK$}b?6)C|Dy|>yLe;6eqwGxhm2$@N~O%P=$ z-R$0xO5X)F*u^e80n#Hpk~yaemgFdbz2Us_3S~7Od2IotaLN}frdS(xaS1loO_R<#^) zxg>_`fGoeuvhKq}^2%yb zt=juTZTc-fg(M*iOM~eN{1lb&Az1|`_WH(hPm@JS(8`&i4dr9C;#$b+)mYhNe1I!A~Ddi z`72b=q7(Uu>j}n{BBHvXjMWgspu5C9H2cU<48oSZx_U(I#Sd-di<_(xN?i5t65%bW zjwvQmlsOl-OG1<-(i=&v7bOmtas&IuiY~2?>wu}O2e@$t+)KH>NJUwna2^JRIv1$7Q+Q1=uVrf> zKK{^|OOd3kOj9spay_9o#O$$&y^4!%)3i-Z7*&d3k;AITrO>G|f>knd z%V`NEzJfD)k+Y{u#gx|Ph5C<$VOXAHszQGQGGZnl{{Via6mmfIH(4IGh>T@9FUR`2 z{{VI^ZBHLYEyqz~(sO_5AM-W^Hwo~i3Tix87|J+hGRR!%xKbBBp#k<(;^d!VBfn3= z)7!RgEA;;Wca!EdezW9X-0}4FCi>q=fByhDOZpw97F6KANUcpm{{YlD?M*RsCQ4Bu z6G%I#s3`jH8m}M0(|gum$NHSQzfk?6^5XRAK|gQ&k}^7uZ1C(FnNl+LO2cUoTf?1* zR7|RwEr=k5f)n*|8_()7jCSeA`krh*WTiQ7@-?0MO24}?Jmbv9bI$51sm3Qrr!LZH z<)W5Y2csYZ^)bsoJ6cblDwX->5eb_Bd=w=6bivNl$!rtkTV@NsC@ZSV;tbrTYlps7kM02e3I zyi{Eh<3~Rdz_AP!GL3B&O(3XARKFfkL70$Oko(@zP01uip01p~h20cU(9W$^nKEZi zR_!eXN9YHr`$WoA_%wQncSc>5Ic?$x5GP7T2aPf(2kzUB@y$Jb zIDZ_GQJS71pXAN`!w-UQ9e9AWOvP}FHzrc9QJfAdRj#2)1O)`hk`$)^gXYt2vFB=i zXT^>n@ATvS4%qlwvsWcc=l!|=0MPl{;P1t(p)pk0R#3-tEYy^r#Y+ldMnwEKIJGOnnOl@GN_0;pGQ+1*h;Mr_e_(q?ka}{?EzxG@I0JGE{6A>{ae^6fLGyTI&*^~PIt@L*sHQkjVbz#?iEKGBoFO(ljE@82oh~Ajrf^iEp>DB+w1}RZ;Jum84fwtOip0}4 zOvS2Fzc79M;~h^QaxX*5adeH1pSg#V#B8XXI-*imiH-TdAs(aFITwcF?CsS0f|}aS z4qD}|hln&^h^45RCSy4%R;0@&!qJwjn#CGvMNMIt-Zz0`d>_o-45`gFnPn-RAz?uJ zg%0qZoMfzSa)h(d&&xDP;wEC2ae9=ha?}AT1%vHxSBz(;wP4>*S93j|!cT+!A0GIB zQHaskQ{gJ5rq(AaVADB$SY6G>Ve1?d@*HK8(}$0~JCmc#l{r^5@~6bSM+uWyv{unA zM^adj#hstfM*BC$%v*7F*~P{)R&wJmG?{fGWqu`8QzA-$DH6aoZo$vqEorFanMuju zeD#oXj|Sz*m6)lk@aYw4@g?b5G8Q&}e(oaFl(LNH8AVi%1s@ISvoa;rokpEW3MzIj zZN9N;%w?z9^t+SagQp7lm*s^R_7j^bKh+A96;NeONlg;8kV54#V&d*!+Rx`|{XpuSg z*w4??(b}iuzvX}DgUs2Bf_xw5Un|vO6thM{%@mHAl94bJRjiOaO)L_i4?(1}+_ZZU z)z;E<^1YrO-3?f|NAZ`V&bj-PjOCE!E~cK8WB76khvIP8ng9icr2b(0^|2A?Y56g2 z9L^1Ljbl+VWgSAK%|fItHdM7Gl#|$laUGG>RuPS>MMk6$cDB*7;|0+2rt2(22I~&1 zk{YfD*4vR`@_3|8dIBen$OIphZk{m0o8StV0t0S+V^@5Y73{8KDSbb*6!|qc*ZCS8marK1pars1-KE!dh>UrGni$Qagy!mfgsQ$WnBH3o>-XQ#@)-tqrg6 zqgZp0%OwC=z`Quyd;>_dSw8S6thQwR0ByWvl`Wtb9io!B)d3Uvt-MTCfQvdyUHio* z=+Yvl{cPV@IW!(x9ET+!^@F+{oP;P4+bFvjneF1iUmz0{l(x<{jJcq$giOOuqEN*8 z^oe08*(zmCT(1^lRzlQ3S-4pY9MN#9ZGqS`tpOQbRCW2P|^r{^onzQ50((OcDL;i#V3Li!1{;~P^Ez-$?et}X^mUK2n8X-kXzm* zCCUWp;N#3#PT+z%_Yh@d(O6MCs7P;4u%#E+=~)QWmpdC=LXyoOPdO`E46)H$yeT?# zQu!(u0FLp6T(~J=hf+)+n#}m ziEy`*LaJ4C#euoN5l zoF3$D>jM*IiJPHTBolLO;whR%-yJX z3YI|9?`XQ|a$zacIa070wKD=xg{efa01`=u_TA@`o%wK$xifBXQ;@zO@w*$5ONM34 zOv;)(RZLWZkc2j^M^i9s-ZRyfoEGhAZATOOn}3dia*^$Pi}2yfe68h~7>;etIY%pE zOO~~&ekDKgIFd+Vp%Rke4dx+00^@TWf4=UP%?&wA`!DL~=hcp;q*VNkSiySBf2P%c z-zOu7Tq)pR9XPc|gJ4-dJMn`vRFukHOwx=$43LEB8jR_t(#HP)loNijkD06GX=y!O zSw~Jk)&BrPU#7=GbNd=q2=%2`_qtW>lh5iVTi zOIlK;1c|ChE7Hnh&RNLq@E%9iJl$!ysXG3j*!?HQ`d@+L=&emir2hb~SI!R8GjWrK zTs6Vwh1Fryh}25Nwkw*FN|Z5Q2unnGo#SXz=D3GOulz>(OP@6!FB^Cwo1KU4OT!iA*$o>k9Z9o&zD zDQ1TYorqN-lsr#3U;Ubc5|HJ#vjY3ayQBL#I;qI;bw6kvv!|zP{$SDkK=|cmjPE&r zz%o4?in+-MMD?WJ<;nwClcmFv<@JwOL+CnCthRZcPt~=h{Ci^m0I8t(sqqHl{$QG^ zn6_p{076+ZsQjw|$q5M-02_K=xsOeFnp#T{qs@bQ(sbOPzu`xnv;P1Tu`KCSskQiy zBZ*8|B+RI(QPTU^m|CxLqkl|KT(``5oSJ;dIQcOuS1A zo3CXkC07Br`o=Ly;hj!X>i2*0(GSP23x|~VTV`d!&SLQFk;iNw5TjBj zQqt7}I!ecsr?dKeqdDj|9GgSQ{OtFC#P6D}6mjpCJhx4Rs}7%xB?WIzl!eFu1Lr%N z*n7thjiES7N$_`hK2DsYM~?Yy;_h9o%GG#&Vnn$~l_gT-JAz4Tzd*xpSn8A{_&D_S zQ&}s>9BItF6wNi0vQ|A^O)jZg8cgLOD-UN%NYp*yy*SJGksI27fxymuYhM^RwfM}< zHbQY~wab@RHHuP7KuyPH0yl&jjYPvzd!=$aPGc|}zn185`T1KEkxx`*fih&Nq-rIN zyEe_}_l}JRCwq)F;~(&tM+rD{pE%!LTAU`9rxiGALZ{6_6*s~Jv-P)suSnWj(9`}S zllNzFy(|LQ$R$4}>9Za^gH>iq z8a3iLWT~w-p(!Pne8nX6al6NSbs>n!(dElaQn#hq>&{(r)agmBl*>}mmk2|KKJRUaXyetMv^7$3we0kC^z?N!w?=uVgHUldgqQ{+jG9b(MjMOE zQUcL6f@dHf`;%~9JzWh+ZM1m0@Y>!@6U4qv(N8XQMqaB?65RMR&6GD_cL&}*9XZ|^ z&HLoE{{V?v{^pa+8B-9-^+ru~G}>jR-elRm40Jc_>(TNw^?!l?0KfD&QY5Z&v`dtw zldu57S5}LYQOvM%rsc}&R6Ochi6j2$WiR!Olw`jqo=ksv(r%QKIDR6Kt?n&-qgeYo z0H8^K@I_v1OVM2N!uPa0b%I*SQC))=nMra93Z)e!I7~hFgi=VdT7XLv=?0vsr+7npkB}R*og;XUnLGr0iBFtS!@++#-DruGhWR~ph z6D8=VHuA)oWQG>*AlsamWoi$#pR5(=YC|DKoDR0=@o~l(FCkLGi452I#+y^%mIZlP z`@`i?09t?#csE`;1cXY;nTtG9^k~%=3AVG}Xmq`h#Zrh3+7y-Kniol$S(%~BcSx=V zma>9HfE~mZx&~N@z=mzNhjyq>*hKV#LHXJz;JRfK)#6Ndvu_QWFOte>emc^EzYQdS zNe;ukqFE04Lt?UJQ%#vJMMvT!q?Dp=l8s^PSnTlgTUg<5l}7|Rk7L#&tQ$6vKq&)Y z-C|^f!K97jCaqY2phJj7m8>_Z-JnGQgTHtO6rUsn5YQwvfOoyXfGAa$E&*|75ZO_n zY7XaMUK1*^Z4i*4-9&re=17SA<)r@6rx37tl5Mtmjc3x>Zd0 zEw%|hhfKh&S7L9wM7pvvQB^ULKs!Tk87*>Fjar4Fo^olj2wagC0TcwOk^v6`NIwz2_ zk+87u0(Z$RV#@^00m#14+enoW6r$$tTizv=`jPykv!3k_fC4AFfCT>lXeFKpu~6v@ zg6=wo>L8LK^MbM-&QI?PZL1tpvXd!DcLv>KI_VmIp$?;Ch}c0StfUi zwj$lf>l4lprKemO7D>w0`Oh1ZL59;!tE`@|luMQgChgOtbm`pMj8Vbm>uKo0&Tk*{ zgV($q_+eI6V3IL>^_Xy+pN6hlr-kAZ{{RjYgr`wtl$nbsVWkG=(g|xqDeO*i^%ckS zK3B-|^))7*c@W!j~~MF#cmN#NrmLP3Fy%& z6tWPB+8Os}Ax;1!SU0#lf23({T9R&W+kf-FCkzD_Bv#(DLNer2hac_s{%iYr~#oaNb_^Nz2nJ zF^Z{4(Jax^5?C>HDIn=KaLmuVa(O-y)^(|m`RMEMeEDf-Pc45h`2H97HIE&BE!p!H zoic`+zNIExgoRWnigUBDwy|sPZ+Pd2(mZHN;}ht7Pb1FPg}F43Fy`K9Gp1=lOzdKy z1$k7;K4kV{S-m5nXu&FqJK^C$$xBhT%p$89tHf2RrlNg8{{V8-Nr&)l9St@7D9bWO z7ASJ0w921?QdAI~CUQXWecetTHH_6{^E{uXPf|^({{Ua~IJu9Cv#RHP*F~sHnLl?o4vYp5C64ilmB|FSG0zec>fcx+KCBkVczs z-6Ca|LyTEW>4YlA-5NQo*>Q-AnWZckv)UiP;~NoI4(idHfHX2^@x;6c0Z5&zNDUma~ZrkWhmP#6U5K~EO)-l(K}Ig z(M?VdOiN)wC%{=L*bg~LrU5sNbB>5B4oE90mcp=P|0fMK% zs>7v~tZLSx+E2e`c;(db+gK}4$x!60JYzT~6Z5kF0EJ4IOGz@srG@_hP2p+jN-CLB z*G^lwJB$;QRA9J5u|tYdm8^vzD3q`v!E@{l{j>%$yBAU zNm)}MdcR1{T4^gP5^n~|oycZpr>>`@(zMTCnItUgRfWTbQhdW_F7eFuBJ$3!vn0;5 z7vT10;FWCj;xzvN%n6w#GZHl=#f`cUdc{X&Am5h|%k0Hr+%FaH2;-8yxSUoXdcu=zCcJe8$7f6Usy89rn3 z2OaU+YRs;x6dIW+O4B7CS*bVGvs=^JH2PkQw4qYX9N$&fhOC>4t30*A-aA)tLnKea zDJ9`m7-e`;S4d=_{v%smM|A+ff!K>Qda=<`N>7u>p1jhf!N|#61kM@GmZvh%6jRdp zvnB}=W_W%Y0-Uw?54PkBM`H3Knu|R7c(ZYGM<$A7nw-FjS(EE2s|rFYX4Eaxr2}RR z?H&3}(tR8firm$|lP1jAtwsPP)24K~kdviKNz|XIj*T^WI6R3zE-G z6_oQ2n3Joow0b&sg-4UCxjR^B;~pvH4i?wSnIkLEEhPaeApkpWU!-*{uuE~z4L>8v zlS%&oD;JO4*kw*3@WFK0eiKVaijssSNec?l2?Q^2Rd)(^=@s|jp^0*B;{6-TepFVZ zX)ez#O;DdTMF|>D(m40uC){jlQD5}C`}=!Eyx>YF8gqp;kF-@@7eTkN5}itN%?tG= zy#-)3zwrv)+7$v)i7di2;e$nz{PyY5;W|yS9sxZ%l;f-lOmTk7)Juj_4cZqaE(8ib zBb}ipu7^sCK__E)DZHi@HGRyTH}~A-pSyn!FUOAs%8~qGd~f z8SHIfdRW0I;?OUVOwB3}_KD;8K(boXsgzG`uFzw#KZBix&y^yQeANJaFv$mUOSEYg zsKZrBwG?%_wJekUMdLKijkJda!<*jTkx5@7rYR1tt^2^QfzuzSQqiyRAfU^aLY{HDU>LRZj`g$!;UEvA-2z$J$M<_SMTu!38CqANBHktD6bE=NeF?b;Us1f&Ad zDZ2`=n_e!#dMgu{v9R76Z-!RV8M}?lFOrh%5|#YT-u+;1k)w+(m_PtHe(*(JM3A!* z^4O@~w?hkS1?;QBZ!uH)LTzv{Rsb;*zL4UO61F5A`FOZZ0`MNYiY}03KcS?FV5M*kX1w?8j zh7kV%k(FB=(v-6s?+Do{1C)0V3?XVG^nd{6LwEh40T$-tpx!0CfB_5ned2(IV_#6T zOF&i*qDzKr#Lx_*TbU~Se=uO(yN?oxQ;R8~R-65#aN{S4}A@(~(uD}Z^d-M&w zHTfc`umDm64!aY)MVc>=sU`JvA&K4;n`5*IWTa~ExDe8%WVS`k)j1gB(F(kv^49oTD+X3&IMK* zhCSmcBI3GXASrM5XgI<(c8evHf*h0E)*4H^18(ffGS3yUJf%tCVZx4$$R>2D2@{q^ z&olFV3r5k@loe86`aI7o>3Ul3^;>@zgS4sU2R32>>M>cuM*LT*=GSwX<$aPv4v5zxp4Ed5`xl%G|;^T@% zf79T%FqJBfM6~*g;er7MJt}lEG~Z0 zE~}E#wvH^-YqzI(hb-XHaxH@Q1%}NLA8e{r6-@mZ#>NwUp;1wrXD;XUgtL=H6fDE2 zT)Xy+oI9~95#3DSKJX~65M5-k2T@@5*@n=i2VwFO3dun(9pfjahOokk$cbBx>uPYkM+#W*3TLF7H)!UToR(4F4Sfw)VMk2rKtzOmgKHA)#X~0RZ&crDrg~USY;_kzr1BH z9`MPIy*1SvPMe-w)m2n#rcRuyr7v1%B#=UxpVB$shaM>E{rge=HXPZ^#%AKzf^lGK zJQ-mDYDVE9gSSR#QSp>Ng%4B9l&^FD0G%D@FZ}6N^5crmn=*wHX{W4d8bb6a6VUhi zhO}p^<0*1)qvkj&iO};)%>_R&nZ#l^O(dEs*^Fn*(n6;w3!OyVzx=#bmY3UACS$9r zwIAZRHRdPph<{&r%xrA0<1K1_)- zW=~l4f;L58wF`cqLUz3hvcy&a)F-5||uTTE~X8gX!4_Up*biCD-6R@x9ht-qTh;~)Q*4NTp_kg{{Vx} zJWb<#yvdxWRnVl$l1n)kVcI=7Pioq-c(Txx-sgjvO~lE#r3|@KCoM=ow@3Gm?KvrB zte$6+r6lO%FFI6z@rlba&6q02J9OuKqk>*KYS(8$#0*JQm}me#p1mUVr}$CZ^sOzr zroNiBEx|ftlMj}CI%zN@shvA+&3LOzfwY??w1NO|F7Vq)HaF*V1<}A>+*)vRI&K6Q*eRE(@^SK&dZefk|Qpz}_PJ7&h+yonh|kgg8k^w!^#$yQVu#aFRg;`@?Yr z=zuc-Tdl+=L10PKwaB|~31c7!arcDbkO~05Z&)@1!y=Yap>_rnc?Fz`Ch9IgU@l-n zqUl5c?HZ)J0zRc#N6px67fbn#JOm9$as}b=gycZIAlNWAw$Pl6+PsS}4IsI8hkc*` zniOxhNO!xCuR&Lsg4=X~%GMB*D_auR_4S3e(P?05DRMwz`@`CoWVS_u`=9R(zd$dD z^2j$4H`z&KsQJzJ_lb9TEQuP2Vt$b9q%Z?^Ez$bJx$JJb;Ey&ey%-B_~t}MkyP6#w{~M0!T2MLm&jZzzk2#)!-XU z2H!X<7B$F(KHI}e%1EhpJx-{ZI%csdT3uw?%+U=c$*Q)Et#=J)?H@qiPm@XXSgk2Y z2WSl_MJ0yk(f~?;pfvAe_kq7bE-ZkMKFt9`gzDT6c7z|Of>xEq?q+*3K%%lp`NWz5 z*+3E)TtcuIoA-tSs4xZCZhA!S0TsQ057r8AAR#1Md)w9t02G3x+ReADD#eK)s#_o= zB`kd*-64rAgqAKo@UhuDNVTQkv?7EnyN3G1K!Y`uhU#~T&F6qfuA-GlKv7^84wgIj zv^uAdhN5LEnc*eVVl86upT|axS|veBX6Z`&RPG2#OWOP19BuM02$Jd2I(3KHEQ>k| zZPDO<#8d{NE`9cgJ`EN!JiDdM+v^gSu(mAH!*_4e6sv|!vxzY`EY^+|QBhMoAR1ah zB$EEn3Ex7`mAeuj*LX~5MKh-b zOSjN|@KR2jDI$b`W_t)JJdAm&N_3H^5zs{{2;@}EC>OH7NNIjF9FcV@yT521-Ugxx zivcX|-6E~!zDh`}7aNlPkq)^P0TVpn8@vsUuwIkq4Y0ciIYmW#7sUw#zgU#>K}=G# zf?s2|q*8Q{3#(UeSRHgB(L4nJShm)I64i>S*XUogCTODQi6c#i)1(#-BBYeR_l36d zgwRC8seo``+&ZzAtx7KJdqF38W9pEj`F*!w(J_)DQ7BrN+?R^wj)ALt#8sdok4Q}o z22#V{Xo#fj8aWb)K)D0If0Rs@Wu#c2BDFu1U$aD9cC%B(i0$my8QpXqBh-zcnAne42LCXFBxUvmN_-vi5k~1u70&ypiYa~T^0T%({jURi%s)DqWK5n3W#BI-?PRp zSuI4OWYMMWKqqs*$}^KsglWK~K)Va==wcIBb`;4lrB)%D_PiI18h9&E8|ruYJUT_J zk7<8jHjZcxycVpRvaC+EyYYHGRy@sB43B zV4K)q(*2@ej@oT8y;n^o$=~G+{g+M>WY)>1H349Pq&S)#nf;-?H+USUT$r{wo2W4C z$1b{$N>w6escA`Mi@m!>n|paCGIgHKv!8w=n3iqe$NEOHS}LigBqh{@>q}f*2S4y3 zX!!bY)ZZRMT6+4B`*Ps(r-A%xp>w4v64IjKB~~Uo;~vgkNv!TU5-F2OFzO*}H+PHE zNjqxJeeOptMlfXsX)M+O>@6KyZjzDC^sVQUktZ|?G`nj(Ucx$It4jt_@f@8Q7750j zD+K$pEqI z8P+T)QW=L>&QiC5p?43nh))K&f&@1Oxy+TOm9tPm45$a2lz4c!XGT}xONW6}ot8%1*`1+$Hy0120X0#)1Z0_P)- zz@bj$+z#h+1>Op_-ADP>5^3PL;6pHg86$1SXmO5kCeZ0q z2Mu!-NX>#|#|~@+I!^*CQup7@)&%{U3aP!1?Rd$&G>2Ef7PEVT-5N8KNhe|`n78zJ z}#`Zt$N2Y-Tc)ZUH}7GKp-62E-@k zVZ0S|MK4p5#0bf?!tAKnvk6VXcJCL<;FrNdh*Gw+P5x91f;aYos=&!}ZQ-bT3IaoQ zjH|G-lP2J%*A4;u#L0RoG0D<~OPlb$*cXo=Z0+0;fAVda#E}ux$#k zH5Ru>ifM(|mlHb7mvJ3356RI>K0Ph_=zlU1F!BN{+O)<{{$<#X_DA9Y!9R;a)(YZPLU7*gLwH(ugaOkpGj3EPMM)a_EyF-+U=cj)zXs6D_$vGOt2P( zB_M7#Fr=ioM&DyfS+IW^n>aa2h;F?g+W5Xj`@B{OE^3me7H*9dm5L>#(?=?w5U7$F z3S0GP)-k*@n_ET~Z0sn+`Ik}L+Wli)H7;Ah$Ez46NgSzD$`~mAUiOWeRg*1^iBT*%v}lpfI=U+=bF&i`siQB@RV<~g)-!I3Ok^)c*J!2e zp2iFE4XyHvQdTx1mIwvf64Z}EpanUxcKbq=z5t3@Ht+U>QNAQP30?i*-HR0vlfTv- zHTfY0DjI+09CN?~FGxLM*3r zC=Jff6JSsa-P_hA2ThVla$rv)Os!K6pc%bk{E0?{muRzS7x0Ds;vo2;RHp;V?%rryzvw)DxO zwK#r{8Gx&jNCZ2xm>3ZN3*7ra1fMg*Ni0a|(VzsZsWl7%QMiPeTS%|w?{UAZE< zrfvGXPR@pvASo^ztW1|EL<32CJH~2}S77|)b{!z3I;2Fi_Ue6M*uiz1HrDlpZHj^U z#r7THs#)wz54*c<0#}qaf|gfSgY_nYv7t=w^M`he86m$Y9+68tlgr3LoB;h{H_%pa zLZ@M+)$a+$oCO5oxMJS6N;<` z?_^ZnMaT~Z&XHTdClg}UyF*FvE!Hw8X>VA2Z!Arg0#eF0f4oyz!8_CBi<-$jL_<#7 z5_WOZJf!X%#MVk|b1;JYcOByBHwvl1n>n7$!}*+DAycx?csRwno93W}=%I*WGuLti5KB2+tAcg7x zJ%-SzZyb?I4mL46a3sqOYQ;Z<6rn3$iK5Kx&-8&Li*3~i`<|V;!)nQ(DC$UHec^4j zO_Yd-maE$T_oysqnUsc!l=hizNTV6w#MC2ksP!B?Y7pYHpv6QdO+ z#s^owj;lHlqgL>x(L!PK-%o|PK`d<#Pp225mR6VwglA_Tq#nKOjjoi`Ao-OM_xQVz zhX=Hs3*`dGmzAyL2tw_ti@Qe)+27XGpPwW|t>R^7DtZQ) zFgv^wN1HTRTA!THAcyZ+`f8>Po7tLWcPfZ|x_>&;dPMcfIg>>KfOyvSM#{&1#i;Cq z<%=z88H{(B;0IWy+oSi%a3_r|keuDKElQNSvQFmH$!ba<=L*3;_FY)y#dfD6s|neG!iS9fUdo6dNW9#-SvjzfRl9kDX4m&jvpQRW6(6w3>rB-w3eT()gnu`D{b*^dKEOhj$ zI3>WUF5qYcPX_wpU?d#Uv)x82T$wqU$y)rk{#UM7I)WnU_Ag_L3f*3q1VE=7+SVrl4NtJu z#h5mx6XmI8x|UYC-XYKvn_oIqLa*5-_q_Vq<@rrs6h(b5V&eJ!8BUco5dci$`qb)% z$Fb5RmEnoFsC2J6F=oa!a7-8v>&n%yOK~ttEqyqt8+_FZiGA*+e^DE-C=1%lo>vk& zn%m@?I1Z*X809kfFwOxDJj4Fn9e%#pV97bq(s97{t-+9cVzo`+_`fN~eMJLv$H26a z%P^r;(erXHma7wh*5p`lP?GLJa84lBSW?k(#fzhm&Zcf3%a~m& z_i8cS3?}LG7R2 z?epV|7`eWCzt0HU)O%X`O%vlt`2jVBU!qbNsm;{ds0{-7N@oTBlw zrTC#`n2UNA&0Sz!viY|h=OZQ<`ga|*nEYF+m>z+ACt=_-h&$j>{C95y#ZhxE>#-9s zZyqJ5lF!$hVken@hWz%csOC9e3zh7WBTlX)n5kQa^Zx)OM85qix;7B- zndkrauBm|%O1D(GOD`+kIW5OkzXzZ16R0I(`|k6n!1DJ=&fthEF+E(|R~0vc%c}jk zb+~(tgRn7OzRRUx@gWVG>YAY-&omkY)1I1?GVML^+5?W`%Q9a@KNh%SUCfOW=y{lW zEp;n<8%y==(_>PfNWNbMHv+j;zM&syr()HD^>O{n@rKD$EDNX9($irn0a5rNrb~ha z*TpHGlr05UdObl0w{DE1LX_(zQoqGx18qAGs6(zn+y|Y80K8J3WYpj}ow8@w(hfG~ zLSD2k9$SU<2tukiV(D;9?~)Wy=iR+jQ%SvHILF|O~*=Et_|6m^`9Jml`PwvxL6Dg<{tfu%w~{~r6m z`A;gx3i#&5>pwa~D1Jq<2Fc5}m`AbT`EM@}d_V=tuRQ^+aebflZ7NjR`Yjs(Sl_t7 z$Fl-m(#crf&NekLew!*tCa5rgOpm+O+~wL^(Qct8wlD&w zyVu>^1vf#{x)_rg^|A@RdH-5Szgq{s;wk@5a=uwUsI@K3RczxU{j5|wWSzt+`jXc7 zA1SyL0pmm`^Ao2W*+G>b65t+|A&R6o4vk5dUF!Kdt2-4WRwy0|IOz-Oiul!+-}j1+cJZFKCg9wcrathdwpH((ASx_XpZ$d>!6@mQju|!CpI8K9A2RPm0{%K&_V>Dno9VNxlOL>N&HPDGN&ei)!Oh}mR|lL{jq(L`;R+SNU!K5GPqv2 zDU;Vh=C{`za+*t-mn>lGDLq&Z>WDp-c=b66OrtVD1_6Z<3wvA}0JaZ5Pxt1B30 zo}c3DW4gxiLgqNCme3ak`rortG?t?WXmGLb6&t2pX&NgCRjc7)y}%f0XzvoH&0M*x zK}LoI2m_n=Fb^PQRsLwd^ZKpyzH`#4D;Bu!6h=@znnp4DGar8uX0=Z zJkt+V!is3)%Etku)rJ6Lc$g%=mDI(p;oGcq+g4F?%Th^d-=dQl4@h|!n_C^a+VB8L zr0U=KCUu48G_!+d4%f)P(ME>GTgcou5FN*a(TQtG1%sr2T{rd!FVFTT;-wE)!lSep z^Zg4H)TjuV;Uy4vtWsf2dvF{z>-oJRRgXjsiL`sLIayNig^oH9`r@^x5AE!K;=O!8 z!I9jfsd2J?u(LTWx1j!z5l1x5ipHm_aONQnq;3Y5d3!2l`b@6zb4}bSf+xrnI627! zsR}@)bq#f32t`Vr#ZM}Ab{(behwj)jyRr={Nf@&(m51T}Fs=``i%mxQ9GYAe-6Tqx zHPLP#eJk^NtuCgx(w0)hA5Yb8z(1nZifY2Sg?fPcp=2T%oVdi*%1E8VJ8@@-CC-Qhcue0gm5a|CSDq9_H(TsCp(NI3p9U+ichL^!CSMSXYL>Vk%VU1 zq2Jz@hEEK&#Rkju1!d;x2s#VDIJ`DiUR5K}vL4R;QidAQ@n$ACYH3ScDK`M(*Y+#4 zJB~0#XrSnrHEhQ#1{FIW<+f_;J&?~t&(fD(qCI3{1L_7fM z9LSb98y?Cx+=Ri*JQ^k?hkgRkrmyoNj|qYYyFIBvwI?~jYU*P_{YQ#Xs_O3ozwLsDXQtsXdzsyr()ax$pJKK*ybIW z+j;MPW!nES9dJj0&(#`b=8kCd?4!S~Q#8u!n)4PY1;L&YhodC^UPA)TFIzv8s_!G#)rxgPFw=&Ext~$ zLG0uUv1+-(3Ovvgdd@tk5|2AUtyB;CBJ`vS`qZCxU|WGK#ZN;24|qi=D3Yb}-(Eq| zUA-rhh!y;u-TR=c<+CU~GO=(^sKpNtJ6WixdXGm(KLaninW2k~V1%g*2 zO<5NxbZGXe?{FoGS-0D^hV1~GybqwRtYnWlm^*%jf40%v+ zPx%+9cyQ6Y*Ow@~8o#j$A42P!wK=Rs{P>mJ$TFm^{o~Jt6)6(9ulXIuGg#!8!y)^a z_9)6j#%mAKMeT5T=2>1;pK~#rU~*WfcH-iTi@CuV zbTx+QoxNyXfNn`8Fyw1Dz@ON7%$wI^7mcNC-gSvik1J>-baF};&*CQRSAklo`UxM& zPW|%n(B%tEJ-K1;?i)VBC>J1p9q1SEdM*jh2la5%WHSqXr?0}}IYUk3{yw16clr4@%*A|%%+m!oWFJS#P);ii7z!9a4*8Wr zdGKPI`XQ91>qv1Cty9&=OJBux<6;@H_$`++`gI1{H z)-w0kf$1km^BJsfMt2C5Q{~_?$dz^`YJp_MihdqZR4L^rL0p&w)3e-i6>Dd^1TtJk zO44~lL0xCUM=LUeP%dx0?tIVNj*w%Pp7(HRVQt@ibn#`+S&Ta3SadovStpHX_Vr3g z0+*I*Jxu@!jQIxl#xEiUY2C!2l!o)&bN%VXpz9Ut6?3vYgcd)0hkj zN(Mn_T#%|}+ZixkQxuzbj1bbZ(Iw%n$9H*riH}LngQPoI7f;7Xc>PF)4>_!ee?`1I zc&@o41A8H%@eEHq6%&XjToQTCMCdcs0&A@uRMsa?JoSDh;w^l&Gi?6o*)lZk*!yiB z-0$78yp#n$I_aJkIh?XNArUjXiqe#N9c+ErcU)S~$;xTr@mD0JUBYQ1&;NI)`D5<7 zw2Flwcu8B=E(9q9ycCEzKPu;$sqcl94~xwoBP9h2J$)b+sm^+RF5Nsz z-r`yLfWE;sJ@MQjI!AWI{{*((Wf@diV*em6F$XsZpviH^H5t#EaiE5VZp+c2viXPf41~a z=fDe(^2e_!Q34O%`kW``z}QE**Zgdr1b@bobxc z_@(4@F)D$LE*`dP=&h8RMmFC_qwPbd>pUWyyA*&1UoJ81PCtFXYuD@(8B97y=BMll zwt6F-bI;5!{deTrWlN3M?p=zwk(7M~CV3%ZQfNhHIMa>Zzs^=BRb0ZIn)X;^W~W?I zdOEUCj=qP6YF1$w)qNP3R*_?=d3X^QtCfD~0sg!BOY!CCyDq6xf7@$n^?n?pMXSVT z?M3N%xhig(@QO#TyW+uYdu3|qV&S@o9Y0L>UF`LMyU7FOk_9cEhmiOGGG0V20T=Hj z&?7U+h^~W(v}3<0Pyzz?E#Y#FTJj~{lB}cG`wn074K@@<6}C;-OBZ})MzdsK)0f3k z5dmDHuc-EPU&p-gIXYbP$h&pKPpX@mwtaX`ER%)EZVW@clLg*A-CY-(hVU6Iy4L@x z($6@FK5~utZVuR&ZFk}S2Q1yfIld41^RZI}BdNW%q?+cB!PTU)vOb9@MIZhOwr^_X zuyxzox-93R0Wc@?CQ(F*w6MeLe>bG-)~Iw;(Z$&7H}mg#CPiBA-RQSbiG-Gl-Th!u zJwQ)+*~=DF>#i03xc^c02dx`vV^o|bC_WKzOf-H;Mj0k{W?djWc}+$vbhGp+)k?x` z=EF|Pfha|+nsnH%*@g-N2p`=^%gt>y_wPVr-b?=IGSmm(Y=B1|5Lo{zNX)sUq?48f zx$^l==Al7V+ey4O1WvLN-{1oR%S!5-tJXj0U+fsG^o|UJFuwpDqzy$|e&6kXvVevC zm&2pjdzsx&ekOZn7n}+koWnk=ly{OnA$yujEz{;IU}miV)8yuq4|BRU=mnbN#MO3&-(Pj3qOy&t|3W z#Htu(NNvshlX<;>%4whfjNe^@I1Rgg5bJ4r;K@25L{u?*PLa^`_z8<|n24eVJDTO| z&oA#uh=Ecx6qwPl9fLiVUoSJH&Y^ zOiB>r3EdS1^R~QU&_uOD1mfG0PSr?Lm($yW=_SP*+Znf;exU8bP3Je;&JT|Zrm=DK z724=mvB7-?OK2RK10$O#iBYvyxM(RIo9sn&r23hXDQb5`ewo{4C0H7TR1HLY<;g<7 z8L`2aIH${nS;{a0?4_UQKM9R^3IDeF^;M*@e~L=2%re|(goaJ`krn;8bY~@}#?K3} zrwC-+FJr}g9Y%IW_eWIf#A+;3N^#WJcU*9`FIdQ#Wm3+#QUSf5wUy#71*!1?IikFB z?RxHtCc$8SZ$VyZKgA~{Rq`BwS&9q`oFqR#N|AvwLJSo!F*%EP9B_8NTPe5PAi(d9 z5g`>XR^JrDNy6#bC>D*YPgf$VJHuk}KZphw9q zo;*Q)^xK*eiil{Z8YXMMw%p}tRqiV(WYtIWKsg#$W){Ct`7jk4mG3I-QdM0+oUMwc z_}M0b4)>A}N{9XjREiW13jUpELCJ>O8#0-#B#eO>%)~JHub_;`?DIAbkfm?)8#or8 zV}r+m$b+vJDAhcm2J#~Onk^p*9)GvXa|?a!R`{K0irt=MJj{s$BvL}C;9U2$eJ@Ta zAx(fJqIpd5Ct{gXVxT6E63|WMiscKMzD3uhf*Ib8A{ugVr4+FTWgid6BG3tE7Fsx2 z!HCmU5n&6Js)H;jHFOm2IlLgPfKl^J_?PW$ldo02IUDwm*4KRf6!?|!{l(dwr(81v zu$2*_KTrT;yoJ=UhTQDV?fW@NNxjCY%UM>ex8_O*eVtTS z*7#%Q6w|>|vlel6#Zisd$5rW}ff_a6U8a=l*OX5RPRwFTv%4Bn|eP5gDNOi^CG?FprJGU?J zR%-mmW1*wBZN&bvV0gEEA3)=%@J164uY}Hh6e6*T;v`ubcRmMwVusIdB?BdoMX&JW zI_(+Z@HybQZcO5(mlYaUk++q{{NFM(r5l&|s* zy8p&zy09Of>vb;((Tquw@&5#*$8@~IU%nSmUaQG}cFDc!W)Wg(o}klw>ZTN*RECZ5 z7;;X|B}(rOSpTGy;IG!r=R9}eXq?-#XP-DSLi>F{ZJOqTL`BV!;(9i9@b?Ui?A>%4 z#4<(3D>lMuO5RJy3W}m>n2Hdo~OYdo!kPCyE=^T9-RaRy+6C|3rc< zS>a3s)26;&Jw?2muOyj0-A$3u@LO)_lldP&FM+xHvVE4hHLA1Mk~iU5EO~y+HT8ke zFv3fW>ntqGDBIr3tX~X9f(v71T2*y^9h10p0Y~4Mmwz5f0Ek{1qfPG)BL6l8=U{~T@~1$22E^?uzFXu)Z6N2$ zx9w7AIpdbO&siy1kaWW?S+F7-qIdLWvOpJ-4#YFm;OFmf(FK6o7pm+4>)S#soONh9 zT@+clYMhp&xeTwG5axgzyzjbELvoz>^fMjwDw2xkEL??o(Q_-?d|0#IqGaqpU8)3| z5an#(q;J#sh7f7(f!+m=>gNB_=4{>t4^IE1&xuIml&)8BNBqoG7 zE$w+gq)c?NZW*8HGSrmpo^mnH(!rIE+L@OUOBL?nqJ}g_;U{V6vcz`UAcjBp;X$*F zn=M=@e*N9Jysv-zA+D*_^~DqdYCDlF;xb$%)CG&;xP}n@c*M`neG$105cOqGZg`Us zc=~W>f0M>aM(dazf6m#`5i{Z)^bW|q)W(zvSypq6(UOv93C|6Y;@o>3o_4oojCxqn zaY+laOrITEtyn?I&D6Pn?0R1F7*L>oAEN%oVq~|UPem0g-S^$>pIb~KerS)AjZR)m zx?vN6*hlqPPJrS+Z1ecbOm!ult1I*Sf8?ZNM7?-Qp-+UNIe&wfiM zANJ6kvwQ6vEVGN$AVM=%v}9kFIjB$^yiKV)^Z4={>x9O$ORBEXINXce0~Lv86>hm! zUmhl~X2{0`8oBQz;SMCE-nc45c3#>%JoJ#V(6QKx6z>n=!AM_ffpfEq6`0euquj-|xD&F1@;4B%zKs4G})nq&7Cgu4a_0 zeE9Rv>b(7(N|$K=nB>)b$g2r-#p0G0TP66N(6>QbRt2x@iKy!C}}cp`{mMxq?7!xYsFCA=TMG?#~k87*0k9s5>vz_PEkbLq%oA3S*IIv+*}3 zb<^P!5kGyi;=D4eIx@=h-!A7cQB@=hbmbQJHEbcyNv{}e`s&8{JX)JQTmyE`c-d~bq>(@R`luiY>mQ+InwSAESr_)U7l{0%<|<9LtRJ5`tkzpfu`RBcw;=axrh|M zom5Dbsw&R)JQ~TAp^IjhpD;AKIfe$Gsac)WNb^JHCbHGrBIvS;-koL<%g{gnbZLC3 zi4tgCpPI*<3xt^!A1bT3IwgShCjT8fSPx>eDHUslgE){(`*E~pC-7Z*Fg4`Rpn?c^ zRG={<7B0rs*Iz@(gAmUo`(%?Jv}L-R2|PT9RYCWI%+e}7ZKg|P{|C?n*X$g!KSwSO zbamo^-%dMx2LrlDpqD4+&LjDLa*)oni?lJ5I<$n|>=1nw}mda8!4WYP{~l8^G#Rn8zOlbp@z|3J4p2Dchjcx zbm8VutJSYCU+b=JvLxuIf>nzr#A%Vh5*ta_EM2*FU29=pp;^u>`OC&dKkm0dGxvyu zeXRQ+$$vuL+~O5zQrsOUX6JI)s7#=4gqUXhk zjI7!bS^+%C|8dyID{jEWt;8-JOcU$tIIyU+8WW=+hk&>jzWcgMq}-=&OmlRC{kFT5 zur@HVLfDFNA4L}BaVBW{))vY|ed5b+jt=9CrZ4ajW6B!&fRcqtN+6Eu@Y58KKgljm zOe$f0JL7SbqGqOHds7PWEUo$w7kFl_FF`*2Bd0TdX`_dh3ZV~u0v9!LQQ-shGgky9 zn`@)Rk!$sPu=bNFLe4GwkIwqQuB>D@*Boux_wxq33y0W!gMCG}D+pXhc?r(TOA>%k zzG%2_VOnVXq3_P=bk`~+9j(7FMG`+eyuBShbkchvwHUuL=nNN@_a1(s;vw259qB z%43v&g4KQA2vJ_T6v$N@xuG9C{v><+-G_5T2dI^UCgk*Q9jkgv4F@aN^c@NP2>aI1 znLxttC+muK?B9na=^b!ajVjSKZKdkKXH|LWUlH)H@4sOjo1?vJjR-&H5f#ReNyOnl zNbhCMe@4afzM_lKDbITN$4L(@mB9UBK;v{1_KA22=SY`A(hIz^lX33~t;k9q z&vu{ZE2>4Knd)=o+j+~OSnfc^IA~mH^&Jmjl-}SR1daSATJ#XShvUoT+`tN!uk}YL z*`NP@w_8eX2ia_~t@xUp*?%A^Z_EY~habQ6^Q~DS`X4iQ8Nr{vbyj*CjF;Df~jo)@AOp z=s32k_6v7F!JaL3U4Xa3b+r@SCD*CR=m+zxC;@BD$I~2v463`-g)Ydt_}C)LI$iq3yhx(XrNPT* zF62Wlp9$}L-m0T=HbM}=8;(w8X>*D~Hc+CFX}0l}2EwMWmw$ChBl<&$9UEeJeNKr@ zk$iNT?A@3ObO*3C+jZW2Zp}@5aC98s1zsdysN(pd>XI1RFXdwrzN?>juBe8Z`WzG+ znkHk8CkTEBJ%q$g1XSw`u%OqhH8^l zq~0ynHx_{%lQtVF0d%ni(uLY!ZEICcT8#FmR*Ll~$|ZC)U^VQ`lIg=srl(-|hk8z# ziE7Hd^HNb__zVL}4WkT|opo>}{07YXzVNlJG;I(@Qoq)=v3r;EXgUm=4qc$w3xtekU8V4@M|& zr!3qt2TygUs(1m*<~o;qNp_UjOMOGom52Y8F-5E!hj}?JKP&ofwV3mqGA^W}%6HiC zs=iCdMc!ZX5IH|ZNu6Cmkqf~tQf(XP4%>T&qh87A2RGTs6E$pLUQ)L1nnc~)Kb760 z1qT`~U)V~I4EYYBIWOTBtmePx2W?!PEYl>#o;KTR)OiG8`Na%{$3&|2=r zPS^nMnMST*C8*bY9l-?Yjl_t)Pd3!glrp$=s^wbB(@6;{DK&+;p>tUw<%JkOzs7`a zzu?>{hT2NBbe7eo>2)>N(YHKRk7y?~&pEf)!t7irE1Y-M=_^&5g+&3<^00f6t~n~B z_sR!tXfV6Q{DSvlIDwdrty>ZPH$kMZtm3P8v{1#~x9FQ@RvHu;Y)(^R+~CElTyc^`1&YK<3*--kOUQeYbBii0 zR04f23Ziaw!>q-^&ADc)3z|gCW-3997;`qB(?%|aNrW_L{zDHQ_<3SZq$10XTu~2y~P4QBy=H$XPMgKae79W2) za!I1x1fHawap{HXXD$@9qxfIS^orJol%HzRDR+Tis;fvbs#W5BfeHvKGknu7piDLo zB`RVv%~5A&?&x51M^luS&u*eds@}yfLf1+>o>0Q358o7_4*t7=82OZAt!}(^s}8|H zejeOBSI#h4vws7E9JXg30OehM+Vfe+MIG_Ja^|*3V93v10>@v|b1?@1Wj$B|5Lwq^ z1q-OAjoC2s6xtb*UofQh*0(bxwSr-0beBe;`~TJ1_L+PEqxkGH|ZkoMnfc5`C_FMZJ2 zZh7wFMhQ}iHnElMY(7$+YxYV_{2u=}c>#}K^GBsjTmRa|Biotx!-S&U1gYDnRBs#p zs~pXFiaIzjdo!P9As;#*Hp^)uuaOV!=_c3Mit+^Qnr)SdoyCM4r+k+-1x#TMqL@a0 zJp94Dz6(qclNsx-ed74MYR}v4^!)f1 z7kw6rgCFYt2R`fe>d$#O@;F-I&i*68Ik}-zx%jJ1LF;fix64;9Rp*x)?&!Kj$j-2H z>Mrc)ZjC-f<-osJdvZJxG9rza$9EQDEwSv0O4GfCajifoDqtu)`A#>3&CY!RvA~av56!e>55(-_ zdF5|^T{-8<(OEQ2=*GBw>;C|mz)3_Iv2Xg&Bu$iQI;6hbGXGTYx?|wCTy`oiYb9Xm5!Yc>yj@K+)oLHlRA6NV`%nc#d#z?Q;>1{m+De7 zRcc8vI^lZ?w_VEYwOvYviPF`6*%tBCBB1x(zX#grr2L=OIai-D{*(03RC;Cp|3V<( zZL5Ht`rS`<%Xn7g+e^A4Pt>!{wTf1NCTl#G%Ne?#tsZ2WE!WQ{Hlb52o(f%-lfSf| zJw2t-OINU;m=*{< zKNc0~yL7@&%CaZU%;}{Z_#YPuD-6Z(0MPluWQtprz|U3j@=85v)XoAU2^)~c-$122`VDluEh2b-%ypV#pG?&Tv)TR^WSEVR7Pt;^;IQ*- zC4fx_b~!zkIg+slsyv&yjKN9jXq8{nDR;rs-G4Wa-4w_E3gPHWe4;kgfP7dEHDX_U zr`AP978Q#biW(GJtniU5-s}sN z(2Azo#eu>bHo6oUKTuJn=8|ydm|G9v41sYO^H~pAkeDKG18_i(^g6PEA8UvY@@-53 zMpb{~K)MDvFvE~1Tp>#w58DvVNwN?=v6I>jLI88U?k-df0*K=;Qr0ge`8NVo;q!uQ z&jwxV1C5jYGzEtD`WG`qcrnr@z8Q$Jjh4Q*(A#&ObfkIoiKS`^JhvYHpb;F`+Xb&b zAoS>k$`!UwW%Hdu>17+vHQjZHrP)KB={U>Nme`|d``ejw*SDOA+u{r3!rDx2(qZzR zxkoI5fO}FyVQ#*j9i>Mn=1Yr&9nspfa+GLwa^Tfby0g8tHGJ?TLudN2lL^ zr#S~*jor=Mx~XTI{;*0cVva%n=cd%_T1jm}7ioLzj?tSuazpn6`D?UJp-fnKZTw;> z+oYSJ%AwjlGEo1EncjhGwevT~L&GHkCzNQ~Q@0O!W0o~X0*{7TIF}`;og*M7-DHIvkWioGc-TzVU-R~C3?p6tTgaPEJHjtVjmzJWdiuBK=JKkxzy6K@-t%e>D{P3SzSSE ziSsv#ogb$#9Mk;w= zXZzW%SnwC#lA<}f{m9t73>2%D-*IuxH+O-hwoBzg$?b{~rd&r6%X%yMVgzBr>^=`v z{`A+vI0%PqQ&2)+`7)rap^d_#7b3+GdSnuT$6V7FUkp>~7#m+g;4-wD_RGHw>#wMr z$RUPdf_dXIfj&ZJ(>Dm4Hf|$N>=t6JZYUt1IC=frBR)totMxXQ@{+Kcc=K9G!JPn?_v*)-X*O-7zZ|ZzJ-q=A*2|3v_#g0`pvWj6 zS()uRs~L|FxM5M*27Y!B5J=OlaL1(JB=|gum_iYCxmTy&2yu#phz5THv zU5W}}<^4#4)81}OA`}VgvymS^vMdn2PD;Nehu?k@A4j@gmhdydJn_G-x_9#<>{eX* zbzG)4*BIJoAhwxVaf6^r4UL1zL;H+QG0|GjF-PJTB^73<@@u}j648+LRj`@BaRm`0 zSr}aDnj!^=tLt9^k?peoI*34xT-$1?NP@zdKg8XP+oidOo^J>U(p)}1gPD;)a^)4N z@;6{i?+V$My)U8h2b!!;?+L)M-};3pUMaWyFjKZLo2dECof|-|*pkBMlxfsr(@YQj zq;DZTs#DE#XDbaJl<5v5fXYh#2k52ZU^h|CZ##&>qIH zrR$Y)V7OGF*fiI`04M9aU20r^)|a0?s{4o(cf8cdMT5((f)vRUn8}-XIK`F$U`6|2l9F;@?@1M^yD}eyAO*^ur1= zw1owaZAjo7UyTGbmG|Gh$s zQ3<^t?DR7K#;qShlj!VHmoRYeXRp~O<#%hM@21*GNLqiuzqOk-j~bY6ac&pk{HX{S z57Z2(awd6@6IyT2&f;eLVjtD7!!OkusXXiRJKN?5m>km0=c7b7O`ccJA^eA1V>F_290QydA?A9`xmgzRC9pfe64RcjV7d1nI3u<;oF5 zD0u3_omAcYhp_6s<4f0VIj-S%CGk$x=5K67`lElI4Ezz4IcGtWZM!0RM%qm{@HNof z8gf!T<1L{ic{Of!Ll~-xbt@h?JFQjkf96mmC!TMx z{@vo9|N4C4xDYc?^%cn^9&0$xVq26Qeo~%v(i?`kasOJHP}sDN)UHs*)pLF%2ebQv zG8vI}(uD--OC{s}+x{HVWq+64HJVy4TfV^k1zdIS^p)fXXQK41Ko9y2GDl(R@jX4P zVrrs>*$nNyuGQ~>%j#lfCO(i{!oE<*y2zC#8(^=0jV%xvZ)C0jTLU3gxcw=p_-91U zti`d}f1$Lf)2*8~)0wRgBf4ZM4U@HZwS$sNPkAr8W6BGA<`TH*6z!HKolGyFHal6* z1JX|jn+J&$+zMlWXbiIU`qM?GJ5a_~hCvpP{9V{7Vui{L_~pf&q%kjAVC%HG4G#R5 z+e@rOdD{W?7!xWjE5!@pD!O5!%#Gv>wQH)qzX9BF=P{UOyZToB&Vwa6drD8 zgs0}9K@=6#(#!0(?8xw7K4H+XFi{#w)>Ggt zjBhSPE${)}4A`w`>;_NrKTWs^TC^=C9>sN`$IQ+j!0WoJjI^vD7`JQYMZhwA)??qu z-A!uGaXu2gm31Tk$Jy~3={YH`$P`B?5y(8-$ku@10b@i<3LLf#6C* zMU|UYMT&+qiqTEGvItqG`ezWlp25%N30NHU;t5hO*I$a+qSY%wYG3iq*JM8~vj14e z7S%$fmvqQt7`?-W;d873pY^s%W7+K4e+9Nc@EC}XU<*ke5yoo!iheKU8wTR*@d-^1 zH?u+PJA7*M)lhjUH*x8oGkCfh#iVTUEUg(CcYY!&`TY-5u*><~`|%ZrZJ>zJ$go`t zzSKsL-=WxxrP2{)xAMSl21zb}@u>}AI=YZ;BzNGHyXN}<1b8prcS|$?o`fZ^O}ULP z7d?VO8~l9Hie`1xKf2a7?$_kI+>UGOGV{;ks($IjPzD>L#_GWQDoR{Ym%r+}XZk&B zt-gV^gp)y;W53m0IPBT0;4?(eLZEelDPTQtpE28#8tb8rPdb$kDB$A#d@M^_Lk+H< z3rXrs-_2ho|HqNK?k@c+Bfo@$1FDbAW8(a!0Ho#qKL&Ll9zb4JTTMOXI~6Ys#pLG6 zdCiFkC&q@ISIxVqw2B%(6>INQoIq=zcmw|m(f(mdYhnHp<+sAU%j9IztGte}{o7i> zn)&oSV%y0(sRjC`JF8#i@P;gtsy>UfE8Vk|m&y*CFM2rJAivE&j6J{peo>AEgCVpvbDOj`Ki6L z_-)9X8Kw2Shqd6olJwY31C_a%?YRmpQ(ogiJqst+)SR+-#WHgI@rPUUnAMXbVsA(w zweI&9(|yt-44rjS(k{zx^Y9ujPA=yH;w-fc9sSU-i@uQdCKy3{immP%LKkH5-S+5O z(=)anEjI1CRx+~pgR?N+*b5_di%BZx5&xyRgVA3MTTVN@Ym&4tO^hw8&yqd=852V{ z%Wt14f2olV&pZfT8`M2FV|SZs6rEi->tcfuvD-B(8D)3@f(m?g>>sgvuphsAc_?r9 zuQNjL<_{T3HnoY%420$iKmu_W0HVr=lNMF?@1jvArkmVSDRW0tR+bZ>GS@oYm&BHA z`wF-r?lEMYHsWq@K&IYviy+&<*;oV<39A1~mLf+M!I8x&_;IgJb3npB7FAIQ2&BtN z60N;AI$}xY(j>l7qs;d)7jZV%TpxW>#KWqcCvgH}bCY2%aEld`=1bRA6|=T|m>)&8 zg-#4a%?oknp8B@g$O?eMycwa140vxPh7GBAWW(o?&dXWOciFmssC9c5wHE|t*GgV$ zdyZ*GdX?8;#rfYv*Ca*RoL;35vYxd}n&jHf9UFb~N|W88v-xpH^Hxma{R5{<_&v-) z3X44{B)pRN{e!3mgjCH=YF3xSwOmaoBO14Ir$F=@c~L8?2K?HPtu0xR0|+0Jp=mv( zH$6QrE@t0+PFC74bpMdfL~0Cn>1PgcFMNz&!DW7vPOH{6E>(~aanbBIc-II|gg!V_ z?zgd%U0HD88zqAvAI3usB4Jfn34-+vVUFkw;{5nN`RqWd zeaTxGxMeyNlL1@)MXfu$wfEfBCDZ16A2e?rWo}0Gl1$(ZrUJ%Y>KeglMT%Mh(qQ=O zxUd8~YJsVvX=AtvIJxg2ze45~Gd=TGg_jL83)J{-@N&*d1P`1*m`b28{Y+{-N;7#P zrdMJ1dcMi7d%_%%SI61XbzEl2SKYOFaV2HO1xzqzAC8AtTMEX_wz-EK@FP1!Xk1%m zWweBnk`0HXsJ z>icOi7=iwmqQ4M<1kZG3&OkR6i`Rxx61I_I_upt<2?Sy`e zGNrC>$n)3XXn|Gf0`wjIFWE;A%QzQSg%;tWZV%DkNte3^T8R~(X2w9%Gp*W#__9RCKe|18BA{8geq0& zKV|thf(0jYouGdQvX{aK-VkhTKyG~Vjl|G|qfU0GdFF^~(un-gy!P0~1v!qW!WFJ% zBQZCi7uiPKx)lVQTv?O2qHD!A+3>l1Nikxl0UFO9b}ee>#TZHB5BMHJqpEkU zRQQ|(Rq&fK25%rO;q&23T~H6F)O@4jt(|OzMu9CU;ftEfX4lu`wvFzvH&)kWC#Q0) zKW87lT+@Df)5-6yj<28b;GL<()HBy&zDm^IR>HnQ84m^<%UK3``cvvGC9LGUI*?!g zFMkMt_ajV6lHT`-+eV3#SvDhm+7wqpXc`$Te6ZSFkC23m3qPc0;v!5Qu0HWDtMna} zD19R;d;%4lugWHs(-_at0>UqHxq-e4m6MfXV&nhkS~!_w(i!9@XBw{>^*jkDK5w(vTiIo#*nU9JLrJ`hl{IJB>jY? zzEIUJNn)QV-}Z&UYm5aX=`LOwDG~KGovrN=H-V%fRoSl@xi*q5F2@GXvwA~Yku9qy z=I<2Kc?+xoN+1C7p6OP27(fIL@kuAxHU$kfiTi0~u)82nm^(kDXJZ~&*bn?iR9*0A zHQ6;W+Wwb{9V;Q2UHW@MUnK4Hz*GSR;C$d}_+xtXhM%H%0)E{gfERJlKnsEcsBGpbP?kXMZMd{ehTw&JLP8>mKJdcX06V-Y z3SUeOY}Osc@wP~3W69n&U)7LbzS z@f(=ZA!A@aW`_8{G!hy5M8;2oT>zI%Ibl&KL**vz6588EE9^y*B1!=+JBTl`lOXv6 z4%qCBAJznld1V!WOF`V|yWrYbq_U*RtHmFRcXfl>vt@DiJv0|&p;ZBs0 z7#K=df=6142}+od9??~33T7lKVFJ#=5_z)H?6O?8nv~njBI7LNPlJ_PDLzFd(pol} zO3s}U-t_ieOf#o2Q!1NnHvJV2!m!nXA!YS1-6G1Xdm$Xv+ zxF+&eRiHifD%l=eN<-b%_Ko7A-g+B$0-Yp&k(1$p7&~h2YYo9&%N6o z0I$kR3q#vtDOJn$jJEVwLDQr>H5|~=v9<&24aT_>Lh57h2t;uWjSNddyX2rf;obls zIUdj~0Rdvh<9JcQEdZy@18&5f5F~vd>dJ12QWNulRzjd$KsbuKzhMJ3NL8aj-T{ld zc7&1wC_0C%RphI{2yp)ZC|!o)KTh4?V3%P5((b|l;03@0A4o6QBrr=3jkGomf!R$7 zk}&+u-tYq^nW;TNIe=ey|f_8zthOp}#~(`$lgWE06_ldUk<2R?0{UEP7w<9Qu-N*>OVk zg$XpM8VN56x?-TV#t2Iy2j)GZT&*Br8Gg(Jue z8f+bM8Ho+;+A3UFqsduyCC^BQC$%0S+?HS9fC=H~6xrlAHhtQ~) z=p7t=A<9y^4WlVKOZ46qw5V+=KIoixRK{_uJAFku6Y!lCYcFCdbf(xg+NX zCXvnnF96$N)2HVEh!R+Uc7~l72V$)yAUj*6Rp7Fp2{KemTcbkc8)Y+861}>#LZ^dD zz$TYK9b%Md7b8hXAxS$6-to_^#g?Z}1!W9hp^kpe+@V5UEJ;+H@8k>FKND8J% z3J26d*->=L*DOm=BXhUEtPhgoE98X=QL$z{?`Tcnq}L)R`Lg`I9J!3xNo4=oqi(9H diff --git a/data/whaleShark2.png b/data/whaleShark2.png new file mode 100644 index 0000000000000000000000000000000000000000..0041ef3a611e175415c202ddb7cd2b9e27b3a224 GIT binary patch literal 1381542 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

      !2Ffi@{XrFc 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 z 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

      WoqKfZLa@leW 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

      lbs7uDuT7EeDu{{bVHZk>`w1{fq7!Q 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�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

      c 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%0Aw6&{gtW0ZNe8$}P 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
        J47yY%beF}hoF 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

        T2!viE+9j!^UF?cWhk2{xCGL{BIK7~L40mI} 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

        1{vAU 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 Xd(ZccQ4Mr?00000NkvXXu0mjf$vr>& literal 0 HcmV?d00001 diff --git a/js/main.js b/js/main.js index f5ba6bb..6c6319a 100644 --- a/js/main.js +++ b/js/main.js @@ -1,10 +1,10 @@ mapboxgl.accessToken = 'pk.eyJ1Ijoic3lsdmlhdXBlbm4iLCJhIjoiY20weTdodGpiMGt4MDJsb2UzbzZnd2FmMyJ9.H6mn-LOHFUdv7swHpM7enA' const map = new mapboxgl.Map({ - container: 'map', // container ID - style: 'mapbox://styles/mapbox/outdoors-v12', // style URL - center: [140, -40], // starting position [lng, lat] - zoom: 3, // starting zoom + container: 'map', + style: 'mapbox://styles/mapbox/outdoors-v12', + center: [140, -40], + zoom: 3, }); // Add geojson file @@ -20,7 +20,7 @@ const map = new mapboxgl.Map({ }, paint: { 'circle-opacity': 1, - 'circle-color': '#4a0fd4' + 'circle-color': '#b744d6' } }); @@ -35,7 +35,7 @@ const map = new mapboxgl.Map({ }, paint: { 'circle-opacity': 1, - 'circle-color': '#a164db' + 'circle-color': '#b744d6' } }); @@ -55,22 +55,7 @@ const map = new mapboxgl.Map({ }); - // 4. blueFinWhale (point) - map.addLayer({ - id: "blueFinWhale-layer", - type: "circle", - source: { - type: 'geojson', - data: 'data/blueFinWhale.geojson' - }, - paint: { - 'circle-opacity': 1, - 'circle-color': '#b744d6' - } - -}); - - // 5. blueWhale (point) + // 4. blueWhale (point) map.addLayer({ id: "blueWhale-layer", type: "circle", @@ -85,7 +70,7 @@ const map = new mapboxgl.Map({ }); - // 6. bowheadWhale (point) + // 5. bowheadWhale (point) map.addLayer({ id: "bowheadWhale-layer", type: "circle", @@ -100,7 +85,7 @@ const map = new mapboxgl.Map({ }); - // 7. falseKillerWhale (point) + // 6. falseKillerWhale (point) map.addLayer({ id: "falseKillerWhale-layer", type: "circle", @@ -115,7 +100,7 @@ const map = new mapboxgl.Map({ }); - // 8. finWhale (point) + // 7. finWhale (point) map.addLayer({ id: "finWhale-layer", type: "circle", @@ -130,7 +115,7 @@ const map = new mapboxgl.Map({ }); - // 9. spermWhale (point) + // 8. spermWhale (point) map.addLayer({ id: "spermWhale-layer", type: "circle", @@ -142,18 +127,25 @@ const map = new mapboxgl.Map({ 'circle-opacity': 1, 'circle-color': '#b744d6' } - }); const whaleButtons = document.querySelectorAll('.whaleButton'); whaleButtons.forEach(button => { button.addEventListener('click', (event) => { + whaleButtons.forEach(btn => btn.classList.remove('activeButton')); + button.classList.add('activeButton'); + + const lat = button.getAttribute('data-lat'); + const lon = button.getAttribute('data-lon'); + fetchWeatherData(lat, lon); + changeWhaleTab(event); const species = button.getAttribute('data-species'); + updateWhaleStatus(species); + updateImage(species); - updateText(species); }); }); @@ -163,7 +155,6 @@ const map = new mapboxgl.Map({ const whaleSharkCoords = [-87, 25]; const humpbackWhaleCoords = [160,-40]; const pilotWhaleCoords = [-74, 35]; - const blueFinWhaleCoords = [-119, 33]; const blueWhaleCoords = [170,-64]; const bowheadWhaleCoords = [-85, 71]; const falseKillerWhaleCoords = [-160, 23]; @@ -178,7 +169,6 @@ const map = new mapboxgl.Map({ map.setLayoutProperty('humpbackWhale-layer', 'visibility', 'none'); map.setLayoutProperty('whaleShark-layer', 'visibility', 'none'); map.setLayoutProperty('shortFinnedPilotWhale-layer', 'visibility', 'none'); - map.setLayoutProperty('blueFinWhale-layer', 'visibility', 'none'); map.setLayoutProperty('blueWhale-layer', 'visibility', 'none'); map.setLayoutProperty('bowheadWhale-layer', 'visibility', 'none'); map.setLayoutProperty('falseKillerWhale-layer', 'visibility', 'none'); @@ -199,10 +189,6 @@ const map = new mapboxgl.Map({ map.setLayoutProperty('shortFinnedPilotWhale-layer', 'visibility', 'visible'); map.flyTo({center: pilotWhaleCoords, zoom: 4}); break; - case 'blueFinWhale': - map.setLayoutProperty('blueFinWhaleCoords-layer', 'visibility', 'visible'); - map.flyTo({center: blueFinWhaleCoords, zoom: 5}); - break; case 'blueWhale': map.setLayoutProperty('blueWhale-layer', 'visibility', 'visible'); map.flyTo({center: blueWhaleCoords, zoom: 3}); @@ -229,95 +215,207 @@ const map = new mapboxgl.Map({ } - // Create function for changing image +// Create function to update images function updateImage(species) { - const whaleImage = document.getElementById('whaleImage'); - let imageUrl; - - // Define the image based on species - switch (species) { - case 'humpbackWhale': - imageUrl = './data/humpbackWhale.jpg'; - break; - case 'whaleShark': - imageUrl = './data/whaleShark.jpg'; - break; - case 'pilotWhale': - imageUrl = './data/shortFinnedPilotWhale.jpg'; - break; - case 'blueFinWhale': - imageUrl = './data/blueFinWhale.jpg'; - break; - case 'blueWhale': - imageUrl = './data/blueWhale.jpg'; - break; - case 'bowheadWhale': - imageUrl = './data/bowheadWhale.jpg'; - break; - case 'falseKillerWhale': - imageUrl = './data/falseKillerWhale.jpg'; - break; - case 'finWhale': - imageUrl = './data/finWhale.jpg'; - break; - case 'spermWhale': - imageUrl = './data/spermWhale.jpg'; - break; - default: - imageUrl = ''; // Default case - } + const whaleImages = { + humpbackWhale: [ + './data/humpbackWhale.jpg', + ], + whaleShark: [ + './data/whaleShark2.png', + ], + pilotWhale: [ + './data/pilotWhale.jpg', + ], + blueWhale: [ + './data/blueWhale.jpg', + ], + bowheadWhale: [ + './data/bowheadWhale.jpg', + ], + falseKillerWhale: [ + './data/falseKillerWhale.jpg', + ], + finWhale: [ + './data/finWhale.jpg', + ], + spermWhale: [ + './data/spermWhale.jpg', + ], + } - if (imageUrl) { - whaleImage.src = imageUrl; - whaleImage.style.display = 'block'; // Show the image - } else { - whaleImage.style.display = 'none'; // Hide if no valid species + const whaleImageContainer = document.getElementById('whaleImageContainer'); // A container for the images + whaleImageContainer.innerHTML = ''; // Clear previous images + + const images = whaleImages[species]; + if (images) { + images.forEach(src => { + const img = document.createElement('img'); + img.src = src; + img.alt = `${species} image`; + img.style.width = '100%'; + img.style.marginBottom = '10px'; + whaleImageContainer.appendChild(img); + }); } + } - // Create function for updating text - function updateText(species) { - const whaleDescription = document.getElementById('whaleDescription'); - const descriptions = { - humpbackWhale: "Humpback whales are known for their long migrations and complex songs.", - whaleShark: "Whale sharks are the largest fish species in the world and are gentle giants.", - pilotWhale: "Short-finned pilot whales are known for their strong social bonds and intelligence.", - blueFinWhale: "Blue fin whales are one of the largest whale species, known for their immense size.", - blueWhale: "Blue whales are the largest animals ever known to have existed.", - bowheadWhale: "Bowhead whales are known for their bow-shaped skulls and are found in Arctic waters.", - falseKillerWhale: "False killer whales are known for their social behavior and close-knit pods.", - finWhale: "Fin whales are the second-largest species of whale, known for their speed and grace.", - spermWhale: "Sperm whales are known for their deep diving abilities and large heads." + // Create function for updating status indicator + function updateWhaleStatus(species) { + const whaleSpecies = [ + { name: "humpbackWhale", iucnStatus: "LC" }, + { name: "whaleShark", iucnStatus: "NT" }, + { name: "pilotWhale", iucnStatus: "VU" }, + { name: "blueWhale", iucnStatus: "CR" }, + { name: "bowheadWhale", iucnStatus: "LC" }, + { name: "falseKillerWhale", iucnStatus: "EN" }, + { name: "finWhale", iucnStatus: "LC" }, + { name: "spermWhale", iucnStatus: "LC" } + ]; + + const iucnDescriptions = { + "LC": { text: "Least Concern", color: "lightgreen" }, + "NT": { text: "Near Threatened", color: "yellow" }, + "VU": { text: "Vulnerable", color: "orange" }, + "EN": { text: "Endangered", color: "#f15757" }, + "CR": { text: "Critically Endangered", color: "red" }, + "EW": { text: "Extinct in the Wild", color: "gray" }, + "EX": { text: "Extinct", color: "black" } }; + + const speciesName = whaleSpecies.find(s => s.name === species); + if (!speciesName) { + console.error('Species not found:', species); + return; + } + + const statusInfo = iucnDescriptions[speciesName.iucnStatus]; + if (statusInfo) { + + const statusElement = document.querySelector('.statusText'); + statusElement.innerText = statusInfo.text; + statusElement.style.color = statusInfo.color; + + } else { + console.error('Status information not found for:', speciesName.iucnStatus); + } +} + +function fetchWeatherData(lat, lon) { + const apikey = '320ee3652da3b3be6fc3d5423df006cf'; + const weatherUrl = `https://api.openweathermap.org/data/2.5/weather?lat=${lat}&lon=${lon}&appid=${apikey}&units=metric`; - whaleDescription.textContent = descriptions[species] || "No description available."; - document.getElementById('whaleInfo').style.display = 'block'; + fetch(weatherUrl) + .then(response => response.json()) + .then(data => { + const windSpeed = data.wind.speed; // Wind speed in m/s + const windDirection = data.wind.deg; // Wind direction in degrees + const weatherDescription = data.weather[0].description; // Weather description + + updateWeatherInfo(windSpeed, windDirection, weatherDescription); + updateWindRoseChart(windSpeed, windDirection); // Update the wind rose chart + }) + .catch(error => console.error('Error fetching weather data:', error)); +} + +let windRoseChart; // Declare it globally +let windRoseData = [0, 0, 0, 0, 0, 0, 0, 0]; + +function initializeWindRoseChart() { + const ctx = document.getElementById('windRoseChart').getContext('2d'); + windRoseChart = new Chart(ctx, { + type: 'polarArea', + data: { + labels: ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW'], + datasets: [{ + label: 'Wind Speed (m/s)', + data: [0, 0, 0, 0, 0, 0, 0, 0], // Initial data + backgroundColor: [ + 'rgba(255, 99, 132, 0.2)', + 'rgba(54, 162, 235, 0.2)', + // ... other colors + ], + borderColor: [ + 'rgba(255, 99, 132, 1)', + 'rgba(54, 162, 235, 1)', + // ... other colors + ], + borderWidth: 1 + }] + }, + options: { + responsive: true, + scales: { + r: { + beginAtZero: true, + } + } + } + }); +} + +function updateWindRoseChart(windSpeed, windDirection) { + const index = Math.floor((windDirection % 360) / 45); + windRoseData[index] += windSpeed; // Update data + + // Only attempt to destroy if windRoseChart is defined + if (windRoseChart) { + windRoseChart.destroy(); // Destroy the existing chart } + // Re-initialize the chart + const windSpeeds = [5, 15, 25, 35]; // Example wind speed data +const colors = windSpeeds.map(speed => { + if (speed <= 10) return 'rgba(0, 255, 0, 0.6)'; // Light Green for low speed + if (speed <= 20) return 'rgba(255, 255, 0, 0.6)'; // Yellow for moderate speed + return 'rgba(255, 0, 0, 0.6)'; // Red for high speed +}); + +// Sample wind direction labels +const directions = ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW']; + const ctx = document.getElementById('windRoseChart').getContext('2d'); + windRoseChart = new Chart(ctx, { + type: 'polarArea', + data: { + labels: ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW'], + datasets: [{ + label: 'Wind Speed (m/s)', + data: windRoseData, // Use updated data + backgroundColor: [ + 'rgba(255, 99, 132, 0.2)', + 'rgba(54, 162, 235, 0.2)', + // ... other colors + ], + borderColor: 'white', + borderWidth: 1 + }] + }, + options: { + responsive: true, + scales: { + r: { + beginAtZero: true, + grid: { + color: 'white' + } + } + }, + plugins: { + legend: { + labels: { + color: 'white' + } + } + } + } + }); +} -// Geolocation handling (this is an aspirational step) -// if (navigator.geolocation) { -// navigator.geolocation.watchPosition(position => { -// const { latitude, longitude, heading } = position.coords; - -// // Update map view and compass -// map.setView([latitude, longitude], 12); -// compassControl.update(heading); -// }, error => { -// console.error(error); -// }); -// } else { -// console.error('Geolocation is not supported by this browser.'); -// } - -// Writing a code to find the current location of user -// function handlePositionSuccess(pos) { -// console.log('Successfuly got position!', pos); -// const evt = new CustomEvent('positionfound') -// } -// function handlePositionError(err) { -// console.error('Failed to get position!', err); -// } -// navigator.geolocation.getCurrentPosition(handlePositionSuccess, handlePositionError, {enableHighAccuracy: true}); +function updateWeatherInfo(speed, direction, description) { + document.getElementById('windSpeed').innerText = `Wind Speed: ${speed} m/s`; + document.getElementById('windDirection').innerText = `Wind Direction: ${direction}°`; + document.getElementById('weatherDescription').innerText = `Weather: ${description}`; +} From d722b7c3b3766d79490065adaeaf79f1a8675742 Mon Sep 17 00:00:00 2001 From: laivlys Date: Mon, 28 Oct 2024 11:18:04 -0400 Subject: [PATCH 05/11] Updating html --- index.html | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..a572b03 --- /dev/null +++ b/index.html @@ -0,0 +1,66 @@ + + + + + Whale Dashboard + + + + + + + + + + + + +

        +

        Hello, Whale! +
        +

        IUCN Red List Status:

        +

        +
        +

        + +
        + + + + + + + + +
        + +
        + +
        +
        + +
        + + +
        + + + + + + \ No newline at end of file From ace750ec1a104ae8ce36230efdeb408886e79743 Mon Sep 17 00:00:00 2001 From: laivlys Date: Mon, 28 Oct 2024 15:32:11 -0400 Subject: [PATCH 06/11] Updating sensitive tokens --- .gitignore | 2 ++ index.html | 1 + js/main.js | 4 ++-- js/map.js | 29 ----------------------------- js/station_data.js | 4 ---- 5 files changed, 5 insertions(+), 35 deletions(-) delete mode 100644 js/map.js delete mode 100644 js/station_data.js diff --git a/.gitignore b/.gitignore index c2658d7..600d3b6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ node_modules/ + +config.js diff --git a/index.html b/index.html index a572b03..cb276c4 100644 --- a/index.html +++ b/index.html @@ -60,6 +60,7 @@

        Hello, Whale! + diff --git a/js/main.js b/js/main.js index 6c6319a..fcba924 100644 --- a/js/main.js +++ b/js/main.js @@ -1,4 +1,4 @@ -mapboxgl.accessToken = 'pk.eyJ1Ijoic3lsdmlhdXBlbm4iLCJhIjoiY20weTdodGpiMGt4MDJsb2UzbzZnd2FmMyJ9.H6mn-LOHFUdv7swHpM7enA' +mapboxgl.accessToken = config.mapboxKey const map = new mapboxgl.Map({ container: 'map', @@ -303,7 +303,7 @@ const map = new mapboxgl.Map({ } function fetchWeatherData(lat, lon) { - const apikey = '320ee3652da3b3be6fc3d5423df006cf'; + const apikey = config.weatherKey; const weatherUrl = `https://api.openweathermap.org/data/2.5/weather?lat=${lat}&lon=${lon}&appid=${apikey}&units=metric`; fetch(weatherUrl) diff --git a/js/map.js b/js/map.js deleted file mode 100644 index 5df8a77..0000000 --- a/js/map.js +++ /dev/null @@ -1,29 +0,0 @@ -// function initMap(Whale) { -// const map = L.map(Whale, {maxZoom: 18, zoomSnao: 0 }).setView([39.95, -75.16], 12); - -// const mapboxKey = 'pk.eyJ1Ijoic3lsdmlhdXBlbm4iLCJhIjoiY20weTdodGpiMGt4MDJsb2UzbzZnd2FmMyJ9.H6mn-LOHFUdv7swHpM7enA'; -// const mapboxStyle = 'mapbox/streets-v12'; - -// L.tileLayer('https://api.mapbox.com/styles', { -// tileSize: 512, -// zoomOffset: -1, -// detectRetina: true, -// maxZoom: 19, -// attribution: -// }).addTo(map); - - -// // Listen for the positionfound event, which is fired when the user's location is found - -// events.addEventListener('positionfound', (evt) => { -// const pos = evt.details; -// const marker = L.circleMarker([pos.coord.latitude, pos.coord.longitude], { -// radius: 5, -// }); -// marker.addTo(map); -// map.setView([pos.coord.latitude, pos.coord.longitude], 16); -// }); - -// } - -// export { initMap }; \ No newline at end of file diff --git a/js/station_data.js b/js/station_data.js deleted file mode 100644 index c06d574..0000000 --- a/js/station_data.js +++ /dev/null @@ -1,4 +0,0 @@ -// Is there a equivalent gbsf to boat location data or the stations out at sea? -// async function downloadStationData() { - -// } \ No newline at end of file From dbebaed642bb8a8204614c328d41bd2aef482aa3 Mon Sep 17 00:00:00 2001 From: laivlys Date: Mon, 28 Oct 2024 19:26:12 -0400 Subject: [PATCH 07/11] updating keys --- js/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/main.js b/js/main.js index fcba924..6c6319a 100644 --- a/js/main.js +++ b/js/main.js @@ -1,4 +1,4 @@ -mapboxgl.accessToken = config.mapboxKey +mapboxgl.accessToken = 'pk.eyJ1Ijoic3lsdmlhdXBlbm4iLCJhIjoiY20weTdodGpiMGt4MDJsb2UzbzZnd2FmMyJ9.H6mn-LOHFUdv7swHpM7enA' const map = new mapboxgl.Map({ container: 'map', @@ -303,7 +303,7 @@ const map = new mapboxgl.Map({ } function fetchWeatherData(lat, lon) { - const apikey = config.weatherKey; + const apikey = '320ee3652da3b3be6fc3d5423df006cf'; const weatherUrl = `https://api.openweathermap.org/data/2.5/weather?lat=${lat}&lon=${lon}&appid=${apikey}&units=metric`; fetch(weatherUrl) From 19a5d65f6595b826ce18ca6852b0e19cc4a1d0e0 Mon Sep 17 00:00:00 2001 From: laivlys Date: Wed, 6 Nov 2024 14:45:40 -0500 Subject: [PATCH 08/11] Font change --- css/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/css/style.css b/css/style.css index 3472f9d..e94059d 100644 --- a/css/style.css +++ b/css/style.css @@ -3,7 +3,7 @@ body { color: #FAFFFD; margin: 0; padding: 0; - font-family: 'Asap Condensed'; + font-family: 'Poppins'; font-weight: 100; } @@ -36,7 +36,7 @@ body { gap: 10px; padding: 10px 10px; border-radius: 5px; - font-family: 'Asap Condensed'; + font-family: 'Poppins'; } #sidebar { @@ -63,7 +63,7 @@ body { .whaleButton { font-size: 18px; - font-family: "Helvetica"; + font-family: "Poppins"; color: #FAFFFD; border-radius: 5px; border: none; From 56adfe54eb3f57f996e3894fae77f7d5e6ca576c Mon Sep 17 00:00:00 2001 From: laivlys Date: Wed, 6 Nov 2024 15:20:57 -0500 Subject: [PATCH 09/11] Change font --- css/style.css | 6 +++--- index.html | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/css/style.css b/css/style.css index e94059d..5e89e96 100644 --- a/css/style.css +++ b/css/style.css @@ -3,7 +3,7 @@ body { color: #FAFFFD; margin: 0; padding: 0; - font-family: 'Poppins'; + font-family: 'Barlow'; font-weight: 100; } @@ -36,7 +36,7 @@ body { gap: 10px; padding: 10px 10px; border-radius: 5px; - font-family: 'Poppins'; + font-family: 'Barlow'; } #sidebar { @@ -63,7 +63,7 @@ body { .whaleButton { font-size: 18px; - font-family: "Poppins"; + font-family: "Barlow"; color: #FAFFFD; border-radius: 5px; border: none; diff --git a/index.html b/index.html index cb276c4..d5db9d0 100644 --- a/index.html +++ b/index.html @@ -9,8 +9,7 @@ - - + From b017f6def346c774464e7773580bfdc6d454c8ce Mon Sep 17 00:00:00 2001 From: laivlys Date: Fri, 8 Nov 2024 17:04:15 -0500 Subject: [PATCH 10/11] Organizing js files --- js/main.js | 206 +---------------------------------------- js/status_indicator.js | 42 +++++++++ js/weather.js | 118 +++++++++++++++++++++++ js/whale_image.js | 47 ++++++++++ 4 files changed, 211 insertions(+), 202 deletions(-) create mode 100644 js/status_indicator.js create mode 100644 js/weather.js create mode 100644 js/whale_image.js diff --git a/js/main.js b/js/main.js index 6c6319a..a86c2ef 100644 --- a/js/main.js +++ b/js/main.js @@ -1,3 +1,7 @@ +import { updateWhaleStatus } from "./status_indicator.js"; +import { fetchWeatherData } from "./weather.js"; +import { updateImage } from "./whale_image.js"; + mapboxgl.accessToken = 'pk.eyJ1Ijoic3lsdmlhdXBlbm4iLCJhIjoiY20weTdodGpiMGt4MDJsb2UzbzZnd2FmMyJ9.H6mn-LOHFUdv7swHpM7enA' const map = new mapboxgl.Map({ @@ -215,207 +219,5 @@ const map = new mapboxgl.Map({ } -// Create function to update images - function updateImage(species) { - const whaleImages = { - humpbackWhale: [ - './data/humpbackWhale.jpg', - ], - whaleShark: [ - './data/whaleShark2.png', - ], - pilotWhale: [ - './data/pilotWhale.jpg', - ], - blueWhale: [ - './data/blueWhale.jpg', - ], - bowheadWhale: [ - './data/bowheadWhale.jpg', - ], - falseKillerWhale: [ - './data/falseKillerWhale.jpg', - ], - finWhale: [ - './data/finWhale.jpg', - ], - spermWhale: [ - './data/spermWhale.jpg', - ], - } - - const whaleImageContainer = document.getElementById('whaleImageContainer'); // A container for the images - whaleImageContainer.innerHTML = ''; // Clear previous images - - const images = whaleImages[species]; - if (images) { - images.forEach(src => { - const img = document.createElement('img'); - img.src = src; - img.alt = `${species} image`; - img.style.width = '100%'; - img.style.marginBottom = '10px'; - whaleImageContainer.appendChild(img); - }); - } - - } - - // Create function for updating status indicator - function updateWhaleStatus(species) { - const whaleSpecies = [ - { name: "humpbackWhale", iucnStatus: "LC" }, - { name: "whaleShark", iucnStatus: "NT" }, - { name: "pilotWhale", iucnStatus: "VU" }, - { name: "blueWhale", iucnStatus: "CR" }, - { name: "bowheadWhale", iucnStatus: "LC" }, - { name: "falseKillerWhale", iucnStatus: "EN" }, - { name: "finWhale", iucnStatus: "LC" }, - { name: "spermWhale", iucnStatus: "LC" } - ]; - - const iucnDescriptions = { - "LC": { text: "Least Concern", color: "lightgreen" }, - "NT": { text: "Near Threatened", color: "yellow" }, - "VU": { text: "Vulnerable", color: "orange" }, - "EN": { text: "Endangered", color: "#f15757" }, - "CR": { text: "Critically Endangered", color: "red" }, - "EW": { text: "Extinct in the Wild", color: "gray" }, - "EX": { text: "Extinct", color: "black" } - }; - - const speciesName = whaleSpecies.find(s => s.name === species); - if (!speciesName) { - console.error('Species not found:', species); - return; - } - - const statusInfo = iucnDescriptions[speciesName.iucnStatus]; - if (statusInfo) { - - const statusElement = document.querySelector('.statusText'); - statusElement.innerText = statusInfo.text; - statusElement.style.color = statusInfo.color; - - } else { - console.error('Status information not found for:', speciesName.iucnStatus); - } -} - -function fetchWeatherData(lat, lon) { - const apikey = '320ee3652da3b3be6fc3d5423df006cf'; - const weatherUrl = `https://api.openweathermap.org/data/2.5/weather?lat=${lat}&lon=${lon}&appid=${apikey}&units=metric`; - - fetch(weatherUrl) - .then(response => response.json()) - .then(data => { - const windSpeed = data.wind.speed; // Wind speed in m/s - const windDirection = data.wind.deg; // Wind direction in degrees - const weatherDescription = data.weather[0].description; // Weather description - - updateWeatherInfo(windSpeed, windDirection, weatherDescription); - updateWindRoseChart(windSpeed, windDirection); // Update the wind rose chart - }) - .catch(error => console.error('Error fetching weather data:', error)); -} - -let windRoseChart; // Declare it globally -let windRoseData = [0, 0, 0, 0, 0, 0, 0, 0]; - -function initializeWindRoseChart() { - const ctx = document.getElementById('windRoseChart').getContext('2d'); - windRoseChart = new Chart(ctx, { - type: 'polarArea', - data: { - labels: ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW'], - datasets: [{ - label: 'Wind Speed (m/s)', - data: [0, 0, 0, 0, 0, 0, 0, 0], // Initial data - backgroundColor: [ - 'rgba(255, 99, 132, 0.2)', - 'rgba(54, 162, 235, 0.2)', - // ... other colors - ], - borderColor: [ - 'rgba(255, 99, 132, 1)', - 'rgba(54, 162, 235, 1)', - // ... other colors - ], - borderWidth: 1 - }] - }, - options: { - responsive: true, - scales: { - r: { - beginAtZero: true, - } - } - } - }); -} - -function updateWindRoseChart(windSpeed, windDirection) { - const index = Math.floor((windDirection % 360) / 45); - windRoseData[index] += windSpeed; // Update data - - // Only attempt to destroy if windRoseChart is defined - if (windRoseChart) { - windRoseChart.destroy(); // Destroy the existing chart - } - - // Re-initialize the chart - const windSpeeds = [5, 15, 25, 35]; // Example wind speed data -const colors = windSpeeds.map(speed => { - if (speed <= 10) return 'rgba(0, 255, 0, 0.6)'; // Light Green for low speed - if (speed <= 20) return 'rgba(255, 255, 0, 0.6)'; // Yellow for moderate speed - return 'rgba(255, 0, 0, 0.6)'; // Red for high speed -}); - -// Sample wind direction labels -const directions = ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW']; - const ctx = document.getElementById('windRoseChart').getContext('2d'); - windRoseChart = new Chart(ctx, { - type: 'polarArea', - data: { - labels: ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW'], - datasets: [{ - label: 'Wind Speed (m/s)', - data: windRoseData, // Use updated data - backgroundColor: [ - 'rgba(255, 99, 132, 0.2)', - 'rgba(54, 162, 235, 0.2)', - // ... other colors - ], - borderColor: 'white', - borderWidth: 1 - }] - }, - options: { - responsive: true, - scales: { - r: { - beginAtZero: true, - grid: { - color: 'white' - } - } - }, - plugins: { - legend: { - labels: { - color: 'white' - } - } - } - } - }); -} - -function updateWeatherInfo(speed, direction, description) { - document.getElementById('windSpeed').innerText = `Wind Speed: ${speed} m/s`; - document.getElementById('windDirection').innerText = `Wind Direction: ${direction}°`; - document.getElementById('weatherDescription').innerText = `Weather: ${description}`; -} diff --git a/js/status_indicator.js b/js/status_indicator.js new file mode 100644 index 0000000..67b6a9a --- /dev/null +++ b/js/status_indicator.js @@ -0,0 +1,42 @@ + // Create function for updating status indicator + function updateWhaleStatus(species) { + const whaleSpecies = [ + { name: "humpbackWhale", iucnStatus: "LC" }, + { name: "whaleShark", iucnStatus: "NT" }, + { name: "pilotWhale", iucnStatus: "VU" }, + { name: "blueWhale", iucnStatus: "CR" }, + { name: "bowheadWhale", iucnStatus: "LC" }, + { name: "falseKillerWhale", iucnStatus: "EN" }, + { name: "finWhale", iucnStatus: "LC" }, + { name: "spermWhale", iucnStatus: "LC" } + ]; + + const iucnDescriptions = { + "LC": { text: "Least Concern", color: "lightgreen" }, + "NT": { text: "Near Threatened", color: "yellow" }, + "VU": { text: "Vulnerable", color: "orange" }, + "EN": { text: "Endangered", color: "#f15757" }, + "CR": { text: "Critically Endangered", color: "red" }, + "EW": { text: "Extinct in the Wild", color: "gray" }, + "EX": { text: "Extinct", color: "black" } + }; + + const speciesName = whaleSpecies.find(s => s.name === species); + if (!speciesName) { + console.error('Species not found:', species); + return; + } + + const statusInfo = iucnDescriptions[speciesName.iucnStatus]; + if (statusInfo) { + + const statusElement = document.querySelector('.statusText'); + statusElement.innerText = statusInfo.text; + statusElement.style.color = statusInfo.color; + + } else { + console.error('Status information not found for:', speciesName.iucnStatus); + } +} + +export { updateWhaleStatus } \ No newline at end of file diff --git a/js/weather.js b/js/weather.js new file mode 100644 index 0000000..2fafeff --- /dev/null +++ b/js/weather.js @@ -0,0 +1,118 @@ +function fetchWeatherData(lat, lon) { + const apikey = '320ee3652da3b3be6fc3d5423df006cf'; + const weatherUrl = `https://api.openweathermap.org/data/2.5/weather?lat=${lat}&lon=${lon}&appid=${apikey}&units=metric`; + + fetch(weatherUrl) + .then(response => response.json()) + .then(data => { + const windSpeed = data.wind.speed; // Wind speed in m/s + const windDirection = data.wind.deg; // Wind direction in degrees + const weatherDescription = data.weather[0].description; // Weather description + + updateWeatherInfo(windSpeed, windDirection, weatherDescription); + updateWindRoseChart(windSpeed, windDirection); // Update the wind rose chart + }) + .catch(error => console.error('Error fetching weather data:', error)); + } + + let windRoseChart; // Declare it globally + let windRoseData = [0, 0, 0, 0, 0, 0, 0, 0]; + + function initializeWindRoseChart() { + const ctx = document.getElementById('windRoseChart').getContext('2d'); + windRoseChart = new Chart(ctx, { + type: 'polarArea', + data: { + labels: ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW'], + datasets: [{ + label: 'Wind Speed (m/s)', + data: [0, 0, 0, 0, 0, 0, 0, 0], // Initial data + backgroundColor: [ + 'rgba(255, 99, 132, 0.2)', + 'rgba(54, 162, 235, 0.2)', + // ... other colors + ], + borderColor: [ + 'rgba(255, 99, 132, 1)', + 'rgba(54, 162, 235, 1)', + // ... other colors + ], + borderWidth: 1 + }] + }, + options: { + responsive: true, + scales: { + r: { + beginAtZero: true, + } + } + } + }); + } + + function updateWindRoseChart(windSpeed, windDirection) { + const index = Math.floor((windDirection % 360) / 45); + windRoseData[index] += windSpeed; // Update data + + // Only attempt to destroy if windRoseChart is defined + if (windRoseChart) { + windRoseChart.destroy(); // Destroy the existing chart + } + + // Re-initialize the chart + const windSpeeds = [5, 15, 25, 35]; // Example wind speed data + const colors = windSpeeds.map(speed => { + if (speed <= 10) return 'rgba(0, 255, 0, 0.6)'; // Light Green for low speed + if (speed <= 20) return 'rgba(255, 255, 0, 0.6)'; // Yellow for moderate speed + return 'rgba(255, 0, 0, 0.6)'; // Red for high speed + }); + + // Sample wind direction labels + const directions = ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW']; + const ctx = document.getElementById('windRoseChart').getContext('2d'); + windRoseChart = new Chart(ctx, { + type: 'polarArea', + data: { + labels: ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW'], + datasets: [{ + label: 'Wind Speed (m/s)', + data: windRoseData, // Use updated data + backgroundColor: [ + 'rgba(255, 99, 132, 0.2)', + 'rgba(54, 162, 235, 0.2)', + // ... other colors + ], + borderColor: 'white', + borderWidth: 1 + }] + }, + options: { + responsive: true, + scales: { + r: { + beginAtZero: true, + grid: { + color: 'white' + } + } + }, + plugins: { + legend: { + labels: { + color: 'white' + } + } + } + } + }); + } + + + function updateWeatherInfo(speed, direction, description) { + document.getElementById('windSpeed').innerText = `Wind Speed: ${speed} m/s`; + document.getElementById('windDirection').innerText = `Wind Direction: ${direction}°`; + document.getElementById('weatherDescription').innerText = `Weather: ${description}`; + } + + export { fetchWeatherData } \ No newline at end of file diff --git a/js/whale_image.js b/js/whale_image.js new file mode 100644 index 0000000..bf02601 --- /dev/null +++ b/js/whale_image.js @@ -0,0 +1,47 @@ +// Create function to update images +function updateImage(species) { + const whaleImages = { + humpbackWhale: [ + './data/humpbackWhale.jpg', + ], + whaleShark: [ + './data/whaleShark2.png', + ], + pilotWhale: [ + './data/pilotWhale.jpg', + ], + blueWhale: [ + './data/blueWhale.jpg', + ], + bowheadWhale: [ + './data/bowheadWhale.jpg', + ], + falseKillerWhale: [ + './data/falseKillerWhale.jpg', + ], + finWhale: [ + './data/finWhale.jpg', + ], + spermWhale: [ + './data/spermWhale.jpg', + ], + } + + const whaleImageContainer = document.getElementById('whaleImageContainer'); // A container for the images + whaleImageContainer.innerHTML = ''; // Clear previous images + + const images = whaleImages[species]; + if (images) { + images.forEach(src => { + const img = document.createElement('img'); + img.src = src; + img.alt = `${species} image`; + img.style.width = '100%'; + img.style.marginBottom = '10px'; + whaleImageContainer.appendChild(img); + }); + } + + } + + export { updateImage } \ No newline at end of file From 991341289d332b35a09e022a655bfa0d0ac7f973 Mon Sep 17 00:00:00 2001 From: laivlys Date: Fri, 8 Nov 2024 17:10:44 -0500 Subject: [PATCH 11/11] Updating font size --- css/style.css | 2 +- index.html | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/css/style.css b/css/style.css index 5e89e96..5aa2705 100644 --- a/css/style.css +++ b/css/style.css @@ -106,7 +106,7 @@ body { } #whaleStatus { - font-size: 45px; + font-size: 35px; margin: 0; } diff --git a/index.html b/index.html index d5db9d0..62a8ecd 100644 --- a/index.html +++ b/index.html @@ -59,7 +59,6 @@

        Hello, Whale! -

      2 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�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

      n{}P$(Bl`c6bx$m5&rqEgY;EiI3ip%u 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 yEVk&`Zr|=H_~FsMjT>=OY#ViZ@6BBNMj5_) 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:(?E#A9AOZpG@n7+9rTT+9hVM2cNx= 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

      tR7&UW1Fi9ke3f6VH_FpNkF9lVRin7-t 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

    2. dn2}N65MYVR; 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%0D5ZI?H{+#sUMd)Morq= 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�#4r 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

    HUudxnoEm# z#n0}?pZzI_(0UQ#2CvWgbat{>UrN?;ZVhHtfCYuZhyMUe`YgJ9sA=XZc=gLWwt91F zVk`06ud%is`m3X?e10<@*L!b$WFIL10CH{M+?i~32HdMLM(89>14(5-rPE2&dytkW z&Bojz6em&A8nrmXHfVSf1u0tNrGL8b>?e{PyKrlW+JpcL3Q!ydRVpet(2^=fNu(Mc zv%+I&A>3ORDWBW)SxBRmsds_O&lNi)?+cn58Z1lHQ;A8@6Gu)2q;bF&v_QPdEw0t1 z^r)yGVaOx%`Ed=_-aE_7c3b_aRRH1v{k5qDPCY#9nt++z^jW>jjHsum%FyI;RMN;W z*_mQo7AU5YWXH(VH4x+$m>D#QCxKI1T(J5TjSTJ?mqkMpsEiN>R5fsXs#Gs;9MF{7 zrMb9XE;5sb{z<#cs{(S=ya|DJkg|eV&_BWZ`ywL)IvX z=B%%ad2ZUg+GFHxYLKP91jrGS*lPOEaFS=Xk~rX2Qgu+4%|NRBHU9ug!~>k?q1Ms5 zY=$&zdx1U55mhg%BPNEG0-kK3o*X){2ryegu#`K88x9X|Q|55g6?71`9!M(SpvXlX zd{D<0HkN8Cc`7xbXA-+Qt&Wg1`vhElUA@%1eDk!L7_CG0njfE+%7Z;fHfL|Vwuf+7 zifT|m(~)1WarxKzbd9Ln{{Y9U>NWlEK*UzHwzjiL(#O^QhsygklLAELX z0KB-p*|=%3c`d)WCZun<7&vxS1yy$8td>MkPLb3{I?Kbz(SkjkS>MNdZmlFJ#Xz8; zJSa}1T}K(>4QoSzQ03m$b!T+G1k*5j*E}mw2n10@e~VQxO)6+8{{XWku<^Kz1wB^J z!p9Cp==@1VONz|OlGiAu^40CURu+x$^%b&8V-UQP0H;irWeifwvB@>Sk{kInH`*!u zDo&;+CW3>GIyHxw7CU!>OGRRWhPqD*f^eX470KaFr5(N49hH-VDYx;xdDUHeD#!Pm zuP?Sn4?no%ibLb3#o+N-eZyImN4mGFKMY^G$9|9YEiuhp-aZ)Q*KO(hLOq$Y+d-LPA3l=D6++D3rxqpe)850-% z(W{zjnwf%;4!GumDk@mgTc5m_&8k3n{>s}vWVyVQMEgFN)KsvMLBOCD0AOdxpF_}l za^)KfHStdBM9;xhNvS7}l1@*q2dK|X*-oYE{2`AYp2p|!tf>V=?MsTo!yL-$0G2u$ z4E*UaXobSC4bLLhe`;58yq-$MWdkVwlh+?S1M~IA9+?|9-)jk0ySft49EBj)(o@O1 zO9dmjupujoF>NHDAb-JJ`PT=hVddLfv}rc|%!%n;FCLQLnE84N@TLJB26VkM*qd^_ zo|*C)tV+~stH#BXStgo}rK2@cB{o<~M3rez`Wjf;H7G7^$FnH6dp7+>xduKOSW%Cc zz(NX}jxb`Ls zCrcw^A=`V4FI7R1$572B7^{wq)MRlIK}+jbo{pXvV>gTqRvy?RZ@H3}*Kv3YP^#J) zMse8XsgJM<00B8G?WMm|rM}rInX*|6D;n|ck4B<@5kC>hpuiToOQbsjrmu1Cyq{5L zxAsz#BUu$*V|3*=K3ipBYU`s~-gV$WE9L;BZP}*0xNCv5w2G9eoKOc8H5yK;uK+7TJ}U7h zGFTzOnv=V>&fgD7mB-=b{^WE%>D(DyeR@+pe4BG2kgnSz3`FJxX*?@@fCE@mMQH&8 zO&vs*@;H%&e^Ozb(xFu5r{zwMbWEj@p>+_TLYVZ=qQAQksQN z%BM*qhXO|qJrM}=akZHhF0a8Dg+tkg)@B_IvZr9sgfsCNqISfYOkmR=BFAccy75nEM zEqoEp6!|T?Mzsxz$W>C$9LAP9nz>?*c*MdPrC5zN?t0l~yOzppNnyUQA0RZ6K$isMSnjidE52t~`E*P%5;!w_t+WD8?8 zrWAZVz@8N73%OX|*~lZhwbL4@0*WyTIYaTf$L2F0F$Fl zk7$DR8R4Eca6FYlic^VfpGwpHk?#}Gcub~O2VV&}e8W7SbAqU?r-KuNNn&w6UF%rM zQ3XSoRRl_otc}3c>@fVpbs3dqT3P{yuYcM8ud|_zzbe@}BfMzWTq#0SeDG^u<-qi@ zsp{SPv!|0Mx3+|N=;V7oD`S%oFhvWC9m~XHk~q`t01kpX#@BgqG)=i|z74uz zSQ-OU`Hw<61^XwW`w|!@YQ4R_;m69dmdN3@_9H)0PJkDsn;}^nR2Y__PN^pm#rnR6 z*D9^|-L6)9c`i|IO>5j&?HN`B(}hP2XQaE2EbgkSacgAq*a7md@?raHPf^kv39zy_ z%sSM+VeV)#nG#^gtzzcmnkrg4h7~YP4JWE5tavoUrkSaL8jD`mFnz_Gcqt0VtOXgE zIj(D@kU05J;CT~6(ik>rV}v-8ND*oZ>7d{#T$+G*A2a8~bi9MCw}w^fe}&TI@|3Mo zl24J!ZaAt%cE1`KCWfaTOS01+q;h~8NNzdyi}#h4q+jDprLt(MYhN+OpX&R1RUXNI zdd!xt&KLNY1^)mC^U3H!r|T`oiHXGIs_Lq7nEIA7OI?-3NkArbX;L_G-c)L;ifPmY z@y5YX?RGZ+xwq?9X(hLdOA)|>Qhwhql{YV4qN3b83LYxLfO=`BY4a7Q9CRmboF3TO zGSk;qV%s|itBOke9XOL`rsbhYm8vlHncOusM&id~>WpAZB|NJxjYV`wL#Zvz?cU|C z5hsRRd{ix`<`m-@^7H8S#>U#kAeje@RjL8(u6)SNIvOZv^c}q>?CjH$FwY;`Av%aUx$e=4R ztw|z>C(QICZOTb5BfFj?s?w3SKV5r-Z)S5L|WTnYQU|M*Q5Qy4Y z;|UsR3d^AzixnQzZktrLGLZ;!o}(lAdiCv}a*F;odBQ7j&Ims+Y5oEEbmL#UHijIz z%H_81Hkq|NVoa7iM*0eiQmV@|()ieVRXma~Ki0$AM7Nqyp<|G_@}pPz)1x9_8vI$) z!UN5gpOE9xSlk`glHFUY`;pX`jLmLVc^p-4N{zEuMYgbBCtY((MN%l`%vHVC#zP;f zz-lJm#1{K1!4$V!oyUh7is?8fhAWOW{3W;=k4L4PAM?d2rGPatK)@WFjSm;Z#?SI#AH?~L$!$`+RIyQ zw{o+UY|%VoM}6wG?@L zCSq6dsi(yng9Su^SV)geIu>ZAAT^7n{-1&DHa3g5GOThdD%S+#`JRPKyI7({;=@Ut z3gi8bi&t^=y-rr1e!=VPlWs_))H3e_)5S2E5f(|HR9ac!jZkyOqQinuu`e#}BF0s) z-BhGa!09AshImu`j)OeWvq^l0>t}G+8gi^whMz2EpO>lVs^EJA4M!}H?z&3M9C1xo z4~I9m=yKS4xg%w3R8}c9w9-i;T^*#8#~C(TixJ)S+^-0l+ErlK2T)c6$++nN;+m*^ zKs5q2wYZwu+B>C>#9ES}bqeO9gTA2D8e`Cro`nqF7x?xg_`Wk^!MyQvQiU^YJl;2Q zV=%2OW?2PJ*UARm7|GT)vG6m5W6WwvKFA=H?US{&&C8}w_KHP++X@O-=6+oW+8^Fl ziFa#nZzI!!wF>-#n&-^$`RAh1n#W=CGPNYQgvKQS)sAY6T>E!*P%zU7GDv75sqsV@ zod!S_#^&S#Cx%yVr@BW*6co_JmEtj)jD4PzBOL{9;<<#~TTF!^^ePB7@?*f%)Z z!RcSu{l~w$;#k)bcMe}26h1jB=qhL{rLI9dgfxOCmO8i=)&-MYfdGT_V*b|Gb_43| zUq}Lu%TjW4jU?mD0rMWZ+BaLxt;|-pQKir%=&fmv6>!z#z>){8C^|G-1LX%VKyf*bo;FNc^>84Og9*gF{M%?kyS6PadmZ+9|~5K+;D@e8P?&nHBxL zEAV++q^Kg1)fT1iVl293fcVY{;#lfy|1io&qS0tOnntqCaEcM znEae=G?7ipuZUewnj_7DR#HC%dq86`Fl3Z~4hY9f)uv?%>ZZI!YfrQNL!{PMGY-JU ziF4F#OO2wEq`{rcWaomd09G*2(8~4cl$N1T=#De4%WLt^wYKRt;V6b8%^~s`{{SaR zCt+n9O(9i*eAwy!WR9ThuEwCqyNDb3r39f~hDT+ZYGz|APGqc|jG^VII=LsFc|O(N z?QZ}TI%FPQA+_CNxq6}!r{)j%2TgsK)O~B&5v-fDZeudbQ6KFJgqE5riis7jsaZ<{ z$Z8hH)MIOp=mq_ywcIaln20B(J!pSmYL1L9c8g2MnBGOJ(~AE9$9gDxyWqFSst6;O z2PWy+SsBZC>RWO)N`Y!v2X?5(PfKsM)YnCg?xWLV?A|T=a**kkF(iLs2l6=|%c6<- zb7v9wsEU$-N|R7N(NFUIwd2rZmg)|{>RcI2bq?L^{h3c2$&koVLqk)Tq@`7R2(Z-@ zK5IvFrCnOf^dS2&OR;ofMQPy~3#qV1a3~diS*PdGHSXILpqAt5BDw9UAw_HJl1Te# ze=dqP_x}J#tGBB1dsiXYa&F41xu$9g%3Kk_v5|xQw5^S&imMe%O%}fsHn2$w+J%p^ zW*e=(mYl@!Gf;}t?62j8&z@`0N@(^Q!J>OvVVh1ce=RiPNv5oD^y~lA0gWy@b!WFG z;G?bVJdSD&!A`g)$Kj)w5m!-#qDU~g{LDMO_bm(LsEePsrWEo?PFx697SIND!Lv%y zyQHX*=M@b~3>@a8_JKkGsHZ#bIhVpn?gSFFtw1UnLC=u}na2Z~WRb*8hjV0UGOLZ; zU&i*XE^K*C<(iirUATAMUS^_5q@FBgEcIA-rIMkfk%eVT-YSL;uzFN`NW8r6kMxow zl}sAZYmYIin5p1>C_1zAm94w@dyTZQg5BM@rMdFRZw#o1lY zRo7cbZC238@!(*inyR}olA5C{_mS>wtWYSCVf&V?dGtvsm5i4m7&(8p-&>?m+|6t* z+3~AT;p8ZxiLad~eNP^SJ5Kks?h7r=ycdmRsZ408tvj3sDk)D|(}1M_XvqAwrmLjf z`(Ld0j%d_lVUm{}iO(EmLRPBA(TdzE(y*UtbRC!iOvK1gmJx387= z6%H#mxvH`i)igP+;YmPpHTitgh^lHU_Z}vimoc63L|O_uB#J6^3{ApV18eSD+onSk ziD9=Cz%&GAv=pG>K}F$A(|~(v=k3>SZy0?v(|32UEJ5`&$;L@8bDk%rE$Nu-4#dx< zMCr95{kd;9EhM3)o@^?B%uPu&jX)$<$v~$PGEYzYAFexI7<2U4 zy3B>3lIKWN_n*5EL~d?ka>oT7 zT7cG+qZ;u%D^EWzjdqJY^5yQ8Ae!ByP7))iZ&hMZO4fr1Ni+ijy&|_p-_Gxh_9~Y( zwQ^06!{cz6U8jhudWFPLP|z((3XH>5%i;bfl&z`zx|-oEZzBNG6B7Daj?xGfrdyCI zD?&pWX9Ae}4J(0K@#)#FcYC>Gf%e)Ex)kZ4K8NS)`JSwIrMk0k_1@oy_~l&=BXiWy zMMyVh+uK`r8;zpF7ZoQDNl66Tskn#1`}$>CUX_o7&s~G1j+m&kL}^Z zWh$mdpUM0mF_276O?0|-Yes@lThvX;`wx9S?>jA}&5Otf0%}MfB0H(_{hbRQ_m^!| zuHxQS6=9K83P{i6?XG@ZS1)4q#cywK%zo>j&-Dg6qh(fB*R3@+UYBfE%F{(PG^@O7 z@L3AF^utDsZ6Dh|+)fUM3UzxPTckU6q)|m>cJl$kj73dF6tKt45Nk}HquH+D-7e&k zUDnAWtwD1b?HQ{oFvbNMrkS8U7fi><&-5GE)%k1&ehv2pW;HQe-j{4`nQ{9Yam9|7 zJcTwh0g@{%eA#Mx;;#*Kk0RIr^IGxy*xFw1)C-$Ni_8=83Jh@Vsjfyx0bF4u{KaEy zaVlBv0%s>nX`qbPi5h@lpo|otTEQfCvYhaa#oN=8Tb!14$m3?y1SCttdJNZ;{V+u4pG+ z4O$Svl#iJjeMTu-kLi-7Z%VhL)=*MO#Z*T9NK4AdS)y{zEFxDJlY$ zbds5TsmU>dPq75PES98N2Jr}}sQ}RV(D{ngV>I;WA8l}Anl-&BAk+cNdf-<{Y@Aej z`ivdd+?#K1(a|O|Z0$^@CZ48gV5G=R8qifeL_S%n+30vBDDGc;;|^ z7CAgJPIwLnB>B_L-IthoLgM+8bAo$PRFL6y1^H>J*VNz&5(R2{fmOQt-*96nu+%%6 zMWn9sEVyuYg-vX-NBSyjAjrp^qQg~)m<=?uvife{Q|(o~mE>|flh~G!t!q^(C^JF` zKRkizJo-(0HpbpN+VAlYr0GJX8S{#YFsR|$Xlp}Wo$*^w2eWJHXWbhRZ#oI+;fozv zjLXZ9%x(3QN)BHOmdDcynrexmZ3bBC7VwkkZb!dQ65Xn_H)0t)>MC=N9-M2M(BtM& zX}DcjO6qKUXvobf7!EZJS|2P@hs=?|&kwk^$6MA*SxK?~0K9mYo9}S(ZhAT@tmY)j z9`VhVt)iuiAx#b1R313lTk1Fjw?5l(cW#O=%G?Ye4B&!mkWbIo_L}sr&wpDBzo}iG zCxqm9x{E2{iV9QA5C;z|bfd%fR@co-RY{Yq%WXP(>eZ%9MJ*M4)YTMCsz>}8b7c8>RH?7b0UUm4zcbH(@ic_D|QEF?#zv8F(mllmx6|}R4%HBB^3&)L1GnI zhU{$KSl{dIArX%-qvw(nQ3w50>5IGgykwHX{^4YAFBI_f@1{LH2cJN1V8@@wPf@$~ zt#mo*=ulDPDfcw^-0fZ`9VC*^Q3F-d%_bJ2R;eoPBa=j8%AoUOTPt{^){z4e{{Tb< zudZo=aZ^qMk4f$~*tWN4lW&UhYEqLHagG?N$H*KL>Q6O1U8x(Xts?mb^||{KtnMK8sVBzj^=-tX7d6 zg^oQj{{Xf>7t1EK^yn*#X7#Q&5nTE8r_Js!;+`tK#Rp*J=r??7)eUTVV-!?kswyT` zU?cGsZb^00NG*N5%M!|$+Cgp{NzcpA<y1BA>8q5}6 zqNZ6>Ed~Ojj)9!CmY;7_(=r@wEK>!7F$j!ZK@u&`wPtLUi6dy0k zqYb!O$966E8<}l~0U%9T;rK|?UpC{Oj%MHN{k1JUF5avDGbZ_@sHJ*rEe6i3-1~{C zgpXH`tix`Nxw~<7bh7~h%*4zmr8<{O5vUZ&V&Ye3bqTzEK31< zZyYyuQPuS|e6l438q?R)&!KA>L)7(@vgEe+edcx+wHFM-^@=sM!xH3`H z?kAplDhzc%jTz;rs+wwv*@~cz*^4C`j8(V&&m7j|6RBtj8~`4*`A~k|uM1lw3v(v? z_Sd1n3c!-axhI7Hui|X+Jtg~LGm|52Y@YMl6H~`WO;;{Dx$&54-Q7^7MH#8H3JZJP!WO% zU_Uw^l_+Q-?M|xxCz!-TgV@;wquceqJeE^6N1Cj`WI{~y{hH#dlnoFRW;L5(qp!7Pi=3%T8eZ^YHXEu$;o7QB;?esO!O4Bm33=Q8H|i> zRWx?Sc+^R8BP)IuI>00!ofn51P=0+7-EVPi7gAho_E2kxnmP~|(wG?Us37Si@#r** zwsRP23AYM%h6*|;G6k`Cy_bVU+)kC6-RSUnozq)EklR>HrcTWzXWGXksC6trl0n=X zGzyU-*aiR%Mf1mnKqEhB0-Py>(OmrWcUh;Caf(l}E^b)XDsQ~b(r&EA>#qJMUa(G*O-~4pjZ31k$E(JrQCM5uT+1N4b!>vD%2Wkh!`R=FFKa=(m3-$dvuLsldoIu!r|<$^k*Z2LP2?f(FKBQf&|wFFcg zl4pr}!%3v9hbJST4-LfagI-P!fz?)lX=N~OcO%P)ojXa7) zmr|)=?Akalm&3f4QyRGhFJTAdDn_5#@;ZvOyvM>E+$3d~~^E#HnAAOa8DU$FUf zmf9U-vT~E-Yqp1TY`iXW8Cwlx)!TAh9_g%xsu;^tRATBg3q+K2Q)+isnvQW2H_#h5 zx39Nr=+Z%Lv@^q6R28m90V}GQ^~Ebe=h7P;k7%CmC%WbUmtVuBfCOaF9W~%QtASJH z&_CU~cLzOQG7Y)6>oT+BWynvt_ohE-!6|fe=4q;>qt2~$b!JAX{)0$O;OMyq~FZ`*xD5m+o0)mVMV>Rar>6N$KSd_6ov1AXw`5q?Td~aD!E) zJouj`1#3zg8KnlQWwx=zTT^|ue%>Bu=mcvuFdt%?7~HXs>;6ijt#M!t<2R@ z%oaNO%xTP5#X>R~l)XGj1Qd}-?Cj5^4`3RWYywJZZ-?6xBjN;0dRfK!_!} zv%OiFX(CLg6d0+ho+717C_GIU(!Cz)UzyaKnx=X@P782QLo_-twB3V%#MEudlZ;LfpIp`gP2 zRQ~`@DN+f>C~`cidV9+5?UlQ_`jZb^wd%T`ct^SGGWl)C7RHBu^`=i~*5fJZsP?8G zZ9d^iwmW0%;g-3pMFe$V=>l0U%!?AsaIxGALAb?pWGP75sO09o!zP#1x3XCyxN=SofxR7WOh7rT37aC*P__1`IV(bi*;EcuN09K5l_On zr?1(Lf(_%hv+rM7MYyti_ZPOYLME)K%Ti+U6}bxV8VahMd#u=~DsYKBw~nryzL+^7 zuYYG&FJ^7xOEYXPSP?;0I&s>@hKxAkhon1|rQ5WUUkjsVi&D%)o!`VNMmYM9Jn-u# z#+S!TCBb3ob5vVajM7qWY|qI!^t;}qaHKW5`e^#&Y-@ldVeh3+W?4-b)?rx zSnA-@@&g<^vJXvdw<^qD1@To0a?(+Blb^KU*Czn<_q7tEd~Y<{n7xnK`Vgh+Q4jyhJ7DWM*pY4rJ5qkX$_ z8;r8j$>w6zQxnjFDUrZXeYGE-U2h+V-y=HC&}*}<+5quhLV(- z$genjwOlJSVOrzHk~wZcYuLRvjk-7(Be{f}1dY3nI1V0IsUK%spK9GMZhuguavm)# zsAvU#A`UpzfE&)3r%-8r4E%_%rWJT7b|rQ;jeL)t+gtwt50J;uQ&UQ-EcHxi-ZX&_ z*eew!kLdvMxjCxN1w@t`sAk6jk>$XQ`QQ;=olaP~oH&N+-gr%WlOX>9wg#Zqm8d7B zhgtl0?Aop6kJ-5_$3Y6?x6>_?%YI{qO3_uji1o=_{D|mrw+M9IEvC<|ctsi9CTE0U@v|~{{VYMV;+e1IJ|Hu8%U?;MX5ej1az?SGdrXY8B? zE+}EPx(Z4fILOzgK|OS`{jiwGg_wyMS(Ec`Y@{2UvMNn*;CYHtgN%E5pOdwVyqvAd4qLGU2+02V*-pnl36^hbZW*fqJ*8KpU+5)cpAMgTP=eY`q* z+kGzkuWVqqJYAo&`X3KkD(WD^Z@%EE$!=_v0%+rkzNZ(Bs;;i2gtTlGS_(T^kBpG4 z9C>dnXH`pUnT0AsiYTuEsf{u?(D5|E9T(ZQ*?9{|B=)F>)b|=x5)}a_ILPwG4pzAj zj*-;jX@36z<%J%4nt!#LFYYZS=-ibxk-UgM+`gO83`$*{ZZ4rdq+G4{JFzOmDUAXPsI*OfV^5;27UbS!m0Y3~lCqsY)?`hO|9D7O}2a(MmQ zS&hgxMEx0cYK*qc zt*hG!R~xKmY7ND=wc;WBXY~e|U|lK?_pg4$h-OlB!4e1gctjSP{gfqf2EYy;sE@{f8x3zd2PRu z?ta9|W47G8k28E5Mz1)Em69m`qW zWO)AobWh;783G+XwIl^O%_=Ad4v=2kM-)-Yo4h_UkL=m|>%ai4S$#4NbLY@8xIQ9e zsWyzb?ZMnpoR&hZWXe^=w`nSO`KQ^gJoaLZ9wQr}NAxSvvmXw>Q?>Iow(kqJ;O zO$!}Av=X%YYH>{Zkk7g9Hqb~{X_8r7j4fV+Ldti5-|e`w}=0-*J-2XYOW_w|(|S4p0yf@+MG zxaE%@Cgy3Xs~E3Lsj8EO=s-t_ElYO)7drwR0BZ zZFH8Ky`({$sxOGTR=J@qKm|@JagYHV3Y#O){{SiQkkw#uUGcv&xJ)wC!&@E;uqd<8 zeV#K?OH&PTt^38MhC(BCRf-_CWG+ZP!;B(TS%s3YYGlPnHLVRw)~C=PpREOVTcqhT z!!(!xnhAhf3UC4FN1>-2V;u*T8&9-xl=bjKjNF@xCSjTyjK)Sxtu;i&p&z@5tjW|@ z(uY}EPc-p}Jd!1}kf540bIe1nt7C;$v>(yq$BE!`Pg=KY%zI_B$gJpvzlo2`XMhy1 zpW1zT1#%dE!rPe0scP%DWK^^@^3Pq4`-!u%#ZNJawMeUMJ?P@7WGbPgbv8Co1<#q; zbcH|w6yZV#t!awz&rd^f^~ofbw+ig%ikj4qT;vWv@qIjPp5@%o?n(+Hi=%?Rils5M zRFcABtgTt4h($GWXQ^kTNvYXx>?4m%Wwibq+d?F$1<>inpE5E{Xfem+X~6k~hDjX6 z&e~d|JV)&wzdHQ-IQd@n+uc^w6&v>%*_kZRjwv4(kC$rUF{YxcNJyZM9<>!Jj`A8R#Z+Y@mXXFYB}bIW%}-FK?LkjRL#lZ^cU4l>4n0;;$~D_!vvzm3HRA z?dV%GSy2AE(?K0<5((KAR?kfu6#oD=PaqQScVUcZv%@R^lR;X8z|?_CLruM6jV?O zN_B~4awAlXTHINWBs~?&#IDGw6lBvh=tV3rJcy3+A4<>znsBGf`E*@AL-egpR?6PV zSGm7|$dr@8CLty>ZVZ5GN2)T?;+mdDdMbG-#B(zk?K3J1vl|=jo6@}Y>hWq)M{pbm z3fKIeV!0g=?z@FaID9O1P^ry~Go{2+PO zzbX!*$s=vOt|KHlXQ-;wfIP>LZ=O0cJu6Y3?7E$=9$T#PcpbN$pC?q?zA7B-G?2%N zNu#TrWU~0Wd}Ukz01$Mff*2-ZW!L860QRyw@wde91(0X0!3&zaLKRODPE6`du#0cbqzS7>t4Cd&5y_UvDhhk{(`MHPD}RI z8FvMD-ZXS;IgAOak}!n&*=)ABtRsaji-!sT zZ6ubV{A3!QC(k_u`Kn4x?)3X6>wF(nZ%j-y^%877v$E-NxR{}tX@oiKCR-6xl&8*8 zIgw*oSISGakW=(~6K$7!WLBiXei;eLay5p>53_|vX~Yg45N_7I!D%^+ZQ7IYn4=|V zD~~b>pgA-iMD(`nJ>^BznIln*+S^Mh;S7~IEX6x#Y7Uli@zCTm74?}MJi@7+22Cy^URzll z1BWE;yIspmX*5!3p<3z{&jUlAq(AG<&3_bWeG|qU=S?ZY%jN!li?u&hbr)e!)l}>( zW^)Ui*-GmTb!;1FGh4eUf@+E>v6xDUa>kxnbjTnPE3qR|`fLsc=e+F=1K&d%LP)?; zC;%ALYBbV@g#Q34)SgYNVc#R3J6pMgpc168HL2sKfca9i^ZkMD_1J@KH53^<#2Gw> zR-Dlc1~_Fgb<|XoO)05@uNhxU4LlxD8F+cP)pp=0Ik(RnIB?=iY^T0@w{O+fZQS-wk0}LuRO2?r z=$5Wsvyr1|JYtTbmStMV>8R*Jm;@6-&n2$fE`>G1Y}<)c6TvHw@|tN4K)?Y)JBDkI zB57iq*3cTT&lS0$!OkiHYl`MEaN*zNpIW?)|KGfjS(0rkJs^>COTDtf%}k34(wt38Q#8#<^FBhOqnK~EE13v+2-Ii> zkhL_f0;-zh6(nGfvTpa=nGK?1{`FF1_a$E7jwt1dKe?!?l0ZYr4Mu9NqPHgWuBoW~ z!y(X&%NCW?&DyQB^9wMTY6`*5NOmO)g6f~{eR}h6VJi5r?iqPN?qX7D!%BG^O zJxzk5-5CADQilBu0(DWX<# zBoK3VITq7q*HV3L%fza>fE9Mv<=a53T<&6C9P>A6#-+ZdhEhRv^0r5ROlgRF-oC;WhI4!x7K%dOI@{u ztyA1Qho+xD^?jWPtmL=2FgEnQ5NZI2{57R$e7`Jou-yLu6wXGHo@_qit&%!dGeXhQ z(l#@~#Dhmylcs5%>Cs(CDjAu+qk(dJPHDKemBjYrRdZT{^QiUz0AuqyyyVMk*p^Fc zrV4m)#}7{~fx6zh-kVM1qoky+f~3kLsj0>z)hooHT+n^IAGnAE5LKC+H|Z7toyELZ zU68W{H5?DG?f(ELL0i3pblb~4t2uBf+A~j3NF(ReYQQ<0-cO=L+7 zG%YPcN8-!WxTveDwL9vTV1bvAz=39Y_X|kSk!~~v#X3iCvffDN#=bJhTj3`vJq|Ky z#Qy+;p;sS<&uyLCS&ztUIt|B3K~ibTZTy7zT6&7e>I|~BPO<7@sFoUCLA+Ca_Wpeun>(9J=#ecJSXY9f2|_=J)MOqane^yvPU*!3E?`wg{wr31loBFPKn2Zcp3MgzF5?MQmU0ooxG; zc5aGnp2n!C?MxK=b0Hqn$8K7g=&Nva`J4rO6%qE%*xL1R)I~KMUu{KOStJuHMdM}m zMY+Mu`>M-mcKc{z4f;ed)WW11XR(_Grz^sp33i|Aj@K2ui+eQpbgYDfr^^%~rBv3G zsG;N1$9wmV!QZ`|w6M@oY~G{m%yd&%VmE(a?d;C+-tyGVO<7YkRk$9%+!@$$l*u$h z9gLusdP9$*F;2xDyiu3!+a~E_X?1lf+}&;i9vVqS0-$Ov$}2&far+KV_a0)}cM0t_ z^DGwj3_;fERwvN_%Kreir_baAe2c(z&PstWn@4j{=Q1?AHYdd9skRnYj*oBd%wwiO zw$3`I2a%)3X7an5lOX9`naa&7QcD|6Bw)2IIXC5-&R~M-OQ~XL<5rGVs1;j143b{h85sJ88yk(Lr=4!Aw^kRKyjg~*B9wD)fn$p6fp>j zgqBK`y+4w71&h0DPtUnvMIHRE%LC~dtwBFvAMsz|>Khj0Z;CVZNU~OiMRbrn&!O|r z4u|cLo9rEB>w=#@$0OwX3+17JT41yC-FMDs3w}GmjgC3ni}ZiM2@bzDrzJTO0m>T zqB?kqX^W+g7xwCG{{TmD^VuO9N8<$3?EWGC4jnezua9jUJB0d4{2+l}D*038kMi^! zZw}bqU1PW?u+&??*5E2BVV)W+r4gk@dWa#CYIU9&WU6}l1Yrr0WFa&Wq}-M@+jf{Y zdwYp)tdv~?f<9hgSI><)BHnk~jf&&15NFd+ZiC`NwwIL;DUJA-+O)!3E=jYOU zQv2=Do>&NiL)_u&Xmds3q4*nPU_l#0o(vcy^Y9a-!E_C3wdlMZ{k(be%jF2?LW)NO&=|7`*h1SllVZ622DWy zqO=}fSnDR}&R1ch#>-or+HgQ4ni_ca_8)oV>v9ES)jo)6>FQNA>ACgTfCi&|B{jSO z-H5iA#Qu}2f%zZxdGxC7)nbmWuADnjj%l2Zl5*tp8JfuIG1O7hQ^Nx?9m9^S#Z*h^ zDvb>tbwA%U2xPvO5u^QBTY+R)A!iQl^#suAU}^b}^?#JURNQ7XhA7eiD^^ko`Ds3W zwWm%nWENzTh(Mt^AL{!vOOlm&){A;G*N#r_-Bp^QBit1Z- z1!k<@Fc0`g9+Kv@ABqIS;De#M%`Lq&*T)P|lG=}DTnHDJ^1&MkISQ}-=7hp?wZeMF? z0Nbq+K)gaQEI4|6y#D~y7wnwUZY~^eH*XA$z`E%a^-yqs)n1JTK1JNk98^?TjKrXl z8kKOf*Tky&qcbfXT;2yOBHc^q7qBM7*fw>R&?%KBaGTnH@|m}%_l;&pnVP;jDw%7QBR7Ux$>EYSNKrz$ z(5-OZqxAN(ZkE%;5Q`;^hn+u{m;jPEXVCOpxZ5}e>9=tuJ4G8G;T53uH2Zoj)m8Y7 ztudE%ZECztRZRXmSvG!UaTC{0rOns!B*%?fXZ$m9U2Bx9Mg+tT%U{r7*C~8}3WGPcG6q3zesH^t*>Ka-s zBvkrPflB0bs_M*!^1#>AToj;QX4DRauo2G*^ig91`>=|`!9 zBNAi;t-x4(fc`@9?3MOy&M>8RN}&98si&?zbNTdt4)?Xl^ljxsF`!xjpF>~g^6MpM zWbG*CH1*qqWYzgs(IMQ1hb1JSF^-yXTB}18buw56Q>l64;@;E6wC*z+$7e1*5dQ$H z{f>?9H%k~}CVR+{f28U<2e(Idbw1pzc{4k!7%|e*)3~d}WHH$7_!TP3m;B*b5J8;Mli0qjp<&R#W(ts{FEXQ|NjqZTDz`Q>$`?)QZtuGkowWdSsWp zdIvi+jJ?aTu`yA>1x;e^eDT5Fo~KEtOlZndLfHz5SlJ_|G8Rxz=@<7?vF{O7{ShXk zfm2HGtq-4DJjbzIx)r_wN0|-ecw~8W!%M$9UpZYiTOGb|l{;q@5T3hwRMF(|dtN42 zd6t(Ol+01l9Hm~cS6w_WNv`T-)Gh79XTDn?Ni3vN)xoAf;%X`>>yw&;LJb@J>#^Ki z52wD4MP4KWRn7q)6;BW;z=KK}mO=8Lt!|=rTGLmC)cusy2hUAD zeGZ*<*jsx&LiIR}#fjWBDO6rOj^D}BNkocV`3uSBc?^iLkoLLN$siA9*OnJZ6&?mv z9&9njm?H;1hschMY>$N9D&)B#Ayp(kuW9%t;weCAhvRzuyeQA%|(9Y9& zvfYG#Pjnf_m1=*@(*{Fi{ny`9WF8udN0M5lg{7#ut3t|(su;=}O6d$FMIS+Hf$ve? z6cM=89elA)mPr#hWM)vGXZZzs2(cL4K0h^6L!7Lr!^ zMT~4nVt$948okBE%qY={%lx`4hSmt~A6-Bql=S_+T?Kuk@!uzw&CzbXl(10esn$u` zF^tDiRAcj0q)3udZVYrW6Q-qPyGv#vR1y!S&RcHl0Y$hhtf$QRaVj`eeqe(_2&Y9G zzb;8|;%h({Q{e)=-c9BM53tl!9B}{C8Ze#Jv9S0}sNwgXS1F01SH;bhuF6lh_VrY- zv_>ttwBpE`YI>Sf3mh_5nu?D|D#}g0=QRAeyWc$W#%<$;+wh7z4@PQv`U+6`j=9~p z^OnK4+1o6!-o3;?5L%`*AR3iYbH|CV0< zMVHv~XX!Ff6pDP7@{*!@m6IIstcI0g(O6&grky_Cx8?2H&3q)fG0;$GCZfJ{BA=Br z>(U#(Y}hZZjqI^B?NCUOLaC>bA+=}M%9!ZYU^^qB`zx+s+q<8x>H5YTi`7z3hQ@Ck zrA;hU%+a!BW2rI0TSFaSaKNg7c^7kW?55|Jxth*#br#~+9lwo2lBWT2>JBsKz*nIK zuQzgb>k+oP*rT-?u+Ww(QJqv297b?Qn6F9gtEyf@P1cC}{X+q+X}Lh^Pn5`>QkU%4%Yti2%mtti) z!?Pkxk6&eWHUYCVdy8t)Qq@hlGx3?Apw7*Tsm0W7{jravB1l6`PgrNxZ)HRzPrB@} z?>3X#-Ax>}vZyT^lBxh4dk8hCtxIvImq87Se7fc9>s#AXBt{B==mR;g5DU~1LrepK zz>|Xwy1sQ)Z{5?2qT2f&8aj$IkldTHw|!&kGr3IDWmsgQroq+XV3!|5m)v;?+Gwg; z37|7ELXn*|Ca~n|O}5@ehT)nOTq@N<`gxK`^2xxV%{o2Z{mI-nyQ^gzan{XJ&I6Xu zb#Sx-l{l?vMh8Jh&5i4wi?Fs_X^`GjHCRo*L7hmb>hsuPfXZdyYP@w-9V%C2X(gP* z9tV;zT$qZGY)7;Gg4q(@L|r9yoUIzPs07f^{wxx3O#!JL1o^(^c{dp6a8^SS;i{p2 z7NXQw9lgK~9!I8rz3g7bti@91GqP@v;rpIZNsY}_SJzf!tLv$0Jm16Ps)nYurl~Yh z>z*q|BoY4roeHDb^4r*&#_*t&Gc_9)gkF?uJEqZe(a{L*CiQ9m+Ck zQI9%`ap^^x6*R9?x3>#GF|x}%(NyMe;<*+{m5h%`O_Yl39F0%`XvlYdLtBG*g|*Bk zRhA<@X`ecZ4krW3wXXq;10(y-YMrfSCHAQ)sf=Za6v;xsFelEG%?})&75zulTbhOH z@PiG5smW7GMUjF!!GNi$qK-QVrNg_=Jn~B@2gfjB9m;~l07_cs?In0FcBv?T6n)sQ zo+tqO2MmFphU1kvQ*qm1+%~Rsfo0%gpRt2eGzF`Z^B|5LAolOaTAD1(anA}*wb)v%uEo@lf$g~knyBH9BX#d{YK!?-jHG7g_7)B z?#~^a#2mUN+0@XG{wa`x3DuyMUy|tndJ$FW5l=zX#=j-IrQdsNqVcOr?6{2I_lV~3 z**b|{A-AfrbhIs+s-d9_B~whoG97>=04np{Zq_P@mZE(i0`);!`s7m{Lymla=%j7? z9od$7uD*$#kLhWU={|$E{xoZf3Tmxz(rz8Vk>{UlO@ZF)ghi&7t`kWkD6-SL~mJE@xWlny%C7eM$>3u z0aaFeo2}2b4V2cCiS2F}7Bo7a%;JC=jwX~R9;c5-)_mEw?{;(9b3_*C%BRCIz_b8X zoG8GI8iSnR3J#MA)z$5}X|p&D_gAyBRCN+ZiI48-s&S7wsFFHrY=%9fk0CC!a-L|C zL}E#}0^Zcgbv$IWk`pBlXc(vTffV6iJdD)SAceKJnqZLIhKpBg6OwB{Mw*&@@k2@s z)CrZ8Er_9>FX1^&x47tP#WvuN16R1R_?uJ2^VViDnN^OnACrneh6cx0#p6|zPz&mB zXkaS*WkC}ffJhDY3XIpt5%!AYn4O;XRC6BLaP!1z+LAJGCsQ~i4ko6w;6b3ETkVV! z?l+;wZSKMAj7-x~#Wa)~v#_@nE=rcFj!9ThOM}R5+H6%U(LkqEaaTqa zx3+mt&`T$mZiYGZ0Fy!G>FJJ@#kQ@&!mDuvEJa&eI5i$bvV{lboNzfk4V##4ox;0g zBS(VAWAiZN9}@W7ZrROdrAo?56{vcwhIWS+O9a&Nq{B+n)HPHBMn?ucB%rftt=3T^ zzl23<UC6rEy5i-Q&VcC2qlzffTal|>>VNZrWrCcSxD>l zM%l%~M@tZwIfBb9d1?Nq{3is{g+L%zq_h=#M{MPqM%we7wG1*-)91F_n{uwAq6wpDXZslHrKzT)f;iYP zQxbYh0dhr}xGyff6RxU{gah&>gyZ&b;liCAw7V=&M-{f)I$H**c78sY(?k5dPp?cg z)jJ9d+?jpHw=%hE`kC5RrkaZnNk<(z-Rat%wu%XIH9Dz@X<>}ON%X6*=i85MxT+RL zjcPDTl08K;jDB8&hfZyKm$wUZ{_bq=XQB8+vWHPj>s#f3=?F5#4rNBnH-V`u62^~TC91q#&#PH}~ zdCS`kx#o{*_TBDcWCF8Gpee5!0>tK-sQFW%-yM|Ldxo}XH(oxw9~Mrg2&t;5t7?&{ zG0`ZarN>6|v((NVLMllS^tJy0!9k-Lf+T7QYI&Q@yKpe*HNKWpaVQ=#-_B*K=c&pHst$V%+MXa##B%S zzY&9LXiqH?1o+gI40ZiNG#E05cmYP#RFdU|PUPH%5yaGR0{ z-%}SQUP3ghDv}Ag+h4`;6_hFRAhrfD2^r(Tmp(^_NiAA9RJ^-%h9wl$P@wsa`Wlas zQ^uVOSTB>g9>}J~?QF$QVZpR9^ziLmUJI{txSY&2zEVer-j1}_)j!9t8&}DOY3KxN-0-70N z^UQ1}iBsEgTuFAJw%OtBKZ%?9flx>LU{9F!Zs%^?t(ece*+?XFpAAzWn$o6)O+TVX z&Y+Q#u=?lXCU*gk%ys9;eXAZypIMV@c4bm+t=EH?xG}&hqQ})>Yvp&8lO+-Hs%iwN z9A4Ue+|4X^c1TbfYmJtN72r)l{IkQN>%ZOp5=m=!aE#x9qanRA$_!`bEA#t9={i#@ zjiJu&99Zl2#Y2szZ0>H0wRSA#Ri^t`8j^yRSi>F`%1Bz$ta2(e zGk1ab7^on5wJ11OCYi?`nSfD=`mwDtR;#FwRTa%RRC*G66sR_iTX9uUZZ5~{UzN0Y zlZ2p$YgO%jkIn83RM15jr>4ii`+7}~KZh+mXz5#wN~WAz?9O%jFSwR9X-%8kGgOuZ z${L?gk+o0TOmI98OX4qb;%&fB@X<;rei-8K3w#bWqSmOz5sBHS#%>GiXD}dfMhyg-Ns+CxcZf>#2$w z`q$)m^wfzQZ=oi6BQzmE3gC=Ts)q!8!TE6NMSdji7--(Ju%q8|RK-(GSyv8YcxNi< zXkeb1R*HH(^@+yNMXjikX7G8Am0e+30;;%$s}BppDJ@M%D8SZ-0~`p?pP!dV<+;0Q z431BOOfPt0N{rIJM;=~Sspw^>U9CZ|@N^jN*U4->(MTkgj$Eb_bl2kQqm((87p9`X z?ko*8M3XlRVv(*$W<~<&9y|28QjtbuBjO6RKkr!JM<0fQofs|cfZO~jd}WhSG}hXE z0Reu>W8(AaRn{Apj!a0#b`N>I599H zoHC4C?5Gs-BdVt5YATRlZF0!RyT(&hBg`@c)J=1#zIEvbQ?a&I(5}h<0HvG`$l93t z#4)OLuXtdyR8;jd$W{u>wGZ*C-Nl%SmL>{dT5~%DI)%-Fj8oi9sJlx~;*6iDfrcsM z-K(EmbW?EqWG^(EyW2_}Y5xEhl}e8=N>z!aYeDv&pu;!BYz2NQt7qwmYUQSCc^7eFq{U~pu206*K={7ZG`JE3It81O(|Ng_ns}s)nvzm$U}?b8 zhgijMNyUENmDyeL{gfUhyGJXi8dc-DVo%}43SfasC^dBV*vY*9 zBvz!{bd@sUVa7&eyS*h4sMo0(L#~kTfcLSBuK@}i_o**I#*5|Uz=857CAFD$c@4W= z%(N5<8wHCzD*ph_hN{$54udYq&2|=Ur|tI!-=WLPjlxo6@l|!Z??0Za#!=8ytXS-P zR1jowrD28z(z3};6pdPoxge^yjyM8M6^K;SThMCZzk7QU1CI>bo(C#aJ*jLcLP zgg=+a(37a@QZ(H9ckv!4du3V3ufza3G#Mmgh|~!OHOT3x;Ic@jDRhq*1HVgZ6{cvq zc${|7Qh@L$rB2=4d)A`29fhjxjhnP-=7P4it-A`CP+~E)NOehxgC)0cd0eJqw!AZ# z*iu6fk#5EyP3<%hK(Wa7DJzx(O+X`u2GoI$PYyH&nbX$nuU?H3ZZj-Gv@|Xc9w4lR zK>!^&8Kp_jMq_MYJ8Er*U%NV+e)VQ{n;BfR`K&iyZakjmsoc{ChBczD>P^Fi#nNZ$ zU{W4Os;3rT%LNx9yKSmlm5Tb#ZA^Y98qq$-MieykYjAnotk)ZE@d;JQMIIZq zN8*Y_B>kl_ICLpeW3gGBMh=@V@q;NFtPzaB!R*e-+t~cZX&X?=QElzHwRa2~Z^jD- zjw-p#lHNsl*Gyog?d{;Xl)=o5wBc8b&>t;QFeH9M9=!=HFRrGwfi8J&CnGF$NTH9e zgh~&dc;^)Zq?Tu^a+|%fSZsGze5J?jsyJa;u{Hg<9wQxBseJNBfWh{@7yHpNM939d znjIQA(k;P?UBzs%n~lcRow6K2UAXzYMCtoQG3V%CJ*~##W?Ox_VH%nkzN5oa>H